“Kolor osi Python” Kod odpowiedzi

Kolor osi Python

ax.spines['bottom'].set_color('#dddddd')
ax.spines['top'].set_color('#dddddd') 
ax.spines['right'].set_color('red')
ax.spines['left'].set_color('red')
Tender Tapir

Jak zmienić kolor osi w Matplotlin

import matplotlib.pyplot as plt
with plt.rc_context({'axes.edgecolor':'orange', 'xtick.color':'red', 'ytick.color':'green', 'figure.facecolor':'white'}):
    # Temporary rc parameters in effect
    fig, (ax1, ax2) = plt.subplots(1,2)
    ax1.plot(range(10))
    ax2.plot(range(10))
# Back to default rc parameters
fig, ax = plt.subplots()
ax.plot(range(10))
Grieving Grivet

Odpowiedzi podobne do “Kolor osi Python”

Pytania podobne do “Kolor osi Python”

Więcej pokrewnych odpowiedzi na “Kolor osi Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu