0
How to group the total value of y
per year x
and plot?
x = df_Year
y = df_RevenueMillions
plt.plot(x, y)
plt.show()
0
How to group the total value of y
per year x
and plot?
x = df_Year
y = df_RevenueMillions
plt.plot(x, y)
plt.show()
Browser other questions tagged python pandas matplotlib
You are not signed in. Login or sign up in order to post.
Please update the post with an example of the dataframes
df_Year
anddf_RevenueMillions
– Paulo Marques
Alexander, I suggest you edit your question, so that it meets the criteria of a [].
– gleisin-dev