Hi all,
In attached you see in the first column 40 values. Working down by row you see the values are labelled as replicate 1 or replicate 2 (these are values from duplicate measurements).
My wish was to connect with a line each pair of duplicate values; this is seen in the graph "Connected". To do this I ran the script below to add rows and then choose the option "No connection" for missing values. (The fourth and fifth columns in the attached data table.)
Is there an easier way to do this? Graph builder can do so many things and may well offer a more direct/easier way to achieve what I was seeking to achieve.
Many thanks, Scott.
Names Default To Here(1);
dt = Current Data Table();
intCounter=2;
For(i=1,i<=19,i++,
dt << Add Rows( 1, after( intCounter ) );
intCounter = intCounter + 3;
);