Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Pandas 시리즈에서 각 항목의 빈도를 계산하는 방법은 무엇입니까?

<시간/>

이 프로그램에서는 Pandas 시리즈의 각 요소의 빈도를 계산합니다. pandas 라이브러리의 value_counts() 함수는 요소의 빈도를 찾는 데 도움이 됩니다.

알고리즘

Step 1: Define a Pandas series.
Step 2: Print the frequency of each item using the value_counts() function.

예시 코드

import pandas as pd

series = pd.Series([10,10,20,30,40,30,50,10,60,50,50])
print("Series:\n", series)

frequency = series.value_counts()
print("\nFrequency of elements:\n", frequency)

출력

Series:
0     10
1     10
2     20
3     30
4     40
5     30
6     50
7     10
8     60
9     50
10    50
dtype: int64

Frequency of elements:
50    3
10    3
30    2
20    1
40    1
60    1
dtype: int64