I got a df looking like this:
'my_data': 365 obs. of 5 variables:
$ Day : chr "01" "02" "03" "04" ...
$ Month : Factor w/ 12 levels "01","02","03",..: 1 1 1 1 1 1 1 1 1 1 ... [[[Range: 1 to 12]]]
$ Year : chr "2019" "2019" "2019" "2019" ...
$ XXX : int 2 4 5 5 7 6 6 7 6 6 ... [[[Range: 1 to 9]]]
$ Weekday : Factor w/ 7 levels "Monday","Tuesday",..: 2 3 4 5 6 7 1 2 3 4 ...
Currently I am trying go get a graph in ggplot which shows all values for $ XXX which are <= 3 and >= 7 for the whole year. How can I define, that the days fit to the individual months and have to be seen consecutively?
Any help would be appreciated,
Thanks!