Pandas: no se pueden trazar subparcelas de varias filas

Creado en 26 ago. 2014  ·  3Comentarios  ·  Fuente: pandas-dev/pandas

Este código funciona bien para producir una sola fila de 3 subparcelas

g = np.random.choice([1,2,3], 10)
s = np.random.normal(size=10)
s2 =np.random.normal(size=10)
df = pd.DataFrame([g, s, s2]).T
df.columns = ['key', 's1', 's2']
gb = df.groupby('key')

fig, axes = plt.subplots(nrows=1, ncols=3, figsize=(12, 4))
i = 0
for key, df2 in gb:
    df2.plot(ax=axes[i], x='s1', y='s2', title=key)
    i = i + 1

Pero si trato de agregar una segunda fila (nrows = 2), explota con un error de atributo

AttributeError: el objeto 'numpy.ndarray' no tiene atributo 'get_figure'

fig, axes = plt.subplots(nrows=2, ncols=3)
fig.tight_layout() # Or equivalently,  "plt.tight_layout()"
i = 1
for key, df2 in gb:
    df2.plot(ax=axes[i])
    i = i + 1

Comentario más útil

Si desea pasar a la segunda fila, tendrá que hacer algo como axes[i // 3][i % 3]
(Amplié tu ejemplo para tener 6 grupos)

In [67]: df
Out[67]: 
    key        s1        s2
0     3 -1.452043 -0.119374
1     1  0.603860 -1.635034
2     3  0.964165 -0.043124
3     2  0.459628 -0.538155
4     3  0.398761 -0.195261
5     1  0.085750 -0.116766
6     2 -0.397419 -0.140660
7     3 -0.053209  1.547755
8     1 -0.634555 -0.509077
9     3  0.138808  0.608165
10    6 -1.452043 -0.119374
11    4  0.603860 -1.635034
12    6  0.964165 -0.043124
13    5  0.459628 -0.538155
14    6  0.398761 -0.195261
15    4  0.085750 -0.116766
16    5 -0.397419 -0.140660
17    6 -0.053209  1.547755
18    4 -0.634555 -0.509077
19    6  0.138808  0.608165

In [63]: for i, (key, df2) in enumerate(gb):
    df2.plot(ax=axes[i // 3][i % 3])

ex

Todos 3 comentarios

Eso es porque axes ahora es una matriz bidimensional de ejes matplotlib.

In [35]: fig, axes = plt.subplots(nrows=2, ncols=3)

In [36]: axes
Out[36]: 
array([[<matplotlib.axes._subplots.AxesSubplot object at 0x10c094ac8>,
        <matplotlib.axes._subplots.AxesSubplot object at 0x10ee40b70>,
        <matplotlib.axes._subplots.AxesSubplot object at 0x10c0ac240>],
       [<matplotlib.axes._subplots.AxesSubplot object at 0x10edf8a90>,
        <matplotlib.axes._subplots.AxesSubplot object at 0x10ec27630>,
        <matplotlib.axes._subplots.AxesSubplot object at 0x10edc9128>]], dtype=object)

In [37]: axes.shape
Out[37]: (2, 3)

Prueba algo como

In [38]: for i, (key, df2) in enumerate(gb):
    df2.plot(ax=axes[0][i])

Si desea pasar a la segunda fila, tendrá que hacer algo como axes[i // 3][i % 3]
(Amplié tu ejemplo para tener 6 grupos)

In [67]: df
Out[67]: 
    key        s1        s2
0     3 -1.452043 -0.119374
1     1  0.603860 -1.635034
2     3  0.964165 -0.043124
3     2  0.459628 -0.538155
4     3  0.398761 -0.195261
5     1  0.085750 -0.116766
6     2 -0.397419 -0.140660
7     3 -0.053209  1.547755
8     1 -0.634555 -0.509077
9     3  0.138808  0.608165
10    6 -1.452043 -0.119374
11    4  0.603860 -1.635034
12    6  0.964165 -0.043124
13    5  0.459628 -0.538155
14    6  0.398761 -0.195261
15    4  0.085750 -0.116766
16    5 -0.397419 -0.140660
17    6 -0.053209  1.547755
18    4 -0.634555 -0.509077
19    6  0.138808  0.608165

In [63]: for i, (key, df2) in enumerate(gb):
    df2.plot(ax=axes[i // 3][i % 3])

ex

Muchas gracias, Tom. Esto ahora funciona perfectamente. Agradezco sinceramente su útil respuesta.

¿Fue útil esta página
0 / 5 - 0 calificaciones