process @ posteriors["A"]
process
是一个 ndarray
, posteriors
是一个 DataFrame
,这个 @
运算是在做什么,没搜到。
1
sdshiyan2005 2020-04-30 23:19:33 +08:00
python 3 的 @操作符表示矩阵乘法。
operator 说明: https://docs.python.org/3/library/operator.html numpy 文档: https://numpy.org/doc/stable/reference/generated/numpy.dot.html?highlight=dot#numpy.dot 楼主在做 Bayesian? |
2
woodfly OP @sdshiyan2005 谢谢,我猜也是,但在 pandas 文档里找半天没看到。是的,我在尝试着用 Bayesian 来做参数估计。
|