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

  • How can use a script to match data directly from a matrix?

    For example: Get the memory matrix ar with the following script.
    How do match data directly from a matrix with a script?
    Achieve something like this:dt<<Update(With(d2),Match Columns(age=age));Thanks!

    lala lala
    Discussions |
    Oct 9, 2022 9:59 PM
    1082 views | 1 replies
  • How to get the data table with a script Which columns are selected?

    Suppose the data table has some columns selected by the whole column, which columns are selected by the script to get the data table?  Thanks!  

    lala lala
    Discussions |
    Oct 8, 2022 12:27 AM
    2057 views | 2 replies
  • NotePad++ userdefined language

    Does anyone has a BKM how to setup Userdefined Language in Notepad++ for JSL? I found an old thread from 2015. but seems like does not work anymore with new Notepad++.

    wencun6 wencun6
    Discussions |
    Oct 6, 2022 5:38 AM
    1325 views | 1 replies
  • JSL Lock A Column based on Name

    Trying to understand in JSL scripting if there's a way to actually lock columns based on their name in a table? Not sure if theres a simple way to do this or if i just need to create a subset based on the existing table (a few caveats with this solution). Very time consuming to search for each column name and then lock each column. Alternatively, if i can have any idea on how to modify column orde...

    haleyhoewt haleyhoewt
    Discussions |
    Oct 4, 2022 1:22 PM
    1580 views | 1 replies
  • Is there a shortcut to collapse all Expr() in JSL code?

    Hi All,   I have a JSL code with many Expr() defined and was hoping to find out if there is some shortcut keyboard command, mouse click, or menu option in JMP that allows you to collapse all within the code.   If not, this could be a nice thing to add in future versions. Thanks!,DS

    SDF1 SDF1
    Discussions |
    Oct 4, 2022 10:19 AM
    1668 views | 2 replies

Latest Discussions

  • How can use a script to match data directly from a matrix?

    For example: Get the memory matrix ar with the following script.
    How do match data directly from a matrix with a script?
    Achieve something like this:dt<<Update(With(d2),Match Columns(age=age));Thanks!

    lala lala
    Discussions |
    Oct 9, 2022 9:59 PM
    1082 views | 1 replies
  • NotePad++ userdefined language

    Does anyone has a BKM how to setup Userdefined Language in Notepad++ for JSL? I found an old thread from 2015. but seems like does not work anymore with new Notepad++.

    wencun6 wencun6
    Discussions |
    Oct 6, 2022 5:38 AM
    1325 views | 1 replies
  • Collapsing Table Variables/Scripts from Data Box

    Is there a way to collapse Table Variables/Scripts from Data Box / change height of Columns list to hide it? Or is there any other way of getting column listing from data table with same functionalities?  What I have: What I would like to have:   Names Default To Here(1); dt = Open("$SAMPLE_DATA/Big Class.jmp", invisible); New Window("Big Class", H List Box( lb = List Box(dt << Get Column Na...

    jthi jthi
    Discussions |
    Sep 14, 2022 6:44 AM
    1276 views | 2 replies
  • Is Missing command- Scrippting

    In this example, ;"Sum of A+B+C" calculates sum of :A + :B + :C in each row with this formula: If( Is Missing( :A ), 0, :A ) + If( Is Missing( :B ), 0, :B ) + If( Is Missing( :C ), 0, :C )If I change the specific column names to with column number, the script is not working anymore and generates an error If( Is Missing( Column( 1 ) ), 0, Column( 1 ) ) + If( Is Missing( Column( 2 ) ), 0, Column( 2 ...

    GroupSquareWolf GroupSquareWolf
    Discussions |
    Sep 13, 2022 7:54 PM
    1843 views | 4 replies
  • dynamic Y variable for oneway analysis

    Hi everybody, I am trying to script a dynamic Y variable for oneway analysis, then output the mean into a combined table. Is this a correct way to do so ?dt = Data Table ("Analysis"); ColNamesList = d1 << get column names (string ); For( i = N Items( ColNamesList ), i >= 1, i--, OW = (dt << Oneway( Y( Column(ColNamesList) ), X(:SITE), Mean ( 1 ), Automatic Recalc( 0 ) )) << Report; )...

    XiangCD_MP_User XiangCD_MP_User
    Discussions |
    Sep 13, 2022 11:23 AM
    2141 views | 4 replies

Latest Discussions

  • Model classification thresholds add-in display "negative" probability

    Hi, I've been looking at this add-in which is very useful.https://community.jmp.com/t5/JMP-Add-Ins/Exploring-Model-Classification-Thresholds/ta-p/66964 In our case we don't have a probability but instead we have a status and a measurement that ranges between -10 and 10.I want to adapt the script so that the slider can move between -10 and 10 (I've already done it and it works). However the "Probab...

    Agustin Agustin
    Discussions |
    Sep 13, 2022 6:43 AM
    713 views | 0 replies
  • JSL Script Creates New Taskbar Icon When Run

    Hi All, I have what seems to be an odd problem. I've created a JSL script that launches a window through which a user can select some options and then run scripts to pull data from various sources. The odd thing that is happening is that when one of these scripts is run it causes all subsequent JMP windows to open under a new taskbar icon. An example for clarity: 1) User opens jmp. There is 1 icon...

    jbakri jbakri
    Discussions |
    Aug 1, 2022 12:32 PM
    1247 views | 0 replies
  • SUR (Seemingly Unrelated Regressions)

    HI, How to find estimators of FGNLS and NLS (Seemingly Unrelated Regressions) Using JmpPro.# Note that it is present in SAS in the proc syslin
    and it is in stat in the nlsur command Regards

    Raaed Raaed
    Discussions |
    May 5, 2022 4:45 PM
    934 views | 0 replies
  • How do I apply time fixed effects with multiple regression

    I have financial panel data and would like to hold dummy time variables fixed as I regress the other independent variables to test my model's significance. Not sure how to proceed. Is this function only available in SAS? Thanks   

    RiDe RiDe
    Discussions |
    Jan 10, 2022 11:18 PM
    815 views | 0 replies
  • Projects Window List in JMP 15 for Mac -- Reorder?

    I'm trying to use JMP projects more with the promise of re-using graphs and analyses on new sets of similar data. I'm using the Window List in the UL as a kind of 'table of contents' that I can click into to see/show my findings for various analyses.  There is a flow to the findings which I'd like to order in that Window List.  Is this possible? I can't click and drag an entry for a window up or d...

    datanaut datanaut
    Discussions |
    Aug 16, 2021 6:38 AM
    720 views | 0 replies
view all discussions