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

Python - Matplotlib를 사용하여 Pandas 데이터 프레임에 대한 파이 차트를 플로팅하시겠습니까?

<시간/>

파이 차트를 그리려면 plot.pie()를 사용하십시오. 파이 플롯은 열에 있는 숫자 데이터의 비례 표현입니다.

필요한 라이브러리 가져오기 -

import pandas as pd
import matplotlib.pyplot as plt

DataFrame 생성 -

dataFrame = pd.DataFrame({
   "Car": ['BMW', 'Lexus', 'Tesla', 'Mustang', 'Mercedes', 'Jaguar'],"Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000]
})

Car column −

레이블이 있는 등록 가격 열에 대한 파이 차트를 플로팅합니다.
plt.pie(dataFrame["Reg_Price"], labels = dataFrame["Car"])

다음은 코드입니다 -

import pandas as pd
import matplotlib.pyplot as plt

# creating dataframe
dataFrame = pd.DataFrame({
   "Car": ['BMW', 'Lexus', 'Tesla', 'Mustang', 'Mercedes', 'Jaguar'],"Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000]
})

# plot a Pie Chart for Registration Price column with label Car column
plt.pie(dataFrame["Reg_Price"], labels = dataFrame["Car"])
plt.show()

출력

이것은 다음과 같은 출력을 생성합니다 -

Python - Matplotlib를 사용하여 Pandas 데이터 프레임에 대한 파이 차트를 플로팅하시겠습니까?