用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。