简体   繁体   中英

How to create this plot in python matplot

I have these data from csv file, How can I plot this figure, I don't know the plot name to search, I took a look at CSD demo on matplotlib page , but I don't know if it's the same as my plot or different type.

阴谋

plot by using plt.plot:

import matplotlib.pyplot as plt
plt.plot(date, users, label=data_account_created)
plt.legend()
plt.show()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM