cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar

How do you use JMP to standardize data?

An assignment requires that we standardize the data for a particular variable (runtime) and see what a current value would become after standardizing the data. Any ideas on how to do this? Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
ian_jmp
Staff

Re: How do you use JMP to standardize data?

And you can create a virtual column this way, without the need to build a formula directly:

9936_Screen Shot 2015-09-23 at 13.19.23.png

View solution in original post

6 REPLIES 6
ron_horne
Super User (Alumni)

Re: How do you use JMP to standardize data?

hi Rebecca,

the most trivial way would be to do a distribution of the variable and from the red triangle menu to choose save standardized as in the picture.

this will create a new column in the data table with the standardized values of the variable for each row.

9916_pastedImage_0.png

otherwise you can create a new column and insert the Standardized formula manually.

in some cases (such as the fit model platform) you do not need to standardize the data prior to the analysis since you can request the standardized coefficients  in the results. to do this you right click on the parameter estimates table and ask for the Std beta under the Columns option.

9938_pastedImage_1.png

good luck!

Re: How do you use JMP to standardize data?

Hi Rebecca

To add on to Ron's reply standardizing data can also be classified as centering and scaling the data.  Centering is where you subtract the mean from all values and scaling is dividing the centered data by the standard deviation.  You can build the formula for this by first doing Analyze > Distribution and getting the mean and standard deviation values for your data.  You can then make a new column and create a column formula:

Runtime value - mean value/Stdev value.

Best,

Bill

ian_jmp
Staff

Re: How do you use JMP to standardize data?

And you can create a virtual column this way, without the need to build a formula directly:

9936_Screen Shot 2015-09-23 at 13.19.23.png

bayesfactor
Level III

Re: How do you use JMP to standardize data?

The "Distributional" option to standardize the column doesn't appear for me (JMP14). What version are you using?


@ian_jmp wrote:

@ian_jmp wrote:

And you can create a virtual column this way, without the need to build a formula directly:

 

9936_Screen Shot 2015-09-23 at 13.19.23.png




And you can create a virtual column this way, without the need to build a formula directly:

 

9936_Screen Shot 2015-09-23 at 13.19.23.png


 

txnelson
Super User

Re: How do you use JMP to standardize data?

The Distributional feature is available in JMP 14.  Here is the documentation taken from the "Using JMP" document. The Distributional feature only appears if you right click on a numeric column.

 

Transform Columns
Each launch window in JMP enables you to create one or more temporary transform columns
for use in performing analyses. These transform columns are not part of the source data table
and only can be used within the context of the current launch window. Transform columns
use formulas or calculations to define the column values. Closing the launch window deletes
any transform columns.
Each column listed in the Select Columns pane of the launch window includes an icon
representing the column’s modeling type (continuous, ordinal, or nominal) and the column
name. Right-click on a column name to create a transform column using Transform, Character,
Combine, Pairwise, Aggregate, Distributional, Date Time, Random, Row, Vector, or Formula
to calculate the column’s values.
Right-click options depend on the selected column’s data type and number of columns
selected.

 

The "Using JMP" document is available @

     Help==>Books==>Using JMP

Jim

Re: How do you use JMP to standardize data?

In addition to solutions already offered, it sounded like you might want to use historical data to determine how to standardize new values. If so, then you simply compute and store the mean and standard deviation of the historical sample, then use this computation: (new-mean)/(standard deviation) to standardize the new value. The computation could be performed in a column formula or with a script, depending on the situation.