I am looking to recreate this plot in R, where the two Y variables have different scales/units:
Attached is sample data:
Day <- c(14, 15, 16, 17, 18, 19, 20)
GLU <- c(19.3, NA, 18.53, NA, 17.89, NA, 16.47)
Count <- c(0.14, 0.12, 0.16, 0.20, 0.36, 0.39, 0.73)
dat <- data.frame(Day, GLU, Count)
Thank you!
Tried multiple graphing packages