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 to add a button to open a script in another folder.

    Hi all, how can i make it such that whenever i click a button i placed in a journal it will run the script that is located in another folder.Using a test script below i am able to successfully open script in another folder. This is on JMP16. Names Default To Here( 1 ); Clear Log(); Dir = Get Default Directory(); file_name = "JMP script/Load_PD.jsl"; file_path = Char(Dir || file_name); Open(fil...

    Dyan Dyan
    Discussions |
    Jun 6, 2023 1:48 PM
    2393 views | 3 replies
  • Can I group or filter items in Local Data Filter based on another Local data Filter coupled by AND?

    I am plotting on y-axis, the median values (in Median column) of tested parameters (in ParametersName column) to plot against part ID (in PartID column) on x-axis (in ascending order of test time as in my TestTime column).There are several test stages for a given part and the tested parameter names are unique to each test stages.  I want to use the Local Data Filter option to first select a test s...

    Neo Neo
    Discussions |
    Jun 6, 2023 6:26 AM
    1480 views | 1 replies
  • Transpose non specific data columns

    Hi all,I am creating a script in jsl but I am having a problem in transposing the table since the columns needed needs to be specified. However, in my case, the columns depend on the data, so it is changing.  How can I create a jsl script where I can transpose non specific data columns?

    UserID16644 UserID16644
    Discussions |
    Jun 5, 2023 9:14 PM
    1267 views | 2 replies
  • Workarounds for the dreaded Row State Handler

    Drag a selection box on the graph, then gather your selected rows up into JSON and fire them off to a localhost server tow ork in html/javascript land I use the scheduler to pile in the useless spam of unwanted events constantly clearing the queue to prevent the slew of spam events from firing. I've tried using mousebox stuff before, including totally rewriting the selection mechanic, but it was l...

    xxvvcczz xxvvcczz
    Discussions |
    Jun 5, 2023 1:22 PM
    1464 views | 2 replies
  • How to concatenate data tables pulled from database within a loop?

    The following JSL script snippet pulls test data from database for tested part IDs given in myList using my function opnDtb. This works as expected and the data tables are pulled individually. I would like each new data table pulled to be concatenated (vertically below) to the previous data table. How to implement this in JSL?For( i = 1, i <= N Items (myList), i++, dt = opnDtb(myList [i]); );Note...

    Neo Neo
    Discussions |
    Jun 5, 2023 8:33 AM
    2016 views | 1 replies

Latest Discussions

  • Transpose non specific data columns

    Hi all,I am creating a script in jsl but I am having a problem in transposing the table since the columns needed needs to be specified. However, in my case, the columns depend on the data, so it is changing.  How can I create a jsl script where I can transpose non specific data columns?

    UserID16644 UserID16644
    Discussions |
    Jun 5, 2023 9:14 PM
    1267 views | 2 replies
  • Workarounds for the dreaded Row State Handler

    Drag a selection box on the graph, then gather your selected rows up into JSON and fire them off to a localhost server tow ork in html/javascript land I use the scheduler to pile in the useless spam of unwanted events constantly clearing the queue to prevent the slew of spam events from firing. I've tried using mousebox stuff before, including totally rewriting the selection mechanic, but it was l...

    xxvvcczz xxvvcczz
    Discussions |
    Jun 5, 2023 1:22 PM
    1464 views | 2 replies
  • How can you rotate annotation text

    Hi all, I am trying to rotate annotation text "TEST" using the following and it does not work: Add Text Annotation(
    Text( "TEST" ), {Rotate Text( "Vertical" )} ,
    Fixed Size( 0 ),
    Text Box( {343, 170, 385, 194} ),
    Filled( 0 )
    )  

    ChesterKnurek ChesterKnurek
    Discussions |
    Jun 2, 2023 11:12 AM
    1216 views | 1 replies
  • How to create a window like the 'show text' of text explorer?

    I have a column with long texts that I'd like to display to the user in a "notes" like window. Users can copy text from that window. Same as the window text explorer shows when pressing "show text".Thanks

    RonB RonB
    Discussions |
    Jun 1, 2023 7:22 AM
    2349 views | 5 replies
  • Value at x-axis where reference line intersects graph

    Hi,For a set of graphs, I draw a reference line on the y-axis. I want to compute what the x-axis values are at points where the reference line intersects the various curves/graphs. I have attached an image of the graph. Is there any way that I can compute these x-axis values using a script or any other way? Please help. Thanks  

    aviquid aviquid
    Discussions |
    Jun 1, 2023 2:09 AM
    1429 views | 1 replies

Latest Discussions

  • Criblage des processus

    Bonjour à tous,Est-il possible de mettre dans le criblage des processus le format/la colonne de notre choix dans le module « dernière alarme ». Pour ma part j’aimerais pouvoir y mettre une colonne Date pour pouvoir contrôler à quels jour interviennent mes dernières alarmes.Merci pour votre aide.

    hcarr01 hcarr01
    Discussions |
    Apr 3, 2023 2:41 AM
    831 views | 0 replies
  • JMP17 JSL 读取多张表时值为空怎么解决?

    JMP17版本用之前15版正常的读取程序,结果为空值。比如第一个表中一行是1,2,3这种值的,第二张表这一系列,是这列,ML1,R1拼接在一起,L1,R1,M1就自动改变亏值。求问大佬怎么解决?dir = Pick Directory( "Select a directory" ); //得到所有文件名,注意要确保所有表格字段名一致,且表格样式一样,否则会得到非预期结果。 files = Files In Directory( dir, Recursive ); If( Contains( files, ".DS_Store" ), files = Remove( files, Contains( files, ".DS_Store" ) ) ); For( i = 1, i <= N Items( files ), i++, fullfile = dir || files[i];...

    lehaofeng lehaofeng
    Discussions |
    Mar 16, 2023 5:58 AM
    840 views | 0 replies
  • What kind of interpolation is used when Scale() is applied to an image object?

    Working on a script that processes images and comparing results to a python script that applies similar operations.  When I have a script that goes:<image = new image("$SAMPLE_IMAGES/tile.jpg");image << Scale(0.49);> What kind of interpolation is used when changing the image size? Thank you On JMP 16

    RoamingForests RoamingForests
    Discussions |
    Mar 6, 2023 7:17 AM
    701 views | 0 replies
  • JMP Script Window - Hovering over a variable do not show the value stored in the variable if passed between scripts

    I have found that hovering over a variable is very useful feature in JMP Script Window/Editor when debugging the script. I have been working with very long script which I have divided to smaller pieces by using Include-feature. I am able to pass variable content correctly between the included scripts but it looks like hovering do not work on included script windows (showing empty variable content ...

    JanneI JanneI
    Discussions |
    Jan 27, 2023 5:51 AM
    904 views | 0 replies
  • C Stack Usage Error When Sending Code to R

    Hello, I'm trying to invoke some commands in R using the R Submit function in JSL and am getting the error below. Is this an issue with JMP17 and R integration? It only happens when I invoke a specific package using JSL so it's hard for others to replicate w/o installing R and the package as well. I'm using JMP 17.0 and R 4.2.0. Never saw this error with JMP 16. "Error: C stack usage 4123778 is to...

    vigslayer vigslayer
    Discussions |
    Dec 15, 2022 8:14 PM
    1099 views | 0 replies
view all discussions