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

  • Recode multiple values in multiple columns

    Hello JMP Experts, I am tying to recode 103 columns of data in a data table. There are quite a few recodes that need to happen in each column. I was trying to follow this post:https://community.jmp.com/t5/Discussions/Recode-multiple-columns-with-JSL-script/m-p/7865#M7859but use recode instead of "if". I think my problem is with the "cols" I used. I'm unsure how to reference the column I am targeti...

    MattP MattP
    Discussions |
    Dec 13, 2018 11:11 AM
    4903 views | 2 replies
  • Combining scatter plot and broken line graph with the graph builder

    Hi guys, I needs some idea for the graph builder.
    I got problem after making a scatter plot which has several data on the Y axis. After that I recognized I have to build in a broken line graph which has the avg data.
    I'm trying this by 2 methods but none works.

    1. Adding a column that has the avg of the data to my data sheet and use the graph builder again -> Doesnt work because I dont know how to co...

    sojun1218 sojun1218
    Discussions |
    Dec 13, 2018 6:55 AM
    2488 views | 1 replies
  • Settings value of column based on selected column in a summary table

    Hi experts. I have a linked summary table, in which i select rows, based on a criteria.In my main table, I now need to set a specific value in a column, for the selected rows. I have made a basic table with the following:Sample   errors1            0
    s1            0
    s1            0
    s2            0
    s2            0
    s2            0 I have some very simplified code as an example: dt = current data table();...

    AWMN AWMN
    Discussions |
    Dec 13, 2018 5:52 AM
    4963 views | 2 replies
  • How to set JMP v11 as default launcher

    Hi all,I'm using both JMP v11 and v12 and my JMP default launcher is v12. Recently I have an add-in which is only available for JMP v11. However, when I installed the add-in, it automatically launched JMP v12 instead of JMPv11. Would you please share how to switch the default launcher from JMPv12 to v11 and backwards?

    Hanyuri Hanyuri
    Discussions |
    Dec 12, 2018 8:40 PM
    10685 views | 6 replies
  • paired t-test with a covariate

    My dataset consists of #of fish caught in three different types of wetland vegetation. This data was collected at 16 different sites. I have done the Wilcoxon signed Rank test in the matched pairs analysis to see if there are signifcant differences in the number of fish caught in the different vegetation types. I am also interested in using water depth as a covariate. Is that possible while within...

    MCW MCW
    Discussions |
    Dec 12, 2018 12:03 PM
    8985 views | 3 replies

Latest Discussions

  • Combining scatter plot and broken line graph with the graph builder

    Hi guys, I needs some idea for the graph builder.
    I got problem after making a scatter plot which has several data on the Y axis. After that I recognized I have to build in a broken line graph which has the avg data.
    I'm trying this by 2 methods but none works.

    1. Adding a column that has the avg of the data to my data sheet and use the graph builder again -> Doesnt work because I dont know how to co...

    sojun1218 sojun1218
    Discussions |
    Dec 13, 2018 6:55 AM
    2488 views | 1 replies
  • [Script] Get rid of Moving Range chart in control chart builder


    Hello~ all~Is there a way to get rid of Moving Range chartin the 'Control chart builder' platformby using JMP script? : )Here is the script for the 'control chart builder' sample.dt = Open( "$SAMPLE_DATA/Quality Control/Coating.jmp" );dt << Control Chart Builder(
    Show Control Panel( 0 ),
    Variables( Subgroup( :Pin ), Y( :Weight ) ),
    Chart( Position( 1 ), Limits( Spec Limits( 1 ) ), Warnings( Test 1...

    Steve_Kim Steve_Kim
    Discussions |
    Dec 12, 2018 11:43 AM
    17350 views | 12 replies
  • How to remove Points or Smooth Legend for Graph Builder using JSL?

    Hi,By default if there are points and smoothing line in Graph Builder, there are legends for both. Sometimes, having two legends is redundant and I would like to get rid of one. What is the syntax for this? I made a graph builder function (see below). But I can't seem to remove the Legend even if I put Legend (0) in Points. //Variable //Definition //listin ==> list object which contains the follo...

    shaira shaira
    Discussions |
    Dec 12, 2018 2:37 AM
    3562 views | 1 replies
  • Scripts for multiple data windows

    I am just getting started in JMP. I have a very basic current need. I need a quicker way to do a calculation and visualization of motor data files I'm recording. I am tired of doing it manually in excel everytime. A friend suggested JMP as a way to do it consisitently and quickly without having to get into Excel Macros. I downloaded the trial and am spending a couple days to see if it can do the j...

    wbwing wbwing
    Discussions |
    Dec 11, 2018 9:52 AM
    17788 views | 9 replies
  • partial least squares for binary response, PLS-DA

    I'm using JMP Pro PLS, but my response is binary.  I've seen an approach, PLS-DA that does the math in a different way recognizing that the predictors and the responses are not of the same type and so the notion of covariance between them is different than if they were both numeric.  I have only skimmed the literature before taking a deeper dive.  I thought JMP would use an approach specifically d...

    gene gene
    Discussions |
    Dec 8, 2018 10:43 AM
    2762 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
    2413 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
    3112 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
    3438 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
    2328 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
    3281 views | 0 replies
view all discussions