Skip to content

pd.DataFrame.size

pandas.DataFrame.size

### Example Usage

```py

>>> @bodo.jit
... def f():
...   df = pd.DataFrame({"A": [1,2,3], "B": [3,4,5]})
...   return df.size
>>> f()
6
```