feed = Open Datafeed( );
myScript = Expr(
line = feed << Get Line;
dt << Add Row( {thickness = x} )
feed << Set Script( myScript );
dt << Set Property(
feed = Open Datafeed();
feedScript = Expr(
line = feed << Get Line;
z = Num( line );
dt << Add Row( {:gap = z} )
feed << Set Script( feedScript );
Sample Size( 5 ),
K Sigma( 3 ),
Connect Points( 1 ),
Show Points( 1 ),
Show Center Line( 1 ),
Connect Points( 1 ),
Show Points( 1 ),
Show Center Line( 1 ),
You can further automate the production setting by placing a data feed script such as the one above in an On Open data table property. A property with this name is run automatically each time the table is opened (unless you set a preference to suppress execution). If you save such a data table as a template, opening the template runs the data feed script and creates a new data table.