How to find this regression line by adding new columns to the table?
Thanks!dt=Open("$SAMPLE_DATA/Big Class.jmp");
Graph Builder(
Variables( X( Transform Column( "Row", Formula( Row() ) ) ), Y( :height ) ),
Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) )
)