fivethirtyight를 사용하려면 스타일시트에서 다음 단계를 수행할 수 있습니다. -
- 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
- fivethirtyight를 사용하려면 , plt.style.use()를 사용할 수 있습니다. 방법.
- x 만들기 numpy를 사용한 데이터 포인트
- subplots()를 사용하여 그림과 서브플롯 세트 생성 방법.
- plot()을 사용하여 3개의 곡선 그리기 방법.
- 플롯의 제목을 설정합니다.
- 그림을 표시하려면 show()를 사용하세요. 방법.
예
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True plt.style.use('fivethirtyeight') x = np.linspace(0, 10) fig, ax = plt.subplots() ax.plot(x, np.sin(x) + x + np.random.randn(50)) ax.plot(x, np.sin(x) + 0.5 * x + np.random.randn(50)) ax.plot(x, np.sin(x) + 2 * x + np.random.randn(50)) ax.set_title("'fivethirtyeight' style sheet") plt.show()
출력