Saltar al contenido

cómo trazar múltiples gráficos en el ejemplo de código matplotlib de Python

Ejemplo 1: parcelas múltiples de matplotlib

fig = plt.figure()

# total_rows, total_columns, subplot_index(1st, 2nd, etc..)
plt.subplot(2, 2, 1)
plt.plot(x, y)

plt.subplot(2, 2, 2)
plt.plot(x, y)

plt.subplot(2, 2, 3)
plt.plot(x, y)

plt.subplot(2, 2, 4)
plt.plot(x, y)

Ejemplo 2: mostrar los ejes de matplotlib del gráfico

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

df = pd.read_csv("filesc/file1.csv")
df.head()

BBox = ((df.x.min(),   df.x.max(), df.y.min(), df.y.max()))

ruh_m = plt.imread('map.png')

print(BBox)

fig, ax = plt.subplots(figsize = (8,7))
ax.scatter(df.x, df.y, zorder=1, alpha= 0.2, c='b', s=10)
ax.set_title('Plotting Spatial Data on Map')
ax.set_xlim(BBox[0],BBox[1])
ax.set_ylim(BBox[2],BBox[3])
ax.imshow(ruh_m, zorder=0, extent = BBox, aspect= 'equal')
plt.show()

Ejemplo 3: diagrama múltiple en una figura python

import matplotlib.pyplot as plt

plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
plt.plot(<X AXIS VALUES HERE>, <Y AXIS VALUES HERE>, 'line type', label='label here')
plt.legend(loc='best')
plt.show()
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *