Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.Series.dot

Series.dot(other)[source]

Matrix multiplication with DataFrame or inner-product with Series objects. Can also be called using self @ other in Python >= 3.5.

Parameters:
other : Series or DataFrame
Returns:
dot_product : scalar or Series
Scroll To Top