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

날짜 pandas 데이터 프레임별로 집계하는 방법은 무엇입니까?

<시간/>

날짜 pandas 데이터 프레임으로 집계된 도표를 작성하려면 다음 단계를 수행할 수 있습니다. -

단계

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • 데이터 프레임, df 만들기 , 2차원, 크기 변경 가능, 잠재적으로 이질적인 표 형식 데이터.

  • 날짜 pandas 데이터 프레임으로 집계된 값을 가져옵니다.

  • df 플롯 (3단계) kind="bar" 사용 .

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
import pandas as pd
from matplotlib import pyplot as plt, dates

# Set the figure size
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

# Create a dataframe
df = pd.DataFrame(dict(data=list(pd.date_range("2021-01-01", periods=10)),
value=np.linspace(1, 10, 10)))
df = df.groupby('data').agg(['sum']).reset_index()

# Plot the dataframe
df.plot(x='data', y='value', kind="bar")

# Display the plot
plt.show()

출력

다음 출력을 생성합니다 -

날짜 pandas 데이터 프레임별로 집계하는 방법은 무엇입니까?