用法:
Series.dot(other, reflect=False)
獲取幀和其他的點積,(二元運算符
dot
)。在靈活的包裝器(
add
,sub
,mul
,div
,mod
,pow
,dot
)到算術運算符中:+
,-
,*
,/
,//
,%
,**
,@
。- other:序列、係列或數據幀
任何多元素數據結構,或list-like 對象。
- reflect:布爾值,默認為 False
如果
True
,交換操作數的順序。有關何時需要這樣做的更多信息,請參閱https://docs.python.org/3/reference/datamodel.html#object.__ror__。
- 標量、係列或數據幀
操作的結果。
參數:
返回:
例子:
>>> import cudf >>> df = cudf.DataFrame([[1, 2, 3, 4], ... [5, 6, 7, 8]]) >>> df @ df.T 0 1 0 30 70 1 70 174 >>> s = cudf.Series([1, 1, 1, 1]) >>> df @ s 0 10 1 26 dtype: int64 >>> [1, 2, 3, 4] @ s 10
相關用法
- Python cudf.Series.data用法及代碼示例
- Python cudf.Series.dt用法及代碼示例
- Python cudf.Series.drop_duplicates用法及代碼示例
- Python cudf.Series.div用法及代碼示例
- Python cudf.Series.diff用法及代碼示例
- Python cudf.Series.digitize用法及代碼示例
- Python cudf.Series.dropna用法及代碼示例
- Python cudf.Series.drop用法及代碼示例
- Python cudf.Series.divide用法及代碼示例
- Python cudf.Series.describe用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- Python cudf.Series.update用法及代碼示例
- Python cudf.Series.max用法及代碼示例
- Python cudf.Series.head用法及代碼示例
- Python cudf.Series.reindex用法及代碼示例
- Python cudf.Series.interleave_columns用法及代碼示例
- Python cudf.Series.min用法及代碼示例
- Python cudf.Series.nlargest用法及代碼示例
- Python cudf.Series.to_frame用法及代碼示例
- Python cudf.Series.mask用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.dot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。