“matplotlib Faça subblots maiores” Respostas de código

Tamanho das subparcelas de matplotlib

f, axs = plt.subplots(2,2,figsize=(15,15))
Frantic Fly

Matplotlib múltiplas gráficos com tamanho diferente

import numpy as np
import matplotlib.pyplot as plt 

# generate some data
x = np.arange(0, 10, 0.2)
y = np.sin(x)

# plot it
f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})
a0.plot(x, y)
a1.plot(y, x)

f.tight_layout()
f.savefig('grid_figure.pdf')
Bright Boar

matplotlib Faça subblots maiores

f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})
Frantic Fly

Respostas semelhantes a “matplotlib Faça subblots maiores”

Perguntas semelhantes a “matplotlib Faça subblots maiores”

Procure respostas de código populares por idioma

Procurar outros idiomas de código