There are three ways to create a data table.
Within an IMLPlus program you can use the statement DataTable.Create
to create a new data table. For example
m = { 1 2 3, 2 4 6, 3 6 9, 4 8 12 }; DataTable.Create( "My Data", m ); /* another approach: create from a DataObject */ declare DataObject dobj; dobj = DataObject.Create( "My Data 2", {"x" "y" "z"}, m ); DataTable.Create( dobj );
For more information on creating a data tables in IMLPlus programs, see Class DataTable.
IML Studio maintains a list of recently opened data sets. If you previously opened a data set in a recent IML Studio session, you can quickly reopen that data:
On the File menu, point to Recent Data Sets, and then click the name of the data set you want to open.
Now type in your data. You can use the TAB, ENTER, and arrow keys to move from one cell to the next. You can create a new observation by typing in the row marked with an asterisk.