cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Live SPC Dashboard from Excel Report

    Hello JMP Community, This is my first time posting and my first large JMP scripting project so please bear with me.This forum has been very helpful to get where I am so far.   Goal: Have one JMP dashboard that opens and parses all excel files located in a directory displaying IR charts for each asset number. Live in the sense that each time the dashboard/script is opened it runs and updates the ch...

    PatrickM PatrickM
    Discussions |
    Nov 21, 2018 7:26 AM
    8123 views | 2 replies
  • Help with error message - Argument is wrong type in access or evaluation of 'Contains'

    I need to check if the columns contain either of the 2 strings and then replace column value with value in another column. Here's the code - For(i=1,i<= NRows(dt),i++, if(contains(:step[i],"NA")| contains(:step[i],".") , :step[i] = description[i]; ) );   But I get an error saying - argument is wrong type in access or evaluation of 'Contains' What am I doing wrong here?

    ENTHU ENTHU
    Discussions |
    Nov 19, 2018 3:02 PM
    7366 views | 1 replies
  • How to get columns names that contains certain words given by user?

    Hi,   I am looking for advice regarding getting columns that contains certain words that I am interested in.   For instance: I would like to get any column names that contains "Number" in the given sample data provided below. Expected returned list of columns names should be {"Flight Number" , "Tail Number"}. However, I am not able to get anything returned. My codes are as follows:     dt = open("...

    ValarieSimmons ValarieSimmons
    Discussions |
    Nov 19, 2018 2:49 PM
    21826 views | 8 replies
  • JMP Variability Gauge chart is automatically scaling y-axis to the data and not showing limits

    I recently upgraded to JMP14.1 from JMP 13. I have a script that automatically populates spec limits to 100s of columns and then it enables the feature to show the spec limits on the graph (Show as Graph Reference Lines). The script works fine with no errors in JMP 14.1 and also enables the check box for all the columns. However, JMP 14.1 seems to be scaling the y-axis as per the data spread and i...

    bharathu bharathu
    Discussions |
    Nov 16, 2018 11:40 PM
    2873 views | 1 replies
  • Problem to save a dashboard as interactive HMTL

    Hello all, I have difficulty to save dashboard to interactive HMTL. I also got three save as type to select: JMP Source File, JMP Application File or JMP Script.But I can save a graph as interactive HMTL with no issue. Can anyone help me?

    nliu6 nliu6
    Discussions |
    Nov 16, 2018 1:02 PM
    4960 views | 1 replies

Latest Discussions

  • Help with error message - Argument is wrong type in access or evaluation of 'Contains'

    I need to check if the columns contain either of the 2 strings and then replace column value with value in another column. Here's the code - For(i=1,i<= NRows(dt),i++, if(contains(:step[i],"NA")| contains(:step[i],".") , :step[i] = description[i]; ) );   But I get an error saying - argument is wrong type in access or evaluation of 'Contains' What am I doing wrong here?

    ENTHU ENTHU
    Discussions |
    Nov 19, 2018 3:02 PM
    7366 views | 1 replies
  • JMP Variability Gauge chart is automatically scaling y-axis to the data and not showing limits

    I recently upgraded to JMP14.1 from JMP 13. I have a script that automatically populates spec limits to 100s of columns and then it enables the feature to show the spec limits on the graph (Show as Graph Reference Lines). The script works fine with no errors in JMP 14.1 and also enables the check box for all the columns. However, JMP 14.1 seems to be scaling the y-axis as per the data spread and i...

    bharathu bharathu
    Discussions |
    Nov 16, 2018 11:40 PM
    2873 views | 1 replies
  • Consolidating Rows and Deleting Blank Data in JMP13

    Hello all,  My question is twofold. My data appear something like this:  1-Ax y....1-A..zq..1-A....ww2-Byw....2-B..ty..2-B....qp I would like to A) delete the empty data points and B) consildate the rows according to the identifier in the first column that each row has in common (i.e. 1-A and 2-B).  I would like my end result to look like this:  1-Axyzqww2-Bywtyqp Does anyone have any suggestions ...

    cfsaylor cfsaylor
    Discussions |
    Nov 16, 2018 8:54 AM
    11799 views | 7 replies
  • I have some cells selected ... how do I set the values of those cells?

    I have a script which has already selected a set of cells.Now I want to set those cells to have a certain value, say 6.3201why doesn't the following work?set selected cells(6.3201);I know how to select the cells and don't need help with thatI need help with how to take a group of selected cells and simple want to place a value in themthanks  

    galactus3000 galactus3000
    Discussions |
    Nov 16, 2018 8:00 AM
    3662 views | 1 replies
  • Possible to disable alert for "Your JMP License has Expired"

    Hello, 

    Is it possible to disable the alert for JMP License Expiration? 
    If not, is it possible to close it automatically?

    My company is waiting on a PO to finalize to update the License, however this pop-up is blocking Task Scheduler from running scripts in JSL. Any help would be appreciated.

    tanavin tanavin
    Discussions |
    Nov 15, 2018 11:25 AM
    2687 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
    2560 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
    3235 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
    3641 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
    2465 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
    3439 views | 0 replies
view all discussions