how to plot two columns graphs in python
df.plot(x='col_name_1', y='col_name_2')
how to plot two columns graphs in python
df.plot(x='col_name_1', y='col_name_2')
matplotlib multiple plots
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)
how to plot 2 graphs in same plot in matplotlib
x1 = [1, 2, 3]
Data for the first line
y1 = [4, 5, 6]
x2 = [1, 3, 5]
Data for the second line
y2 = [6, 5, 4]
plt.plot(x1, y1)
plt.plot(x2, y2)
plt.legend(["Dataset 1", "Dataset 2"])
Create a legend for the graph
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us