pd.Series.dot¶
pandas.Series.dot(other)
Supported Arguments¶
| argument | datatypes | 
|---|---|
other | 
Series with numeric data | 
Note
Series.dot is only supported on Series of numeric data.
Example Usage¶
>>> @bodo.jit
... def f(S, other):
...   return S.dot(other)
>>> S = pd.Series(np.arange(1, 1001))
>>> other = pd.Series(reversed(np.arange(1, 1001)))
>>> f(S, other)
167167000