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

Python의 datetime 객체에서 월과 일만 추출하는 방법은 무엇입니까?

<시간/>

날짜/시간 에서 월과 일만 추출하려면 Python에서 객체의 경우 DateFormatter()를 사용할 수 있습니다. 수업.

단계

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

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

  • Figure와 서브플롯 세트를 생성합니다.

  • plot()을 사용하여 데이터 프레임을 플로팅합니다. 방법.

  • 축 포맷터를 설정하고 월과 일을 추출합니다.

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

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

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

df = pd.DataFrame(dict(time=list(pd.date_range("2021-01-01 12:00:00", periods=10)), speed=np.linspace(1, 10, 10)))

fig, ax = plt.subplots()

ax.plot(df.time, df.speed)
ax.xaxis.set_major_formatter(dates.DateFormatter('M:%m\nD:%d'))

plt.show()

출력

Python의 datetime 객체에서 월과 일만 추출하는 방법은 무엇입니까?