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

  • Question on JSL filling row blanks within a column

    Hello All,I am relatively new to JSL. I have a character column labeled State, within the column are the initals of the various US states. However, within this column there are blanks, I want to be able to created a JSL that will allow me to replace the blanks with the word "International". I have been looking all over and have been unable to find a coding that would allow me to replace the blanks...

    Sully Sully
    Discussions |
    Aug 24, 2017 8:03 AM
    5928 views | 3 replies
  • Counting values across multiple columns

    Hello,I am primarily a SPSS user and new to the JMP, and I want to find a similar/identical SPSS function of "count values within cases" in JMP.I wish to calculate the number of respondents who reported either one of "Not at all," (0) "Slightly," (1) "Somewhat," (2) "Moderatey," (3) and "Extremely" (4) across columns Know_1 to Know_3.Then, I will create a separate column called "Know_total" that h...

    seoleelvjs seoleelvjs
    Discussions |
    Aug 24, 2017 6:17 AM
    10932 views | 6 replies
  • Is it possible to add a horizontal scroll bar to listboxbox?

    Hi, Is it possible to add a horizontal scroll bar to listboxbox? To be clear, it is a listbox(), not a col list box(). Ex:names default to here(1); myList ={}; for(i = 1, i <= 10, i++, myList[i] = char(i) || "abcdefghijklmnopqrstuvwxyz_abcdefghijklmnopqrstuvwxyz_abcdefghijklmnopqrstuvwxyz"; ); myWin = new window("test", lb = listbox(myList,nlines(7), width(250))); Thanks,Mike

    mikedriscoll mikedriscoll
    Discussions |
    Aug 23, 2017 1:03 PM
    6266 views | 6 replies
  • how to pass a column as parameter in a formula

    Hi,I am trying to create a simple formula on columns that are stored as variables in a list.I do not understand why JSL refuses to perform the formula.If I change in the formula the parameter by hte string it stores, it works perfectly.Any help ??Here is the code I use:Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); MyList = {"age", "height"}; ParamPlot = {"age2", "height2"...

    samir samir
    Discussions |
    Aug 23, 2017 12:42 AM
    14003 views | 7 replies
  • Cox Proportional Hazard - adjusting risk ratio with std dev

    I'm working with someone who is using SAS and I'm trying to do the same analysis in JMP.  When I  questioned their hazard ratio they said it was adjusted by the standard deviation. They commented:In order to obtain results in units of 1 standard deviation – you simply get the standard deviation value for parameter of interest and introduce it in the PH regression statement, for example:proc phreg ...

    Maureen Maureen
    Discussions |
    Aug 22, 2017 1:18 PM
    3362 views | 0 replies

Latest Discussions

  • Is it possible to add a horizontal scroll bar to listboxbox?

    Hi, Is it possible to add a horizontal scroll bar to listboxbox? To be clear, it is a listbox(), not a col list box(). Ex:names default to here(1); myList ={}; for(i = 1, i <= 10, i++, myList[i] = char(i) || "abcdefghijklmnopqrstuvwxyz_abcdefghijklmnopqrstuvwxyz_abcdefghijklmnopqrstuvwxyz"; ); myWin = new window("test", lb = listbox(myList,nlines(7), width(250))); Thanks,Mike

    mikedriscoll mikedriscoll
    Discussions |
    Aug 23, 2017 1:03 PM
    6266 views | 6 replies
  • Cox Proportional Hazard - adjusting risk ratio with std dev

    I'm working with someone who is using SAS and I'm trying to do the same analysis in JMP.  When I  questioned their hazard ratio they said it was adjusted by the standard deviation. They commented:In order to obtain results in units of 1 standard deviation – you simply get the standard deviation value for parameter of interest and introduce it in the PH regression statement, for example:proc phreg ...

    Maureen Maureen
    Discussions |
    Aug 22, 2017 1:18 PM
    3362 views | 0 replies
  • Is there a correlation coefficient for multiple linear regression ?

    Hello, while I can display in simple linear regression a Pearson correlation coefficient to a specific R2/R2adjusted, can I, or is there a way to get a correlation coefficient for a multiple linear regression model, where two or more variables improve my R2adjusted significantly ? Many thanks, Marc 

    marcax marcax
    Discussions |
    Aug 22, 2017 7:48 AM
    5347 views | 3 replies
  • How to force datatype of columns when importing Excel file

    Hi all, I am trying to import an Excel worksheet in JSL, but I meet a problem with some columns which are detected by JMP as numeric whereas they should be character. So I end with empty columns and I can't find a way of telling JMP these columns should be read as character, either in JSL or in Excel import wizard.Here is my JSL script : jsl_dt_orig = open(jsl_fic_planning, //private, Worksheets...

    heloiseheraud heloiseheraud
    Discussions |
    Aug 21, 2017 8:51 AM
    8385 views | 4 replies
  • Don´t show empty cells in wrapped Graph

    Dear all, i like to set up some wafer maps within graph builder, where i put the "charge number" on page and the "wafer number" on wrap. The graph can bee seen below. The issus is that only some wafers have data in the table, therefore most of the cells are empty. Is there a way to only show cells, which are not empty? Here is the code:   Graph Builder( Size( 1337, 27833 ), Show Control Pa...

    vkessler vkessler
    Discussions |
    Aug 18, 2017 5:47 AM
    4935 views | 2 replies

Latest Discussions

  • Cox Proportional Hazard - adjusting risk ratio with std dev

    I'm working with someone who is using SAS and I'm trying to do the same analysis in JMP.  When I  questioned their hazard ratio they said it was adjusted by the standard deviation. They commented:In order to obtain results in units of 1 standard deviation – you simply get the standard deviation value for parameter of interest and introduce it in the PH regression statement, for example:proc phreg ...

    Maureen Maureen
    Discussions |
    Aug 22, 2017 1:18 PM
    3362 views | 0 replies
  • JSL How do I wrap the title text of a OutlineBox?

    Hi all, I often use the Set Title() message to overwrite the OutlineBox titles of charts, distributions, etc. My first issue is that the OutlineBox does not support the Set Wrap() message. Is there any replacement I could use? To work around the missing Set Wrap(), I started inserting newlines "\!n" in the tiitle text. After doing this, I have noticed a second issue: Whatever number of newlines I ...

    AlexanderKrebs AlexanderKrebs
    Discussions |
    Jun 13, 2017 5:38 AM
    4381 views | 0 replies
  • Printing worksheet with cell colors

    Hello JMP Community, I'm currently using JMP version 10.0.0 and having trouble printing my data table with cells highlighted in certain colors.  Is there a way to print keeping the colors or to even export the file keeping the cells highlighted?

    Thanks.

    ferdt58 ferdt58
    Discussions |
    May 16, 2017 9:14 AM
    2160 views | 0 replies
  • Linearity and Bias Report

    In Our MSA stsudy we are performing Linearity and Bias measurment. We are currently controlling at Linearity and Bias to be below 5%.  We actually generate the following report for Linearity and BIas. However in AIAG handbook the criteria for the gauge to pass bias criteria has the following criteria.

    Aravindan Aravindan
    Discussions |
    Apr 18, 2017 12:54 AM
    4260 views | 0 replies
  • CCC Optimal

    Hi,I have 2 clustering chooses as mentionned below,- Nr of cluster 15 : CCC = 69.99 (OPTIMAL)- Nr of cluster 15 : CCC = -92.87- Nr of cluster 15 : CCC = -112.8 The first one with CCC = 69.99 is mentionned as the best optimal. I don't understand why this one is the best by consedering the different values ?. What is the signification of these values ? Thanks,

    Lamine Lamine
    Discussions |
    Mar 17, 2017 5:25 AM
    3313 views | 0 replies
view all discussions