Hello Guys,
I have a simple problem with variability chart which I am not able to script properly.
I want to do a color coding for my variablility charts as per required conditions. For example, I will I want all the rows with 12-Nov-2015 to come in red color and rest in black color. I want to use similar conditions to color code my data for better representation.
I am using this simple code ...
dt = Open("Test.jmp");
dt<< Get Rows Where(:Day == informat ("2015/11/12")) << colors (1);
This is obviously not working. Can you guide me through it ?
I am thinking of changing the color state of the rows and then I believe when I plot the variability chart they will automatically come in different colors, right ?