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

  • Is it possible to create a custom marker theme?

    Hi, I am working on color/mark by, under row states. I was able to observe that there is a way to create custom color themes, but not for markers. Is there a way to do that? Thank you.

    Kenobi Kenobi
    Discussions |
    Aug 2, 2023 11:04 AM
    3319 views | 5 replies
  • Why is there an empty table if you don't add wait()?

    Hello everyone, kz = dthz << get rows where( Is Missing( :USL ) & Is Missing( :LSL ) ); dthz << delete rows( kz ); dthz << New Column( "FAIx", "character" ); dthz << begin data update; dthz:FAIx << set formula( If( Col Number( :FAI#, :FAI# ) > 1, :FAI# || "_" || Char( Col Rank( :FAI#, :FAI# ) ), :FAI# ) ); dthz << end data update;
    Wait( 1 );//have to add dt2 = dt1 << Join( With( dthz ), Select(
    ...

    lehaofeng lehaofeng
    Discussions |
    Aug 1, 2023 5:16 PM
    1562 views | 2 replies
  • Rescale Y Axis in control chart builder with a local data filter selection.

    I would like to be able to have a local data filter upon clicking it make the y-axis resize in control chart builder. It works in graph builder but not control chart builder. maybe there is some jsl code or a check box? I also want it to work in JMP Live as this control chart will end up there.  Thanks!

    bjbreitling bjbreitling
    Discussions |
    Aug 1, 2023 1:32 PM
    1129 views | 1 replies
  • How can I scan the text in one column, and put a key term into another column?

    Hello all! This is my first post on this board so I apologize if it is not formatted correctly. I am in the process of coming up with a new script to analyze a 12 experiment stacked data set. I need to take some key phrases from our "Batch ID" column and organize them into other columns using a formula/script (preferably formula). So in this scenario I need the "B01" phrase to go into the Bioreact...

    BunnyBoi12 BunnyBoi12
    Discussions |
    Aug 1, 2023 12:49 PM
    5717 views | 8 replies
  • Table script - completed?

    When triggering a Tables script from another script, how can I check if a table script was completed (without errors)? Adding a return function is not allowed:  Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); dt << run Script( "Bivariate" ); dt << New Script( "test", JSL Quote( print(1); return(1); ),As String( 1 )); dt << New Script( "test2", JSL Quote( New Names...

    hogi hogi
    Discussions |
    Aug 1, 2023 10:55 AM
    2641 views | 5 replies

Latest Discussions

  • I am trying to plot bivariate of the new columns created but having issue creating another list.

      dt = Current Data Table(); //declaring variables alpha_min = 14; alpha_max = 18; inc_val = 0.1; this is the script, but i want to create bivariate plots of each of them without it showing up as multiple pages and also combine the reports to data table. thanks :)   //defining mu col names mu_col = "mu"; //loop through alpha range and create new cols// For( alpha = alpha_min, alpha <= alpha_max, ...

    ParametricStudy ParametricStudy
    Discussions |
    Jul 31, 2023 11:30 AM
    1916 views | 3 replies
  • Workflow builder and referencing

    Hi everyone,I'm trying to build a workflow that will allow be to quickly look at numerous csv files that all have the same format, number of variables, column names etc. I didn't think it would be that complicated but I'm having trouble with the referencing. I've attached an example file (a deconstructed quantitative mass image with x, y pixel locations and mass counts at each pixel). I first bin ...

    GregMcMahon GregMcMahon
    Discussions |
    Jul 31, 2023 3:48 AM
    2912 views | 4 replies
  • Giving options for user to select from, storing selection as string

    Hi, here's my current code that displays a popup window for user input.   I want it so that for Level:, they can choose between two options (each option having a box next to it that the user can tick to select one). What would I have to add to my code to get that? Here's a picture of what I want the "level" user input to look like:Where the user can select one or the other before clicking "Save." ...

    aidanweb aidanweb
    Discussions |
    Jul 29, 2023 7:51 PM
    1007 views | 1 replies
  • Delete consecutive repeating values

    I have a data table where some of the columns have values that repeat because the program that generates the data holds the last value if a new one isn't given.  This means I can't use the "select duplicate rows" option because that deletes all duplicates not just ones that are repeating. I also don't want to delete the rows, just the values in the "cells". 4.13.43.4 - delete value3.4 - delete val...

    JMPtxUser36 JMPtxUser36
    Discussions |
    Jul 28, 2023 10:30 AM
    1449 views | 2 replies
  • Challenges constructing a proper loop

    Hi, Im new to coding and having challenges constructing a functioning scriptdt = current data table(); //declaring and initializing variables// lt_min = 1; lt_max = 50; RSquare_th = 0.9999; count = 0; //loop while (count < 0.99999, //calculate x for each y value dt << New Column ("x", Numeric, formula(:y/ (:y + :avg_num))); //plot bivariate biv = dt << Bivariate( Y( :x ), X( :average_temp), ...

    ParametricStudy ParametricStudy
    Discussions |
    Jul 28, 2023 7:53 AM
    1122 views | 1 replies

Latest Discussions

  • How to use JSL of JMP software to find the one that is more suitable for sinusoidal curve from multiple sets of data?

    Hello!For example, using large class data:
    Compare the height column and the weight column to see which column fits the sinusoidal distribution better.
    The parameters of the sine curve are random. Thanks! 

    UersK UersK
    Discussions |
    Jul 24, 2023 11:44 PM
    804 views | 0 replies
  • bounded KDE (Kernel Density Estimator)?

    Has anyone created or heard of function for JSL that returns a bounded KDE (Kernel Density Estimator)? I'm aware of the KDE used inside of the distribution platform, but one is not able to provide bounds to the domain.

    Prokaryote Prokaryote
    Discussions |
    Jun 23, 2023 11:56 AM
    929 views | 0 replies
  • How to set Scale Values in Graph Builder use Col Quantile function?

     HI, I want  set Scale Values in Graph Builder use Col Quantile function,  but always something wrong. the red code have some problem. I need color scale as Quantile Graph Builder( Size( 839, 726 ), Variables( X( :Prober_X ), Y( :Prober_Y ), Color( :OpticalPower ) ), Elements( Points( X, Y, Legend( 6 ) ) ), SendToReport( Dispatch( {}, "400", ScaleBox, {Legend Model( 6, Pr...

    Solarwing Solarwing
    Discussions |
    Jun 20, 2023 9:32 AM
    786 views | 0 replies
  • New Series on JSL and Visual Code Studio

    Just a heads up that we've been posting some additional JSL tricks on our LinkedIn Blog.   We have a weekly series that's been running currently focused on our Visual Code Studio Extension for JMP. Week 1:  https://www.linkedin.com/posts/predictum_automationjmp-series-use-vs-code-extension-activity-7062456347543359488-uzFu?utm_source=share&utm_medium=member_desktopWeek 2: https://www.linkedin.com/...

    wjlevin wjlevin
    Discussions |
    Jun 19, 2023 2:26 PM
    1223 views | 0 replies
  • Overlaying histograms: Iterating a function through N number of columns?

    @PatrickGiuliano ,  As a response to our latest discussion : Re: How to overlay histograms in JMP Thanks a lot for the response. Also, 1) I would like to get more guidance on ' possibilities of iterating the Overlap function for more columns ( N number of Columns), if possible. the code for : Y Function(N, x):  can be iterated ?  Y Function(N, x);
    For(i = 1, i <= N Col(xm), i++,
    ym[i] = Min(Normal D...

    DecileDromedary DecileDromedary
    Discussions |
    Jun 19, 2023 6:31 AM
    700 views | 0 replies
view all discussions