cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.

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

  • Overlay variable for ONE graph only

    I am trying to replicate a graph for which I have downloaded the exact same data but I am having trouble using overlay selectively. This is the original graph: and this is the most I manage to get:  My biggest issue is getting the accumulated black line. As I use overlay to create the stacked bars, the overlay applies to the points too and I end up getting plenty of points/lines... Is there a way ...

    morenopelaez_p morenopelaez_p
    Discussions |
    Aug 27, 2017 7:44 PM
    12710 views | 6 replies
  • Set Checkbox Label Wraping or Width

    Hello, The script I am writing starts with a window that allows the user to select which columns to create using check boxes. I have several groups of check boxes, where the user can select any combination of the 4 options in a group or select a "Select All" check box for that group. (I am not sure if this is the best way to do this or not but it seems to be working.) The problem that I am running...

    aallman aallman
    Discussions |
    Aug 25, 2017 6:32 AM
    8379 views | 3 replies
  • HLM-Random intercept or random slope?

    I am buidling a heirchical linear model for nested data: level 1 student, level 2 teacher, level 3 school. I am interested in controlling for school and student contexts and get at teacher effect.  This is how I built the mdel:In fit model, I used standard least squares as the personality, and assigned school (i. e. school name) and student variables (i. e. student gender, ethnicity and lunch stat...

    xiaoyaj0 xiaoyaj0
    Discussions |
    Aug 25, 2017 1:22 AM
    11262 views | 3 replies
  • Bring Window to Front not working .. also window won't close... please help

    Bring Window to Front not working .. also window won't close... need solution quick Here is my code  plotobj = Bivariate( Y( :Name( "current" ) ), X( :Name( "time" ) ) ); plotobj << Bring Window to Front;New Window( "Enter Number",
    <<Modal,
    <<Bring Window to Front,
    Text Box("Number"),
    variablebox = Number Edit Box( ttf, 10,
    <<Set Function(
    Function({this},
    btn_ok << Click
    )
    )
    ),
    btn_ok = Button Box( "OK",
    ent...

    galactus3000 galactus3000
    Discussions |
    Aug 24, 2017 11:17 AM
    5845 views | 1 replies
  • Select All Checkbox

    I made a script that contains a list of check boxes followed by a "Select All" Check box.  I set the function of the "Select All" check box to select all of the other boxes when it is checked, but now I cannot figure out how to uncheck all the other boxes when the "Select All" check box is unchecked. Any suggestions?V List Box(othicb = Check Box( {"MOErA*", "MOErC*", "MOErT*", "MOErG*"} ),Spacer B...

    aallman aallman
    Discussions |
    Aug 24, 2017 9:52 AM
    7835 views | 2 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
    5623 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
    3130 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
    4613 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
    7736 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
    4565 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
    3130 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
    4101 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
    2005 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
    4006 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
    3115 views | 0 replies
view all discussions