Articles → Pandas → Value_Counts Function In Dataframe In Pandas
Value_Counts Function In Dataframe In Pandas
Purpose
Example
import pandas as pd
list = [[1,21,3], [1,5,6], [7, 8,9]]
df = pd.DataFrame(list, columns=['col1','col2','col3'])
print(df['col1'].value_counts())
Output
Click to Enlarge