Table Of Contents

Search

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

pandas.DataFrame.dot

DataFrame.dot(other)[source]

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

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