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

  • Appending multiple graph boxes to a single window without them copying the most recent append

    I'm trying to create a window that has several graph boxes being appended to help visualize the data that I'm processing.  The setup I have is similar to this. thisWindow = new window("Test Window"); for(x = 1, x <=nitems(thingsToDraw), x++, thisWindow << append( graph box( (setup of X and Y axis, scales and such) (for loops that create dynamic shapes in the graph box) ); ); );The prob...

    FuzzyWolf FuzzyWolf
    Discussions |
    Feb 26, 2020 11:30 AM
    2804 views | 4 replies
  • Passing python-generated jsl to JMP

    I work a lot with python programmers to generate a variety of charts and graphs. Often, I play around with Graph Builder (or some other JMP platform) to get what I want. Then I save it as a graphic, send it to them and say "make this". It would be much more efficient, if I could just send them the JSL code and use JMP as the graphic back end. The idea is that when a graph is needed, a python scrip...

    scott1588 scott1588
    Discussions |
    Feb 26, 2020 10:49 AM
    2568 views | 1 replies
  • Why is the power of my mixture design so low, even with an effect size of 20 standard deviations?

    Hi all, I'd appreciate any advice.  I'm helping a scientist at my company design a mixture experiment with 5 ingredients.  We wish to measure main effects and 1st order interactions.    I asked the scientist to provide mins and maxes for the ingredient concentrations, the test precision standard deviation, and to estimate the effect size of the dominant ingredient.  I'm relying on Power to decide ...

    ArthurChemE ArthurChemE
    Discussions |
    Feb 26, 2020 10:42 AM
    15469 views | 11 replies
  • Running external program with JMP

    Hi,I am new user and would like to know a couple of things about Run Program which was not clear to me from the documentation. I am using JSL to run an external program which starts its own gui. 1. Is there a way to embed this gui into JMP or force it to be contained within the JMP gui?2. It initially starts a command line on windows and load stuff and then asks for a file dialog whichfor me is a ...

    AD1 AD1
    Discussions |
    Feb 26, 2020 8:50 AM
    2778 views | 2 replies
  • Reverse colors in Contour Plot Platform

    I have a script which iterates over several columns and generates contour plots. If the column values are negative I want to reverse the contour colours, so I set a variable like this:  if(col mean( col1 ) < 0, revcols = 1, revcols = 0); Contour Plot( ... Reverse Colors( revcols ), ...However, the problem I have is that the contour plot is now always reversed - it seems to ignore the value of r...

    matth1 matth1
    Discussions |
    Feb 26, 2020 7:50 AM
    4466 views | 5 replies

Latest Discussions

  • Passing python-generated jsl to JMP

    I work a lot with python programmers to generate a variety of charts and graphs. Often, I play around with Graph Builder (or some other JMP platform) to get what I want. Then I save it as a graphic, send it to them and say "make this". It would be much more efficient, if I could just send them the JSL code and use JMP as the graphic back end. The idea is that when a graph is needed, a python scrip...

    scott1588 scott1588
    Discussions |
    Feb 26, 2020 10:49 AM
    2568 views | 1 replies
  • Running external program with JMP

    Hi,I am new user and would like to know a couple of things about Run Program which was not clear to me from the documentation. I am using JSL to run an external program which starts its own gui. 1. Is there a way to embed this gui into JMP or force it to be contained within the JMP gui?2. It initially starts a command line on windows and load stuff and then asks for a file dialog whichfor me is a ...

    AD1 AD1
    Discussions |
    Feb 26, 2020 8:50 AM
    2778 views | 2 replies
  • How do I calculate z-scores at different aggregation levels?

    Hello,  How do I use JSL to calculate Z-scores at different levels of aggregation? I am working with cancer mortality data (1999 - 2015) at the county-level. I need to calculate Z-scores to compare each county to the others within a state and all counties within the country. I cannot simply use the standardize function because it automatically takes an average of rates--which is invalid unless the...

    Jmsouch Jmsouch
    Discussions |
    Feb 26, 2020 7:04 AM
    2222 views | 0 replies
  • Col Formula Month()

    I have a data table where I have multiple date with times. I'm trying to change all the dates into just the month and maybe even a month-year format.I know I've done this before by selecting the column going to formula and putting together Month(DateandTime) than I would use recode to change numbers into Jan. - Dec. When I'm trying today, the Month() formula is changing my date to just dots. I've ...

    Herrera5238 Herrera5238
    Discussions |
    Feb 25, 2020 6:52 AM
    15707 views | 13 replies
  • help with tables

     dt = current data table(); dt << subset(by(:p20000), All Rows, All Columns); //When I subset dt by :p20000, it outputs atmost 3 data tables ‘p20000=1000’, ‘p20000=1001’, ‘p20000=1002’. //What I do next is to check if such dt exists exist= Try(Data Table("P20000=1002");tableExist = 1,tableExist = 0); );

    //if tab_1002,
    tab_1002=expr(insery my long script here);
    //if tab_1001,
    tab_1001=expr(insert s
    ...

    viskovicz00012 viskovicz00012
    Discussions |
    Feb 25, 2020 3:10 AM
    1436 views | 1 replies

Latest Discussions

  • How do I calculate z-scores at different aggregation levels?

    Hello,  How do I use JSL to calculate Z-scores at different levels of aggregation? I am working with cancer mortality data (1999 - 2015) at the county-level. I need to calculate Z-scores to compare each county to the others within a state and all counties within the country. I cannot simply use the standardize function because it automatically takes an average of rates--which is invalid unless the...

    Jmsouch Jmsouch
    Discussions |
    Feb 26, 2020 7:04 AM
    2222 views | 0 replies
  • Calling Windows API ImageViewer.dll to display JPG files.

    I am working with a very large database of image files and want to be able to display the file for the user for visual inspection from a script. I have been able to get the following code to load the DLL but get an error requesting a signature argument. Does anyone know how to get a signature string from the system to pass to the DLL.   ERROR MESSAGE FORM LOG: Second argument to CallDLL must be a ...

    DMeakin1 DMeakin1
    Discussions |
    Jan 17, 2020 10:19 AM
    2034 views | 0 replies
  • Running script from command line on MAC

    Not a mac person.  Does anyone know how to run a jsl script from command line on a mac?  I specifically mean WITHOUT "//!" at the top of it.     I have this but it only opens the file unless I have the "//!" open -g -W -a /Applications/JMP\ Pro\ 15.app/ $(pwd)/myscript.jsl

    vince_faller vince_faller
    Discussions |
    Jan 10, 2020 2:26 PM
    1673 views | 0 replies
  • how to add confounding variable

    I am working with a multi level data. Data is attached.In this dataset, I have 8- X variable: cumulative risk (continuous), all other risk (dichotomous). 3- Y variables: insurance and practice (dichotomous) and time (continuous)I have one confounding variable Age (continuous). I will have to add random effect to X variable. But I am confused how to add confounding variable to this analysis. Can an...

    billi billi
    Discussions |
    Jan 6, 2020 9:39 AM
    1608 views | 0 replies
  • Difference between std error in "Parameter Estimates" and "Least Squares Means Table"?

    I am running mixed effects models and have noticed that the standard error for an effect in the "Parameter Estimates" table is different from the standard error reported in the Least Squares Means table for the same effect. How are they calculated differently? Thanks! 

    Ranae Ranae
    Discussions |
    Nov 26, 2019 11:44 AM
    1689 views | 0 replies
view all discussions