cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Learning Resources

Latest Discussions

  • Same regression model, same dataset... different results?

    I apologize if there's something I'm missing here or if this has been asked already, but I couldn't find this issue in past discussions and it's been vexing me for the past while. Basically, I put together a linear regression model for a dataset, and got some good, significant results (shown below on the right). A couple hours later, when working on another model, I accidentally put the same respo...

    ias5 ias5
    Discussions |
    Jan 18, 2019 8:14 AM
    6497 views | 1 replies
  • How to Set the Number of Significant Figures

    A frustration of mine with JMP is the lack of attention to significant figures with numerical data.  I spend an signficant amount of time  re-formating numerical reports based on the statistics within the report itself.  For example, if a parameter estimate is known to have an uncertainty of plus/minus 1%, then it makes no sense to report  the estimate or the confidence limits beyond three signfic...

    jims jims
    Discussions |
    Jan 18, 2019 7:38 AM
    23656 views | 5 replies
  • Convert data to numeric, Only If Appropriate!

       I work with data stored in a table as Parameter and value.  Since the value may be a character for some Parameters the data type in the database is Character.  Pulling the data into JMP with an SQL script is easy and Splitting the data by Parameter is also easy.  But now I have a table of columns where I'd like to convert some of the columns to numeric, but others I do not. I tried this but to ...

    pcarroll1 pcarroll1
    Discussions |
    Jan 18, 2019 7:07 AM
    8481 views | 5 replies
  • How to set color scale for a contour plot

    and if I have several plots by page, how to set the different scale for each of them? Thanks a lot! 

    jasongao jasongao
    Discussions |
    Jan 17, 2019 5:14 PM
    3387 views | 1 replies
  • Setting Graph Builder Major Axis Grid Lines in Preferences

    I've been looking through Preferences for a location that will allow me to enable Major Axis Grid Lines in Graph Builder. Currently, the default is no major axis grid lines which I have to turn on each time. Is it possible in Preferences, or some other way, to set the default Graph Builder major axis grid lines to on? 

    terapin terapin
    Discussions |
    Jan 17, 2019 11:45 AM
    19130 views | 3 replies

Latest Discussions

  • How to set color scale for a contour plot

    and if I have several plots by page, how to set the different scale for each of them? Thanks a lot! 

    jasongao jasongao
    Discussions |
    Jan 17, 2019 5:14 PM
    3387 views | 1 replies
  • Get Selected Rows results in error, when using the rows

    Hey,i can´t figure out, why the following results in an error: For( i = 1, i <= N Items(list), i++, item = list[i]; rows = dt << Get Rows Where( dt:foo == item ); Column(dt, "bar" )[rows] = "foobar"; );The error is: "Cannot set value for the column 'bar' because the row number (-1) is not valid.{941}" Can anyone enlighten me? Thank you!

    vkessler vkessler
    Discussions |
    Jan 17, 2019 9:55 AM
    6127 views | 5 replies
  • How to do Bilinear Interpolation using JMP?

    Essentially it is called 2D multivariate interpolation. I have set of locations (x,y) and a corresponding data eg: z=color value. For some of the (x,y) the z column has data missing. I want to use the nearest two known ( x1,y1,z1) and (x2,y2,z2) to interpolate the value for (x3,y3, z3=?). Theoretically this wiki/Bilinear_interpolation is what I like to get. Does JMP has a way of doing this?  Also ...

    smostafa smostafa
    Discussions |
    Jan 17, 2019 8:16 AM
    3654 views | 1 replies
  • create an array

    i want to create a num array, but how could i do it? example: if i have a data table,i want to use mean value of the first two columns and  maximum of the last six columns to make an array, but i failed. a=mean(:column 1); b=mean(:column 2); c=max(:column 3); d=max(:column 4); e=max(:column 5); f=max(:column 6); g=max(:column 7); h=max(:column 8); array1=[a,b,c,d,e,f,g,h]; the jsl file i written ...

    Yu Yu
    Discussions |
    Jan 14, 2019 5:41 PM
    5242 views | 2 replies
  • How to reference columns whose name begin with a number

    I am looking to use the select where function within JSL script.However, it wont let me reference my column as it begins with a letter i.e 20GHz_timeI want to do :20GHz_time <1000 however it won't let me. I cant reference based on what column number it is as the columns can change from data table to data table so I need a way to capture it. What is happening is the :20 is getting highlighted in gr...

    conroyco conroyco
    Discussions |
    Jan 14, 2019 4:07 AM
    3589 views | 1 replies

Latest Discussions

  • I want to use LASSO and Group LASSO in JMP

    I'm involved in a project where we are applying lasso to build a logistic regression model from a "black box" set of predictors.  I need to get JMP Pro before trying out JMP's implementation.  I'm doing all the analysis in R at present.  Does JMP Pro also include group lasso?  I've found through using JMP Cluster Variables (CLUSVAR) that I can naturally group my predictors prior to group lasso.  F...

    gene gene
    Discussions |
    Nov 2, 2018 7:43 AM
    2411 views | 0 replies
  • Contingency table and mosaic plot are not same orientation

    // For a contingency table report, swap the x and y // currently can swap the mosaic plot only Names Default to Here(1); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); myr = Contingency( Y( :Age ), X( :sex ) ); // Have to have a Contingency Analysis report open // Can add test to make sure it is open in the future myr = Current Report(); // taking apart CrossTabBox was easier using XML than JSL ...

    Vball247 Vball247
    Discussions |
    Oct 29, 2018 2:18 PM
    3110 views | 0 replies
  • how to change the type and color of lines in graph

    I am trying to show line of fit in graph builder for several sets of data. The data table have many columns, I want to show the column(i) vs column(1).Every column can  be grouped by A1 & a, also can  be grouped by B1 & b, but except column(1). The follow is the chart about column(2) vs column(1):  I use the follow script to change the type of lines:Dispatch( {}, "400", ScaleBox, {Legend Model( 8,...

    Yu Yu
    Discussions |
    Sep 25, 2018 2:34 AM
    3433 views | 0 replies
  • Mean separation letter from test slices

    Hello!

    How do I get the mean separation letter in for each level of a factor when interaction is significant? For example, if I have A*B interaction and I want to get the mean separation of B at each level of A, how do I get the LSD letters in JMP? I can do test slices and that will use the DF of the full analysis, but this does not shows which mean of B differs. If I do multiple comparison: How ca...

    jfranc19 jfranc19
    Discussions |
    Sep 14, 2018 2:35 PM
    2326 views | 0 replies
  • repeated-measures ANCOVA: How to perform the analysis when the parallel slope assumpt. doesn't meet?

    Hi all,I need to perform the ANCOVA for a repeated-measures design. I tried to adapt the Julian's ANCOVA procedure showed on the https://www.youtube.com/watch?v=mApbp1RDy-U to my study case (repeated-measures design). Initially, I did the following actions: 1. In the Fit Y by X dialogue: I selected VAR_Y as "Y, Response" and VAR_X as "X, Factor";2. For "Group by" I selected the variable Timepoint;...

    Reinaldo Reinaldo
    Discussions |
    Jun 18, 2018 6:31 AM
    3276 views | 0 replies
view all discussions