Hi,

   I have a question on ggplot2 with the second axis, but I don't think one
needs to know ggplot2 package in order to answer this question.

   In this example,
https://rpubs.com/MarkusLoew/226759
   since the transformation of the second axis is given by y1=y2*5,
#####
   p <- p + scale_y_continuous(sec.axis = sec_axis(~.*5, name = "Relative
humidity [%]"))
#####
   Note  "~.*5"
   What can I do if the transformation is given by y1=y2-3 or y1=y2/5?
   Should I write "~.-3" or "~./5"?

   Thanks,

John

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to