Skip to content

pd.Series.nbytes

pandas.Series.nbytes

注意

这跟踪了Bodo使用的字节数,可能与Pandas的值不同。

示例用法

>>> @bodo.jit
... def f(S):
...     return S.nbytes
>>> S = pd.Series(np.arange(1000))
>>> f(S)
8000