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

  • standard deviation in multi way ANOVA

    hello,
    i did a multiway ANOVA using 4 crossed factors . JMP shows a significant difference but i noticed that within a factor the standard deviation is exactly the same for all the variables
    i guess there must be something wrong but i don't know what i did wrong?
    would someone have any idea of what could cause that? or maybe some one knows how the standard deviation is calculated in the multiway ANOV...

    Discussions |
    Jul 9, 2010 7:34 PM
    4172 views | 4 replies
  • How to access the control chart variables

    Hi, I am trying to set the scale of the control chart to 0 whenever the LCL is lower then 0, does somebody knows how to do it?, I don’t know how to get the LCL from the report.
    Thank a lot, Pniel

    for(i=2, i<=ncol(tras), i++,
    vcontrol=vListBox(
    rrrr=Control Chart(
    Sample Label( :Date ),
    Group Size( 1 ),
    KSigma( 3 ),
    Chart Col( column(i), Individual Measurement )
    );
    //report(rrrr)[axisbox(1)]<//report(...

    Discussions |
    Jul 9, 2010 10:48 AM
    3129 views | 3 replies
  • How to Close Bivariate Plots with JSL

    I have some JSL code that creates a Bivariate plot called bv1 using data from dt1 but I can't figure out how to close this plot using JSL code. Interestingly, while hovering over dt1 shows the name of this data table, hovering over bv1 shows an empty list.

    The scripting guide lists the syntax for closing data tables but it doesn't apply to graphical elements. Does anyone have any suggestions on how...

    terapin terapin
    Discussions |
    Jul 1, 2010 11:43 AM
    12354 views | 1 replies
  • How to Call Script From Button Box?

    I'm writing some code that will create a new window that contains several Button Boxes. Each Button Box will execute some jsl code located in some directory. I've tried many different ways to call these jsl files but can't get them to work. Any suggestions on how to accomplish this would be appreciated.

    regress = "C:\script_a.jsl";
    ov1 = "C:\script_b.jsl";

    dlg1 = New Window ( "Title",
    Lineup Box( Spa...

    terapin terapin
    Discussions |
    Jul 1, 2010 7:38 AM
    11802 views | 2 replies
  • Checking data with test limits

    Hi Guys,

    Is there any way I can check each cell value in a column against the column's test limits and decide if the test has passed or failed? For example if a column has 10 rows of data and if 5 out of the 10 rows fail the test limits for that column, I would like to see a message in a box that says column 'X' failed.

    Thanks.

    Discussions |
    Jun 29, 2010 1:20 PM
    5814 views | 13 replies

Latest Discussions

  • standard deviation in multi way ANOVA

    hello,
    i did a multiway ANOVA using 4 crossed factors . JMP shows a significant difference but i noticed that within a factor the standard deviation is exactly the same for all the variables
    i guess there must be something wrong but i don't know what i did wrong?
    would someone have any idea of what could cause that? or maybe some one knows how the standard deviation is calculated in the multiway ANOV...

    Discussions |
    Jul 9, 2010 7:34 PM
    4172 views | 4 replies
  • How to access the control chart variables

    Hi, I am trying to set the scale of the control chart to 0 whenever the LCL is lower then 0, does somebody knows how to do it?, I don’t know how to get the LCL from the report.
    Thank a lot, Pniel

    for(i=2, i<=ncol(tras), i++,
    vcontrol=vListBox(
    rrrr=Control Chart(
    Sample Label( :Date ),
    Group Size( 1 ),
    KSigma( 3 ),
    Chart Col( column(i), Individual Measurement )
    );
    //report(rrrr)[axisbox(1)]<//report(...

    Discussions |
    Jul 9, 2010 10:48 AM
    3129 views | 3 replies
  • Checking data with test limits

    Hi Guys,

    Is there any way I can check each cell value in a column against the column's test limits and decide if the test has passed or failed? For example if a column has 10 rows of data and if 5 out of the 10 rows fail the test limits for that column, I would like to see a message in a box that says column 'X' failed.

    Thanks.

    Discussions |
    Jun 29, 2010 1:20 PM
    5814 views | 13 replies
  • customer design the control chart test rule

    Hi experts,
    I want to define the QC test rule for given chart, any idea or script shared?

    PR Rules:
    PR1 1 point above 3 or below -3 sigma
    PR2 2 of 3 points above 2 or below -2 sigma
    PR3 4 of 5 points above 1 or below -1 sigma
    PR4 8 or 8 points on same side of central line
    PR5 7 consecutive ascending or descending points
    WE Rules:
    WE1 1 out of 1 points above 3 sigma
    WE2 2 out of 3 points a...

    Discussions |
    Jun 17, 2010 6:35 AM
    3065 views | 1 replies
  • Moving Range Chart UCL calculation in JMP8

    The Moving Range UCL calculation is given in text books as UCL=D4(MRavg) with D4=3.267. When I set the JMP control chart IR at 3 Ksigma the UCL for the MR agrees with the calculation above. When I set the JMP control chart IR at 3.5 Ksigma I get a different UCL for the Moving Range chart. I understand the manual calculation for the accompanying Individuals Chart for 3.5 Ksigma (UCL=Xavg +/-3.5xMR...

    Discussions |
    Jun 9, 2010 8:07 PM
    3606 views | 2 replies

Latest Discussions

  • Control Charting with transactional recordset

    Hello,

    I'm trying to understand if JMP supports a control chart graph directly from transactional data without first having to create a summary table.

    The JMP sample data table called Washers contains 15 records showing the count of defects per lot size of 400. Taking one step back there may have existed a data table of 6000 records (15x400) where each record contained the defect count of 1 or 0. W...

    khill khill
    Discussions |
    May 10, 2010 4:40 AM
    2189 views | 0 replies
  • Nemenyi test post-hoc for Kruskal-Wallis test

    Is there a way to do post-hoc testing for the Kruskal-Wallis test for non-parametric data? I have searched the web and most use the Nemenyi test as described by Zar in Biostatistical analysis 3rd edition p226. I have a large amount of data and don't want to do all this by hand.

    Many thanks

    Discussions |
    Feb 12, 2010 12:10 AM
    3057 views | 0 replies
  • Random Parameters in Profiler?

    I am evaluating JMP (currently V. 7, but my company is in the upgrade process) and I am particularly interested in figuring out how to use the Profiler for some of my frequent activities. Can anyone help with the following?

    I would like to simulate a function F(x, theta(i)) over a range of x values. Theta(i) is a set of parameters drawn from a multivariate-normal distribution for each individual ...

    jff jff
    Discussions |
    Jun 25, 2009 5:53 AM
    2615 views | 0 replies
  • Overlay normal quantile plots without long string labels

    Hello,

    I am a longtime user of JMP7. To make overlay normal quantile plots I use Fit Y by X, where Y is the continual variable like Height and X is a categorical variable like Gender. Using Right-click/Legend gives a nice color coded legend for the curves, but JMP also tries to label each curve way up at the top (upper quantile) end of the curve. Invariably these are ugly and overlap each other. ...

    karenb karenb
    Discussions |
    Jun 2, 2009 5:54 PM
    3143 views | 0 replies
  • Welcome to the JMP Software Discussion Forum!


    We hope you'll find this forum useful as a place to connect with other users of JMP Software, pose questions and share your expertise in using JMP. Topics may include, but are not limited to: data visualization, Design of Experiments (DOE), exploratory data mining, programming with the JMP Scripting Language (JSL), quality, statistical procedures using JMP and Visual Six Sigma.

    Please note that thi...

    Discussions |
    Jan 12, 2009 7:24 AM
    5687 views | 0 replies
view all discussions