“Eixos cor python” Respostas de código

Eixos cor 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

Como mudar a cor dos eixos em 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

Respostas semelhantes a “Eixos cor python”

Perguntas semelhantes a “Eixos cor python”

Mais respostas relacionadas para “Eixos cor python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código