1

I'm trying to join the points of a plot with at least 70 subplots, since it is not a scatter (because I can't use it since they are not series), I've tried marker = 'o-', but doesn't work. The data is in the format %mm-%yy, there are at least 6 different months (as a date column), and not for every column (Fund names) there exist any data in an specific month, however I want to join all the points from the same column even if they skipped any date.

I'm trying this, however it only joins the data that corresponds to following months.

df.plot(subplots = True, figsize = (20,20), layout = (14,5),legend=False,marker='o')

enter image description here

Cimbali
  • 11,012
  • 1
  • 39
  • 68
  • Drop the `NaN`s in between the populated points – ifly6 Jun 16 '21 at 18:35
  • 1
    Hi @ SilviaRodenasVaquero, can you provide us with the first few points or some random of your data ? See [how to make good reproducible pandas examples](https://stackoverflow.com/questions/20109391/how-to-make-good-reproducible-pandas-examples) for more tips on how to improve your question − that really makes it easier for other users to give you an answer. – Cimbali Jun 16 '21 at 18:44
  • Hi, I think I finally got it, I only needed to add to my formula .interpolate().plot(...). Thank you anyways! – Silvia Rodenas Vaquero Jun 17 '21 at 15:14

0 Answers0