I'm trying to show two graphs next to each other. pie char and bar char. my code is:
import matplotlib.pyplot as plt
fig , ax = plt.subplots(nrows = 1, ncols = 2)
df['column'].value_counts().plot.pie()
df['column'].value_counts().plot.bar()
plt.show()
this is the output:
can someone help me please?