Hi ,
I have a df like this one and what I would like to do is a histogram with I guess 2 axes.
I want to represent the evolution of my value depending on the Time.
I don't really know what is the best representation so if you have idea I ready to hear about ! But I was thinking to plot in Y my value, in X my station and in the second Y axis (so on the right side, in front of the Y axis on the left).
Basically, I want to see how my value change depending of the sampling time
df <- tribble(
~station, ~Time, ~Period, ~Value,
"A1", 01:14:56, night, 0.548
"A2", 14:25:02, day, 0.264
"A3", 09:17:29, night, 0.658
"A4", 11:36:10, day, 0.367
"A5", 05:42:48, night, 0.691
"A6", 21:03:51, night, 0.472
"A7", 16:14:39, night, 0.326
)
Thank you very much !