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

  • Graph builder with values not in data table

    Hello, I am trying to get my script to graph values that are not in a data table but are generated when the script is executed. The program starts with an import of data in two columns similar to this:PositionFocusMetric0120-4140-8165-4160-0130 I then fit a spline up/down the data and determine the offset between the two. The issue comes when I am trying to graph the data. The GraphBuilder doesn't...

    JeffG JeffG
    Discussions |
    Oct 4, 2018 11:25 AM
    9294 views | 4 replies
  • Show a pop up with a statement

    Hi, I am new to JSL scripting and was wondering how can I get JMP to pop up a window to display how many cols were deleted. My code to delete cols is shown below:dt = Current Data Table();For( i = N Col( dt ), i >= 1, i--,         If( (Col N Missing( Column( i ) ) / N Row()) == 1,              dt << delete columns( i ))); 

    rshehadah rshehadah
    Discussions |
    Oct 4, 2018 6:35 AM
    11602 views | 2 replies
  • Draw line or polygon with respect to second Y axis

    Hi everybody, my plot has two y axis. What I would like to do in a script is to draw lines and polygones.I can draw with respect to the first y axis e.g. byPolygon( [0,1,2], [1, 1, 3] );How do I tell JMP that I mean [1, 1, 3] with respect to the second y axis? Can I switch between axis somehow just like the color or line style? Thanks!

    Rob Rob
    Discussions |
    Oct 4, 2018 6:05 AM
    8462 views | 5 replies
  • Hyperlinks in Text Box or Text Edit Box?

    Is there a way to insert a hyperlink into a text box or text edit box?  I know that you can do this in a JMP table with the expression column type, and that you can create a button box in a window that acts like a hyperlink.  I'm also aware of the << markup syntax for text boxes, but that only lets you do bold, underline and italic.

    pmroz pmroz
    Discussions |
    Oct 4, 2018 6:05 AM
    12764 views | 12 replies
  • How do I exit the loop when something is satisfied?

    After the data table is sorted by the age column in ascending order, the cycle is conducted by the age column. When the age is equal to the age of the previous row, n=n+1, otherwise, the cycle is withdrawn.Thank you!  dt = Open( "$SAMPLE_DATA\Big class.jmp" );
    r = N Row( dt );
    n = 0;
    For( i == 2, i <= r, i++,
    If( dt[i - 1, "age"] = dt[i, "age"],
    n = n + 1,
    stop loop
    ););  

    lwx228 lwx228
    Discussions |
    Oct 4, 2018 5:58 AM
    6511 views | 1 replies

Latest Discussions

  • Hyperlinks in Text Box or Text Edit Box?

    Is there a way to insert a hyperlink into a text box or text edit box?  I know that you can do this in a JMP table with the expression column type, and that you can create a button box in a window that acts like a hyperlink.  I'm also aware of the << markup syntax for text boxes, but that only lets you do bold, underline and italic.

    pmroz pmroz
    Discussions |
    Oct 4, 2018 6:05 AM
    12764 views | 12 replies
  • Need help: Grouping Categorical values, finding optimal number of categories and exceptions

    Folks,  I have a problem that I'm hoping somebody would help me find a solution for, or at least nudge me in a right direction. So, let's say we have N tools. They have multiple atributes, let's say 10. This might be exact model number, color, bells and whistles, modifications etc. They also have hundreds of parameters. Some might be the same across all the tools, some might depend on a combinatio...

    miguello miguello
    Discussions |
    Oct 3, 2018 11:07 AM
    9056 views | 5 replies
  • Combine multiple journals into one journal

    iHi, I'd like to do something similar to below. I'm running JMP9.Trend_rpt = trend_biv1 << Report; //trend_biv1 is a bivariate object.Trend_rpt << Save Journal(SavePath || "journal1.jrn");Trend_rpt = trend_biv2 << Report; //trend_biv2 is a second bivariate object.Trend_rpt << Save Journal(SavePath || "journal2.jrn");//Later in script, after the report and bivariate objects no longer exist:ob1_jrn ...

    senatorx senatorx
    Discussions |
    Oct 3, 2018 4:55 AM
    8359 views | 5 replies
  • Editing in graph builder?

    Dear Friends, I have done some simple analysis using big class and data filter as below. Could you please tell me an option (or Property for scripting) to change font of Data filter Contents (for instance Age:12,13 etc or Height:51,70),  Axis label (Count), Data Lables(45% 55%), Legend font (F,M). Also, I would request you to suggest any format for my thesis document if I want to use this as an im...

    sanqub sanqub
    Discussions |
    Sep 28, 2018 3:16 AM
    4247 views | 1 replies
  • Graph Builder: Heatmap Label By Value - How do I control the number of decimal points?

    In Graph Builder I am using a heat map to show the average gain for different combinations of wafers. I have set Label By Value, to get the mean gain value added to the plot for each combination, but I see no way to limit the number of decimal points in the calculated value (changing the number of decimal places for the :Gain column does not affect the label). If possible, I would also like to be ...

    MarkDayton MarkDayton
    Discussions |
    Sep 27, 2018 11:32 AM
    7294 views | 2 replies

Latest Discussions

  • 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
    3632 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
    2455 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
    3433 views | 0 replies
  • Time Series - Prewhiten

    Hello Everyone, My question pertains to understanding what the terminology in JMP's prewhiten platform means.Also, understanding how that helps me determine an appropriate Transfer Function that I can use to test whether x causes y. JMP's prewhiten output shows three different ACF's labeled "Prewhiten Corr", "Noise AutoCorr", & "Noise Partial AutoCorr".
    What is the Prewhiten Corr, Noise AutoCorr, &...

    nopon649 nopon649
    Discussions |
    Jun 7, 2018 11:10 PM
    2467 views | 0 replies
  • Fit Spline By Group: Save Spline Coefficients to Column?

    Hi all--having an issue.  I am using Fit Y by X to fit 5,000 separate regressions.  I hold control, select red drop-down arrow, and Fit->Flexible, Fit->Spline and select, say, 0.1.   This fits a spline to all 5,000 graphs with lambda of 0.1.  I have 28 X values in each of 5,000 graphs, and I understand there are 4 different spline coefficients (A, B, C, D).  I understand if I just had 1 regression...

    M0gAl0g M0gAl0g
    Discussions |
    Jun 5, 2018 3:19 PM
    3023 views | 0 replies
view all discussions