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

  • Seperate Y axis for Parallel Independent in Graph Builder

    Hi, Is there a way to have a separate Y-axis for each parameter in the graph builder in the parallel independent combination? Combine scale - Parallel merged.   I want to have a separate Y axis for each parameter belowCombine scale - Parallel independent    Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); dt << Graph Builder( Size( 1146, 347 ), Show Control P...

    Jackie_ Jackie_
    Discussions |
    Apr 4, 2024 12:24 AM
    1054 views | 1 replies
  • RGB color by sript

    Hello
    I would like to color column "Name" and to use RGB
    but recive mistake, what's wrong I did in this script? dt = Current Data Table();rows_to_color = dt << Get Rows Where (:"NAME" == :"NAME");
    Column(dt, "NAME") << Color Cells (RGB ( 173, 255, 47 ), rows_to_color);

    Dennisbur Dennisbur
    Discussions |
    Apr 3, 2024 12:13 PM
    2787 views | 5 replies
  • How do I resolve the "Subscript Range in access or evaluation"

    I get error    "Subscript Range in access or evaluation of 'openDTs[ /*###*/1]' , openDTs[/*###*/1]"   but it works on some folder and I don't get the error...Below is my JSL JSL " dir = Set Default Directory("path"); Print(dir); files = Files In Directory("path"); For(i = 1, i <= N Items(files), i++, If(Ends With(files[i], ".txt"), Open( files[i], Import Settings( End Of Line(CRLF...

    PriorLovebird31 PriorLovebird31
    Discussions |
    Apr 3, 2024 9:25 AM
    2506 views | 5 replies
  • Journal in 2 or 3 columns

    Hello guys,I calculated 2 tables HOT_per_skew and COLD_per_skewwhen I added these 2 tables to the Journal, I got the vertical position.My question is, how can I present these 2 tables in a Horizontal position by JSL script?HOT_per_skew << Journal ( ) << Close Window ( );
    COLD_per_skew<< Journal ( ) << Close Window ( );  

    Dennisbur Dennisbur
    Discussions |
    Apr 3, 2024 9:09 AM
    1642 views | 3 replies
  • Jmp project all open reports

    Hello guys,
    I started using jmp project recently. I want to write a script which loops through all reports in the project and perform a action and update the report. Any idea on how to go about this kindly support
    Thanks in advance

    ComplexNerd ComplexNerd
    Discussions |
    Apr 3, 2024 6:29 AM
    1195 views | 1 replies

Latest Discussions

  • Seperate Y axis for Parallel Independent in Graph Builder

    Hi, Is there a way to have a separate Y-axis for each parameter in the graph builder in the parallel independent combination? Combine scale - Parallel merged.   I want to have a separate Y axis for each parameter belowCombine scale - Parallel independent    Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" ); dt << Graph Builder( Size( 1146, 347 ), Show Control P...

    Jackie_ Jackie_
    Discussions |
    Apr 4, 2024 12:24 AM
    1054 views | 1 replies
  • How to get column sum according to same column values?

    Hi all How to calculate the Total Qty if they have the same code? I am currently using Col Sum(:Qty) but it is getting the sum of all column values. I just want the sum of values with the same code & date  DateCodeQtyTotal Qty10-23-23004910-23-23005910-23-23016610-24-23033310-24-23044410-25-23056810-25-230528 

    UserID16644 UserID16644
    Discussions |
    Apr 3, 2024 1:46 AM
    1393 views | 2 replies
  • Standardizing attributes by column name

    I tend to work with the same types of data every day.  Every time I load a file, JMP sets some columns as "Continuous" that really work better as nominals. Is there a way to tell JMP that if it sees a column with a specific name, e.g. "case_id", that it should always flag it as nominal? I know scripts can do this, but having to run a script every time I open a file has gotten a bit tedious.

    BHarris BHarris
    Discussions |
    Apr 2, 2024 7:10 PM
    6324 views | 3 replies
  • Generating summary table with p-values from iterative t-test

    I am looking for a script that will automatically generate a summary/pivoted table of means and p-values for pairwise t-tests compared with one reference group. I am using JMP 17.In the below data table, there are columns for SubjectId, measured BMI, measured VO2max, year, and Reference to indicate whether or not the row has a SubjectID that is a reference.I have been generating summary tables man...

    LinkageBee996 LinkageBee996
    Discussions |
    Apr 2, 2024 9:33 AM
    5116 views | 8 replies
  • dt: image - missing?

    What is the correct way to check if an image in a data table is missing?... and why is there a difference between the column formula and the JSL questionis missing(:pet[5]) Names Default to Here(1); dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" ); dt[[4],"pet"]=.; New Column( "is missing",Formula( Is Missing( :pet ) )); New Column( "is empty", Formula( Is Empty( :pet ) )); New Column( "is nu...

    hogi hogi
    Discussions |
    Mar 31, 2024 8:45 AM
    1575 views | 3 replies

Latest Discussions

  • Error during stemming in text explorer: Inconsistent Recodes in access or evaluation of 'List'

    Hello Community! I'm trying to recode the stemming in text explorer based on a fixed dictionary of words and I'm getting this error "Inconsistent Recodes in access or evaluation of List". This is my code: obj = dt << Text Explorer( Text Columns( :col1) ); obj << Stemming("Stem for Combining"); obj << Add Recodes( {{"attractive", "Attract"},{"unattractive", "Attract"},{"attract", "Attract"},{"ugl...

    sm3001 sm3001
    Discussions |
    Mar 21, 2024 12:49 AM
    931 views | 0 replies
  • DataTable Prompt in application builder on module load

    Hello guys, I have applciation builder with multiple modules. one of the module only contains column list which requires selection of datatable. How to make jmp prompt to select datatable only when that module loads.By default it prompts when the application loads  Kindly guide. Thanks in advance

    ComplexNerd ComplexNerd
    Discussions |
    Mar 7, 2024 3:54 AM
    662 views | 0 replies
  • JMP Project Global Data Filter and Column Switcher

    Hello Guys, I just started exploring jmp project. I am wondering if there is any option to add Global Data Filter and a global column switcher to a jmp project.Currely i have created a jmp project with various reports from a datatable (similar to dashboard) but i want to know if there is a option to add a global data filter and also a global column switcher to this screen. My idea : To create a sc...

    ComplexNerd ComplexNerd
    Discussions |
    Mar 7, 2024 12:10 AM
    619 views | 0 replies
  • "If" returns error response

    I have a script to draw charts and use "if" for the reference line."Sometimes" the reference line is not correct. For example, when Rel_Test=H3TRB, the reference line should be 10, but it shows 5.How could I fix it? 
    d6_graph=dt2 << Graph Builder( Size( 400, 300 ), Show Control Panel( 0 ), Variables( X( :Lot), Y( :dIGSS, Position( 1 ) ), Color( :Lot ), By(:Rel_Test) ), Elements( Box Pl
    ...

    LT LT
    Discussions |
    Mar 4, 2024 8:08 PM
    941 views | 0 replies
  • Neural networks that learn and predict in real time (incremental learning)

    Hello community!!A query:- How JMP is configured to generate neural networks that learn from their inputs in real time (incremental learning) in such a way that it continually updates its weights according to new inputs and generates updated real-time predictions.Greetings,Marco

    Marco2024 Marco2024
    Discussions |
    Mar 4, 2024 9:37 AM
    847 views | 0 replies
view all discussions