Ale0430 / MiniBuoy-App

Its another app
GNU General Public License v3.0
0 stars 0 forks source link

Revised output plots #34

Closed cailadd90 closed 1 year ago

cailadd90 commented 1 year ago

What's changed:

mcwimm commented 1 year ago

👍 works

Minor comments:

cailadd90 commented 1 year ago

Good points. I've just tried adding a caption in the labs argument:

But alas ggplotly is not displaying the caption. Is there a way around this, in the same way you managed to present the legend?

Maybe keeping the lower error bars in, with the description above, is better?

mcwimm commented 1 year ago
  • labs(y = 'Median wave orbital velocity (m/s)', caption = 'Error bars represent upper 95th percentile and minimum detected value')

It will work with ggtitle:

labs(y = 'Median wave orbtial velocity (m/s)') + 
ggtitle('Error bars represent upper 95th percentile and minimum detected value') 

Shall we do it like that? Then I'd push the change.

image

cailadd90 commented 1 year ago

Yes that works, let's stick with the ggtitle for now.

mcwimm commented 1 year ago

Yes that works, let's stick with the ggtitle for now.

Ok. Changed. Please checkout and try. Also applied the same change to comparison plots.

cailadd90 commented 1 year ago

Looks great - thanks!