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.

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

  • How to make JSL save empty CSV file?

    Is there any way to make JSL save an empty CSV file (meaning only column headers present)?I would expect JSL to save the CSV file with the 1 row of column headers (and no other rows).  But instead JSL errors out.I'm using JMP 11.1.1. Let me know if you know any solutions (other than reconstructing the file with concatenation strings and commas and saving). thanks, DJ

    djhanson djhanson
    Discussions |
    May 13, 2016 1:24 PM
    8474 views | 3 replies
  • how to find the empty columns and delete them by scripting

    how to find the empty columns and delete them by scripting. any helps and/or hints will be very appreciated.

    robust1972 robust1972
    Discussions |
    May 13, 2016 3:30 AM
    12093 views | 2 replies
  • If-function else-clause not recognizing missing values

    If I add an If-function  to a column, the else-clause does not recognize empty values (see attached sheet). this means that the function:If( :Column 2 == 1, 1,2 )leaves missing values if Column 2 contains missing values. I can fix this by changing the function to:If(  :Column 2 == 1, 1,  Is Missing( :Column 2 ), 2)orIf(  :Column 2 == 1, 1,  Is Missing( :Column 2 ), 2,  2)but why is this necessary?...

    JesperJohansen JesperJohansen
    Discussions |
    May 13, 2016 1:30 AM
    10544 views | 3 replies
  • How to order wrapped graphs by a different column? Alternatively, how to label wrapped graphs by a different column?

    By default, when you wrap graphs using the Graph Builder, it seems to order the graphs by the value of the column you use for wrapping, and label them with the same column. I would instead like to either wrap the graphs by column A and order them by column B, or alternatively, wrap them by column B and label them by column A.Ex:Date, Name, [Data]1/2/16, X-ray, [...]2/5/16, Alpha, [...]5/1/16, Brav...

    markschwab markschwab
    Discussions |
    May 12, 2016 5:36 PM
    9741 views | 3 replies
  • How to use only some columns from a row as column headers?

    As part of a database export I get a file with some headers that I can use straight away ( from Experiment ID to DOE_FILE_ID) but then I get some 'generic' headers of C1 to C255   what I need to do is to select all of the first row of data which has C1 to C255 as their headers and replace it with the information from the selected first row   so C1 would be changed to Sample, C2 would be OLD Sampl...

    d_barnett d_barnett
    Discussions |
    May 12, 2016 9:51 AM
    15821 views | 4 replies

Latest Discussions

  • How to make JSL save empty CSV file?

    Is there any way to make JSL save an empty CSV file (meaning only column headers present)?I would expect JSL to save the CSV file with the 1 row of column headers (and no other rows).  But instead JSL errors out.I'm using JMP 11.1.1. Let me know if you know any solutions (other than reconstructing the file with concatenation strings and commas and saving). thanks, DJ

    djhanson djhanson
    Discussions |
    May 13, 2016 1:24 PM
    8474 views | 3 replies
  • does anybody know how to obtain partial eta squared with JMP?

    Hi, i´m a new JMP user and I´m trying to perform different sets of general linear model in order to assess the best predictors of different dependent variables. I have read some publications reporting this kind of analyses and the partial eta squared coefficient is also reported as an index of effect size. If I use the standard least squares model in JMP, I get statistics for each independent fact...

    parigu parigu
    Discussions |
    May 12, 2016 9:40 AM
    6522 views | 1 replies
  • how do i interpret PCA summary plots

    how do i interpret PCA summary plots?

    michael_a_mille michael_a_mille
    Discussions |
    May 10, 2016 7:47 AM
    4318 views | 1 replies
  • How can I save and reuse a collection of clicks for faster processing?

    I see save session script but it seems to save everything starting from the beginning. Is there a way to save only part of the session having a set of consecutive clicks which can be rerun for similar other files?

    kpaudel0 kpaudel0
    Discussions |
    May 9, 2016 1:56 PM
    9101 views | 7 replies
  • How to put variable title name in the list of graph?

    Hello all,I am not able to find problem why it is not showing title name according to the variable "a1". Please find my script below.dt1 = open("F:\pushpendra\jmp\HIPO_RintCalculation.jmp");dt2 = open("F:\pushpendra\jmp\wafer.jmp");for(i=1,i<=nrow(dt2),i++,  a1= Eval(column(dt2, 1));  biv=dt1<<Bivariate(  Y( :Site_Value ),  X( :Name( "Length(um)" ) ),  Fit Line( {Line Color( "Red" )} ),  where( :W...

    kaushik_pushpen kaushik_pushpen
    Discussions |
    May 5, 2016 12:46 AM
    8735 views | 4 replies

Latest Discussions

  • Co-Kriging with JMP and Matlab

    Hi!I was wondering if anyone already tried to work with Co-Kriging, using JMP together with Matlab. As JMP only fits Ordinary Kriging Models (Gaussian Process with Gaussian Correlation Function), I would like to send data (generated with Space Filling JMP Platform) from JMP to Matlab, fit the models there (Matlab), and bring the MODELS back to JMP, to use inside Profile Platform. Do you have any e...

    samuelbbaco0 samuelbbaco0
    Discussions |
    Dec 4, 2015 12:32 PM
    3593 views | 0 replies
  • Interpreting canonical structure and scores in discriminant analysis

    I'm trying to interpret the relative contributions of my variables in a discriminant function analysis of chemical data for three groups of rocks.  In a stepwise, linear, common covariance discriminant function analysis I'm able to generate non-overlapping 95% confidence ellipses for my three groups with no incorrectly assigned data points using 6 variables.  My understanding is that the scoring c...

    amzipkin amzipkin
    Discussions |
    Oct 20, 2015 3:25 PM
    3571 views | 0 replies
  • Generalized Segmented Distributions

    A former classmate of mine from Graduate School has recently published a paper on Generalized Segmented Distributions.  Utilizing this method, the distribution can approach any continuous density function of arbitrary form.  The method is particularly effective in fitting data with sufficient observations that are skewed and/or multimodal.  The paper can be found here:The General Segmented Distrib...

    Steven_Moore Steven_Moore
    Discussions |
    Sep 17, 2015 11:54 AM
    2392 views | 0 replies
  • Running JSL Script After Creation of a File

      

    sophiaw sophiaw
    Discussions |
    Sep 1, 2015 9:56 AM
    2617 views | 0 replies
  • Clash?

    saitcopuroglu saitcopuroglu
    Discussions |
    Aug 18, 2015 6:43 AM
    2386 views | 0 replies
view all discussions