bigframes.pandas.Series.count#
- Series.count()→int[source]#
Return number of non-NA/null observations in the Series.
Examples:
>>>s=bpd.Series([0.0,1.0,pd.NA])>>>s0 0.01 1.02 <NA>dtype: Float64>>>s.count()np.int64(2)
- Returns:
Number of non-null values in the Series.
- Return type:
int orbigframes.pandas.Series (if level specified)
On this page