Solarized Light 스타일시트 #

다음 스타일을 복제하려고 시도하는 "Solarized_Light" 스타일 지정의 예를 보여줍니다.

및 작업:

색상 팔레트의 8가지 악센트를 모두 사용 - 파란색부터 시작

아직 할 일:

  • 막대 및 누적 차트에 대한 알파 값을 만듭니다. .33 또는 .5

  • 레이아웃 규칙 적용

8 임의 라인 - 라인
import matplotlib.pyplot as plt
import numpy as np


# Fixing random state for reproducibility
np.random.seed(19680801)

x = np.linspace(0, 10)
with plt.style.context('Solarize_Light2'):
    plt.plot(x, np.sin(x) + x + np.random.randn(50))
    plt.plot(x, np.sin(x) + 2 * x + np.random.randn(50))
    plt.plot(x, np.sin(x) + 3 * x + np.random.randn(50))
    plt.plot(x, np.sin(x) + 4 + np.random.randn(50))
    plt.plot(x, np.sin(x) + 5 * x + np.random.randn(50))
    plt.plot(x, np.sin(x) + 6 * x + np.random.randn(50))
    plt.plot(x, np.sin(x) + 7 * x + np.random.randn(50))
    plt.plot(x, np.sin(x) + 8 * x + np.random.randn(50))
    # Number of accent colors in the color scheme
    plt.title('8 Random Lines - Line')
    plt.xlabel('x label', fontsize=14)
    plt.ylabel('y label', fontsize=14)

plt.show()

Sphinx-Gallery에서 생성한 갤러리