I have a joined table that combines two summary tables. I want to plot the results of one column against the other. These columns are calculated from values in their respective parent tables and are locked. However, I also want to plot a reference trendline (1:1) on this plot. To do this I would like to add four rows with numeric values in the two columns I'm plotting and create a new column that distinguishes "experiment" rows from "1:1" rows.
I have made several attempts to add these rows to my table to no avail, including generating a separate table with the reference values in it and then concatenating it to my summary table, but the columns do not successfully combine (the values in the new table simply don't appear in the concatenated table).
I would ideally like to create a copy of my current joined-summary table that unlocks my experiment columns. I can see how to unlock the columns on the GUI, but I am trying to do all of this within a jsl script. The only way I can see so far to unlock the columns is to use a 'Link to original data(0)' code in the original summary table steps, but I am not sure I actually want to do that - is there a way to create a copy of my current data table that copies only the numeric values and not the formulas so that I can append flat numeric values to new rows?