Answers for ".count pandas"

2

count na pandas

>>> df = pd.DataFrame({"Person":
...                    ["John", "Myla", "Lewis", "John", "Myla"],
...                    "Age": [24., np.nan, 21., 33, 26],
...                    "Single": [False, True, True, True, False]})
>>> df
   Person   Age  Single
0    John  24.0   False
1    Myla   NaN    True
2   Lewis  21.0    True
3    John  33.0    True
4    Myla  26.0   False

df.count()
Person    5
Age       4
Single    5
dtype: int64
Posted by: Guest on December-06-2020
1

python count variable and put the count in a column of data frame

df['freq'] = df.groupby('myvar')['myvar'].transform('count')
Posted by: Guest on June-19-2020
1

pandas count

>>> df.set_index(["Person", "Single"]).count(level="Person")
        Age
Person
John      2
Lewis     1
Myla      1
Posted by: Guest on February-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language