79475308

Date: 2025-02-28 11:07:51
Score: 0.5
Natty:
Report link

If you just want to plot the dates with their related values

    dates = ['2015-03-12','2015-03-12', '2015-03-20','2015-03-20']
    values = [80, 55, 1, 100]
    dates = pd.to_datetime(dates)
    dates_str = dates.strftime('%Y-%m-%d')
    plt.scatter(dates_str, values)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Qian