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

  • prev sib - how?

    I want to get in this display tree from the Axis Box to the TextEditBox:  but with the below code, I get stuck at step 2: going to the previous sibling: Names Default to Here(1); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); gb = dt << Graph Builder( Variables( X( :height ), Y( :weight )), Elements( Points( X, Y) ) ); show(start= report(gb)["Graph Builder",AxisBox(1)]); show(step1 = start << par...

    hogi hogi
    Discussions |
    Jun 1, 2024 9:32 AM
    1257 views | 2 replies
  • Open all jsl files in a folder, find and replace text, save and close files

    I want to write a script to open many jsl files in a folder. In each jsl file, I need to find a text and replace it with another text. Save each file and close it before going onto the next file in the folder. I tried to use "substitute" but did not work. Appreciate all the help!   //folder contains 224 jsl scripts folderID = "T:\JMP_SCRIPTS\Openfiles n update\test\"; Files = Files In Directory(F...

    cchueng cchueng
    Discussions |
    May 31, 2024 8:53 PM
    1637 views | 2 replies
  • JMP doesn't recognize my spec limits when column name is a variable in my user-defined function (JMP 17)

    I currently have a script that creates control and process capability charts for a variety of variables, puts it in a journal, and then saves the journal as a pdf. The problem is, my script is 5000 lines long and runs slower than molasses in a freezer. So I thought it would make more sense to define a function for each type of chart that I build and stitch them together that way. I successfully cr...

    lemonses lemonses
    Discussions |
    May 31, 2024 10:39 AM
    1857 views | 2 replies
  • Iteratively create columns containing formulae.

    I would like to iterate through the columns that have spec limits and perform analyses against those. 
 New Column("WM Minus Target", Numeric, "Continuous", Format("Best", 10), Formula(:WN - (:WN << get property("Spec Limits"))["Target"]), Set Selected);The script located here is close to what I want. Solved: When a spec is on, how do I write a script when I want to write a fail name? - JMP User C...

    SpannerHead SpannerHead
    Discussions |
    May 31, 2024 3:58 AM
    2806 views | 7 replies
  • JMP18: python: conversion from pandas to dataTable skips columns with missing values

    import jmp, numpy as np, pandas as pd import jmputils def p2j(df): dt2 = jmp.DataTable('dt2', df.shape[0]) # get the column names from the data frame names = list(df.columns) # loop across the columns of the data frame for j in range( df.shape[1]): # check if the coulumn data type is string or numeric if is_string_dtype(df[names[j] ]): dt2.new_column(names[j], jmp.DataType.Character) ...

    minion minion
    Discussions |
    May 30, 2024 6:18 PM
    2955 views | 3 replies

Latest Discussions

  • JMP 17

    Hello,I recently upgraded to JMP 17, and I'm encountering a strange issue. When I open the data table window on the full screen, the script JSL window also opens on the full screen. Additionally, when I minimize the script JSL window, the data table window is also minimized. How can I fix this and keep the windows at different sizes?

    Dennisbur Dennisbur
    Discussions |
    May 30, 2024 8:59 AM
    1645 views | 3 replies
  • Extract Max number from a column and feed it to a for loop in the same jsl script

    My JSL script has 3 parts. In the first part, I am creating a numeric column (Column A) with 100 rows filled with random integers between 50-1000.In the 2nd part, I am extracting the max number in Column A and storing it to a variable i.In the 3rd part, I am using i to create a for loop that creates i number of new columns in the same table. How can I do this? It seems I can store the data in i bu...

    AsymptoticCos AsymptoticCos
    Discussions |
    May 29, 2024 12:23 PM
    3022 views | 8 replies
  • How do I make scattorplot Matrix with multiple cloumns I select?

    Hi. I'm Jeon.I'm beginner of JMP. I want to have a script for making scattorplot Matrix with Items I select.Could you give me a help with it? I splited one data table to two data table. one has value of test items(*Data type : Numeric & Continuous) , another one has upper limit & lower limit.(*Charactor & Norminal) Column names(=test item names) are the same in 2 different data table. Two sample d...

    NagneTE1 NagneTE1
    Discussions |
    May 27, 2024 5:18 PM
    789 views | 0 replies
  • SVEM: ¿Neural network or Lasso?

    I am conducting a prediction model study with DoE mixtures (3 components) and a process factor and a response variable (quantitative). I am going to apply SVEM, but I have a question, what does it depend on when using Neural Networks or Lasso? Thank you for your answers.

    CrhistianDoE CrhistianDoE
    Discussions |
    May 25, 2024 2:27 AM
    1622 views | 1 replies
  • JSL Script using Python not working anymore in JMP 18

     We are in the process of porting our toolchain into JMP 18. Since many of the JMP python calls have been deprecated/changed in JMP 18 and we are using elements of python, I'm trying to troubleshoot some scripts of ours that are working fine in JMP 17 but are throwing errors when I run them on JMP18.The problem solving in the forum here is a bit difficult since I cannot share the exact content of ...

    Feli Feli
    Discussions |
    May 23, 2024 6:53 AM
    1557 views | 2 replies

Latest Discussions

  • How do I make scattorplot Matrix with multiple cloumns I select?

    Hi. I'm Jeon.I'm beginner of JMP. I want to have a script for making scattorplot Matrix with Items I select.Could you give me a help with it? I splited one data table to two data table. one has value of test items(*Data type : Numeric & Continuous) , another one has upper limit & lower limit.(*Charactor & Norminal) Column names(=test item names) are the same in 2 different data table. Two sample d...

    NagneTE1 NagneTE1
    Discussions |
    May 27, 2024 5:18 PM
    789 views | 0 replies
  • 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
view all discussions