Answers for "pandas plot in matplotlib subplot"

1

matplotlib subplots

# Example with 3 figures (more can be added)

fig, (fig1, fig2, fig3) = plt.subplots(1, 3)	# subplots(row, columns)

fig1.plot(x,y)
fig2.plot(x,y)
fig3.plot(x,y)

plt.show()
Posted by: Guest on January-07-2022
0

pandas subplots

In [45]: df = pd.DataFrame(np.random.rand(10, 2), columns=["Col1", "Col2"])

In [46]: df["X"] = pd.Series(["A", "A", "A", "A", "A", "B", "B", "B", "B", "B"])

In [47]: plt.figure();

In [48]: bp = df.boxplot(by="X")
Posted by: Guest on October-11-2021

Python Answers by Framework

Browse Popular Code Answers by Language