cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Learning Library

Choose Language Hide Translation Bar
Creating a New Data Table

You use the New Table function to create a new data table. Because there are no required arguments, you can create an empty, untitled data table by just using the function with nothing in the parentheses. But, there are several optional arguments that you'll typically use. The first unnamed argument is a character string that sets the name of the data table. There are also named arguments, including ones that add a specified number of rows, or make new data columns. Many of these arguments, in turn, take arguments of their own. For example, the code shown here creates a new table named Cars that has rows, and three columns: Make, Model, and Year. You could include other optional arguments for the table, such as making it invisible or adding a table variable or script. And of course you could supply additional arguments in the New Column specifications.

Recommended Articles