plot secondary y-axis with conversion scale
JMP Pros,I have variable y1 consisting of integer scores from 1 to 9. I created a second conditional variable y2 as: If(:y1 == 3, "4",
:y1 == 5, "3",
:y1 == 7, "2")
which converts the integer score values in y1 to corresponding values on a measured scale (millimeters).When I plot both variables in Graph Builder, the y2 axis is scaled independently of y1 whereas, what I want is ...