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

  • Exporting Graphs from Tab box to Excel cell

    Hi, Is there a way to export the graphs in each tab box in the Excel cells that look something like the one below?JMP Tab Box Excel  Below is the jsl code to create graphsdt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); List1 = {"NPN1", "PNP1", "PNP2", "NPN2", "PNP3", "IVP1"}; List2 = {"PNP4", "NPN3", "IVP2", "NPN4", "SIT1"}; List3 = {"INM1", "INM2", "VPM1", "VPM2", "VPM3"}; List4 = {"SN...

    Jackie_ Jackie_
    Discussions |
    Sep 12, 2023 2:09 PM
    826 views | 0 replies
  • JSL to generate matching column difference and average

    Hello,I am hoping to get some help on the following:Attached JMP file with the following table.My typical/starting data set contain:1. an identifier "Type"2. a set of unknown number of columns with same prefix and various number suffix, e.g. A num1, A num2, A num3...3. a second set of the same number of columns as in #2 above, with same prefix and matching suffix as in #2, e.g. B num1, B num2, B n...

    pkl_jmp pkl_jmp
    Discussions |
    Sep 12, 2023 12:14 PM
    3410 views | 8 replies
  • Time series

    Is there any special module for visualizing continuous process profile as time series and not discrete measures?

    Zara Zara
    Discussions |
    Sep 12, 2023 6:30 AM
    2143 views | 3 replies
  • How Formula works in New Column Function

    dt = Open( "$SAMPLE_DATA\Big Class.jmp" ); New Column("Sum", "Numeric", "Continuous", Set Formula(If(Row() == 1, :Height, Lag(:Sum,1) + :Height)) ); The code above creates Sum column with calculated the accumulative sum. I am new to JSL so could someone explain me how the Formula command works. Is it scan one by one row in the column so that we can write :Height instead of constructing a For-loop ...

    hmm hmm
    Discussions |
    Sep 12, 2023 4:33 AM
    1221 views | 1 replies
  • Formula and graphbuilder

    Dear Community, I need your help and I would like to apologize if it is a stupid question. I’m struggling with the graphbuilder.I would like to use a column including a formula option for plotting it in the graphbuilder window.Nevertheless, it only works when all the parameters are included in the formula (the two following pictures). When I try to make my formula “flexible” with a link to other c...

    BigShaftie BigShaftie
    Discussions |
    Sep 12, 2023 3:04 AM
    2097 views | 4 replies

Latest Discussions

  • Exporting Graphs from Tab box to Excel cell

    Hi, Is there a way to export the graphs in each tab box in the Excel cells that look something like the one below?JMP Tab Box Excel  Below is the jsl code to create graphsdt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); List1 = {"NPN1", "PNP1", "PNP2", "NPN2", "PNP3", "IVP1"}; List2 = {"PNP4", "NPN3", "IVP2", "NPN4", "SIT1"}; List3 = {"INM1", "INM2", "VPM1", "VPM2", "VPM3"}; List4 = {"SN...

    Jackie_ Jackie_
    Discussions |
    Sep 12, 2023 2:09 PM
    826 views | 0 replies
  • How Formula works in New Column Function

    dt = Open( "$SAMPLE_DATA\Big Class.jmp" ); New Column("Sum", "Numeric", "Continuous", Set Formula(If(Row() == 1, :Height, Lag(:Sum,1) + :Height)) ); The code above creates Sum column with calculated the accumulative sum. I am new to JSL so could someone explain me how the Formula command works. Is it scan one by one row in the column so that we can write :Height instead of constructing a For-loop ...

    hmm hmm
    Discussions |
    Sep 12, 2023 4:33 AM
    1221 views | 1 replies
  • Formula and graphbuilder

    Dear Community, I need your help and I would like to apologize if it is a stupid question. I’m struggling with the graphbuilder.I would like to use a column including a formula option for plotting it in the graphbuilder window.Nevertheless, it only works when all the parameters are included in the formula (the two following pictures). When I try to make my formula “flexible” with a link to other c...

    BigShaftie BigShaftie
    Discussions |
    Sep 12, 2023 3:04 AM
    2097 views | 4 replies
  • To automate the Mulitple Data table selection while running Add-Ins.

    Dear All,I am facing a small challenge to implement the Dashboard via Add-Ins. I have a JMP script to import the test data into different Data Table and to make plots for them. I have succeeded in creating an Adds-Ins to create a Dashboard out of the Plots from different Data Tables, however as it involves many Data Table it prompts a menu to select the corresponding Data table to create the Dashb...

    SSMann03 SSMann03
    Discussions |
    Sep 11, 2023 7:47 AM
    3044 views | 2 replies
  • How to dynamically set auto y-axis scale as parameters are selected in local data filter for (graph builder) charts by variable?

    This script below generates data in a format similar to my actual data and then plots charts in a layout I would like.Multiple parameters are plotted in the y-axis as they are selected in the local data filter. This is useful for me as I can compare trends on related parameters in my actual data.Without using Graph builders "Page" option or creating additional columns in the data table, is there a...

    Neo Neo
    Discussions |
    Sep 11, 2023 5:33 AM
    1600 views | 2 replies

Latest Discussions

  • Exporting Graphs from Tab box to Excel cell

    Hi, Is there a way to export the graphs in each tab box in the Excel cells that look something like the one below?JMP Tab Box Excel  Below is the jsl code to create graphsdt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); List1 = {"NPN1", "PNP1", "PNP2", "NPN2", "PNP3", "IVP1"}; List2 = {"PNP4", "NPN3", "IVP2", "NPN4", "SIT1"}; List3 = {"INM1", "INM2", "VPM1", "VPM2", "VPM3"}; List4 = {"SN...

    Jackie_ Jackie_
    Discussions |
    Sep 12, 2023 2:09 PM
    826 views | 0 replies
  • PickFile() from within a Project does not use file filters

    When I use PickFile() outside of a project, it works as noted in the scripting guide, scripting index, and other posts here in the forums. However, when I run the script within a project, the window that opens is a different one. It seems to be in order to allow you to pick a file that is saved to the project itself, but the filters do not work even though it shows the folder that I specified as d...

    R2OKeefe R2OKeefe
    Discussions |
    Sep 3, 2023 8:45 PM
    1204 views | 0 replies
  • Robust Fit Outliers - different row set selected and excluded as outliers

    Dear community,I have a stacked data table, and want to exclude outliers by a Label (e.g. an element for some measurements).In the robust fit outlier platform I can detect outliers and than can select or exclude corresponding rows.For my understanding, rows that are selected than or excluded, should be exactly the same ones.And that is the case for the below sample data table used in the JSL below...

    Georg Georg
    Discussions |
    Aug 16, 2023 2:40 AM
    1001 views | 0 replies
  • Get the JMP Default Dark color theme

    Hello, Is there anyway I could extract all the color codes used in these color themes, using JSL or any another way?I do have difficulties in dealing with colors, hence I rely more on HEX codes, or numeric codes.  Thank you.

    Kenobi Kenobi
    Discussions |
    Aug 9, 2023 9:26 AM
    1299 views | 0 replies
  • 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
view all discussions