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

  • Updating jsl scripts using Python to JMP 18

    We have jsl scripts that are calling python scripts that I now want to update for the new Python functionality of JMP 18.Up to JMP 18, we did something like this to prepare the Python connection:// Python setup Python Init( Debug Print Statements( "TRUE" ), Init Trace("TRUE"), Debug Print Output("TRUE") ); Python Submit( "\[ import numpy as _JMPnp import scipy as _JMPsp import pandas as _JMPpd i...

    Feli Feli
    Discussions |
    Apr 25, 2024 11:32 AM
    3023 views | 3 replies
  • Workflow step not completing before moving on

    Is anyone else having a problem where a workflow step applies a formula to a column, and it moves on to the next step before finishing evaluating the current step?  I have to manually pause and wait for it to complete before allowing it to resume.  This is happening on a fairly large table, and I know it's basically fine for a small table.

    bgotchall bgotchall
    Discussions |
    Apr 25, 2024 8:07 AM
    2030 views | 3 replies
  • Optimizing list box content update.

    Hello JMP community, Lately, I was looking into improve the performance of my internal JSL scripts and I found the following performance issues that I would like to address.Lets take the following script (JMP 17.2 PRO running on macOS): Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); values = Column( dt, 1 )[dt << get rows where( Excluded( Row State() ) != 1 )]; new window(...

    JmpNoobScripter JmpNoobScripter
    Discussions |
    Apr 24, 2024 7:16 AM
    3296 views | 5 replies
  • How to plot distributions at Graph Builder (instead of box plots)

    Hello,I'm looking for a way to present the data from Graph Builder in a way of distributions instead of the box plots (as in the JRP attachment). Basically I want each graph builder square to look like JPG attachment.Is it possible? Can anyone help me out?

    zfreidin zfreidin
    Discussions |
    Apr 24, 2024 1:24 AM
    2283 views | 3 replies
  • How to copy paste a formula column between two different tables

    I have two tables coming from two similar files that vary in number of rows. They share column names and I want to copy-paste formula columns from the old one to the new one. There is no index I can use to join them.  How can I do that, ideally without JSL?    

    FN FN
    Discussions |
    Apr 23, 2024 9:01 AM
    1316 views | 2 replies

Latest Discussions

  • Workflow step not completing before moving on

    Is anyone else having a problem where a workflow step applies a formula to a column, and it moves on to the next step before finishing evaluating the current step?  I have to manually pause and wait for it to complete before allowing it to resume.  This is happening on a fairly large table, and I know it's basically fine for a small table.

    bgotchall bgotchall
    Discussions |
    Apr 25, 2024 8:07 AM
    2030 views | 3 replies
  • How to plot distributions at Graph Builder (instead of box plots)

    Hello,I'm looking for a way to present the data from Graph Builder in a way of distributions instead of the box plots (as in the JRP attachment). Basically I want each graph builder square to look like JPG attachment.Is it possible? Can anyone help me out?

    zfreidin zfreidin
    Discussions |
    Apr 24, 2024 1:24 AM
    2283 views | 3 replies
  • A function to add columns with names that has a prefix

      Hi community,   I want to write a function to add columns that have names that has a given prefix, and give values to the columns based on given conditions. This is the script that I have, but it errors out "Unresolved Column". I double checked everything and don't know where went wrong...   Much appreciated for the help!   add_extra_columns = Function({dt, prefix}, {Default Local}, dt << New...

    DivisiveEagle45 DivisiveEagle45
    Discussions |
    Apr 22, 2024 10:31 PM
    2161 views | 5 replies
  • Set the printer to use

    I am trying to save out a data table as a PDF using JSL and the only way to do that I can find is to save it and use my Adobe PDF as the printer.  However, this is not the default printer I use so I would have to change it before I run the script then switch it back afterwards.  Is there any way for me to use JSL to set the printer to use? This is the JSL I am using to print the data table//PDF Da...

    shampton82 shampton82
    Discussions |
    Apr 20, 2024 2:01 AM
    1009 views | 1 replies
  • How to get X axis value by jsl?

    Hi,how could use jsl to get X axis Value by JSL?like oneway anovaI want to get first /second name in x-axisthanks   

    Wei1 Wei1
    Discussions |
    Apr 19, 2024 12:43 AM
    911 views | 1 replies

Latest Discussions

  • graph builder bug - x group shift

     (JMP 17, MacOS) I have a JSL scripts that creates multiple graph builder charts, but in some of them, and it's not repeatable always - some of the x groups  are getting different height, causing also the data plotted to be shifted. Another issue - is that I can't set the X group lables text to be 90 degrees rotated to fit long strings without making the chart too wide. This is supported for X var...

    ShlomiB76 ShlomiB76
    Discussions |
    Apr 14, 2024 12:08 AM
    721 views | 0 replies
  • Project ignoring H Splitter Box Set Sizes . . . sometimes

    I'm working with a JMP 17 Project and have a script to import a CSV file, embed a script into the Data Table, and execute the embedded script. The embedded script creates a graph from the data and sets the Project layout. All of these pieces, executed individually, work as intended. The problem I am having is that when I execute the combined script, the outer H Splitter Box ignores <<Set Sizes and...

    ionatx ionatx
    Discussions |
    Apr 4, 2024 1:25 PM
    712 views | 0 replies
  • 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
    935 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
    666 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
    624 views | 0 replies
view all discussions