cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Learning Resources

Latest Discussions

  • Difference between FOR and FOR EACH loops

    Can somebody explain why this:dt = Open( "$SAMPLE_DATA/Fitness.jmp" ); col = { :Runtime, :RunPulse, :RstPulse }; y expr = Expr( Y() ); For( c = 1, c <= N Items( col ), c++, Insert Into( y expr, col[c] ); ); Name Expr(y expr);produces expected outputY( :Runtime, :RunPulse, :RstPulse )but this:dt = Open( "$SAMPLE_DATA/Fitness.jmp" ); col = { :Runtime, :RunPulse, :RstPulse }; y expr = Expr( Y()...

    miguello miguello
    Discussions |
    May 10, 2022 3:28 PM
    1757 views | 3 replies
  • JMP 16.2: Multiple Fit Y By X CDF Plots Saved Into ppt?

    I have scripted a Data Filter to a Data Table then using the Fit Y By X portal I am generating a cdf plot. Next I save that cdf to a ppt using the following code, Show Properties( cdf1 );
    cdf1 << Save Presentation( "C:/Documents/CDF1.pptx" ); Next I repeat the process and generate cdf2 then save to a ppt, generate cdf3 then save to a ppt, etc..... Winding up with several individual ppts. Is there a...

    WoHNY WoHNY
    Discussions |
    May 10, 2022 2:25 PM
    1482 views | 5 replies
  • Import Excel Worksheet from Collab Site as Private Table Not Working

    I'm importing an excel worksheet from a Teams/Sharepoint/Collab site and the "Private" setting doesn't work.   dt = Open ("https://collab.company.com/:x:/r/sites/Folder/Shared%20Documents/General/Title%of%Excel.xlsm?download=1", Worksheets( "Sheet1" ), Use for all sheets( 1 ), Concatenate Worksheets( 0 ), Create Concatenation Column( 0 ), Worksheet Settings( 1, Has Column Headers( ...

    svarga svarga
    Discussions |
    May 10, 2022 1:01 PM
    1087 views | 1 replies
  • Problem with On Close() statement in New Window

    I have a script that takes in a table, produces two summary tables dtMean and dtStdDev, and then draws some tabulates and opens then in a new window like so:vlb = V List Box( dtMean << Tabulate( ...), dtStdDev << Tabulate ( ...) ); closeTables = Expr( Close( dtMean, NoSave ); Close( dtStdDev, NoSave ); ); nw = New Window( "Tool to tool matching", Show Menu( 0 ), Show Toolbars( 0 ), On Clos...

    miguello miguello
    Discussions |
    May 10, 2022 12:01 PM
    600 views | 1 replies
  • JMP Addin Enable/Disable - JSL code to do this?

    Is there any JSL code/command that can toggle a JMP Addin to Enable/Disable? 
    (note: I do not mean Register/Unregister in this case)

    This enabling/disabling can be done manually in View > Add-ins with the Enable checkbox, but I need JSL code to control this in my application.  I also looked into loading the "addinRegistry.xml" as a text file and replacing the last string of "autoLoad="false"" with n...

    djhanson djhanson
    Discussions |
    May 10, 2022 8:37 AM
    1167 views | 2 replies

Latest Discussions

  • Problem with On Close() statement in New Window

    I have a script that takes in a table, produces two summary tables dtMean and dtStdDev, and then draws some tabulates and opens then in a new window like so:vlb = V List Box( dtMean << Tabulate( ...), dtStdDev << Tabulate ( ...) ); closeTables = Expr( Close( dtMean, NoSave ); Close( dtStdDev, NoSave ); ); nw = New Window( "Tool to tool matching", Show Menu( 0 ), Show Toolbars( 0 ), On Clos...

    miguello miguello
    Discussions |
    May 10, 2022 12:01 PM
    600 views | 1 replies
  • Problem with Full-Factorial Design (Mixed-Model) add in result

    Hello, I have a problem with this JMP add in  (Repeated Measures Full-Factorial Design Mixed-Model) result. In fact after running the model there is no estimation of the statistics given the data I have (see image below). It is very strange because I run the same model with similar data and I don't have this experience. Thank you in advance for the helpThe context is: two different groups in which...

    CristinaB CristinaB
    Discussions |
    May 9, 2022 7:30 AM
    582 views | 1 replies
  • Export multiple figures made by graph builder

    Dear JMP Pros,I have two questions regarding the graph builder and figure export: 1) I generated multiple Graph builder figures (saved as separated scripts) and want to batch export them into one PPT or as any other pixel or vector graphic.I read already through the manual and searched in the community forum but I couldnt find a way to do that in a fast manner, without clicking through all single ...

    SimonFuchs SimonFuchs
    Discussions |
    May 9, 2022 2:30 AM
    1465 views | 2 replies
  • enlarge the graph in the powerpoint

    Hello everyone, I have a problem that I can't solve. In my script, the size of the graph does not correspond to the size of the graph in Powerpoint, even if I change the values.
    If someone has the answer I would be delighted and thank you.   

    NetflixCrow956 NetflixCrow956
    Discussions |
    May 9, 2022 2:08 AM
    747 views | 1 replies
  • Bivariate plot spline un-selected faded

    Is there a way to make all un-selected splines faded? in a bivariate plot!The default is same as pre-selection.Thanks

    Tomer9w Tomer9w
    Discussions |
    May 8, 2022 5:00 AM
    1923 views | 5 replies

Latest Discussions

  • Validate column values (make sure all values in column follow a specific pattern)

    Is there a better way rather than iteration of all the rows to validate values in column? Let's say before making something with the column I want to make sure that all values in column match specific Regex. Like so:!IsMissing(Regex(Column(myColumn)[1], "^\w+(\d{3})\w+$", "\1"))I can iterate through each row to make sure that all of them match, but maybe there is a better way?  

    miguello miguello
    Discussions |
    May 6, 2022 11:09 AM
    484 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
    625 views | 0 replies
  • Friedman post hoc analysis

    Hello, I am trying to do a matched sample analysis across three different factors. I wanted to:1. Confirm that my sample would be what I pick for 'Block" when I do Fit Y by X when running Friedman's test2. Is there a post hoc analysis in JMP that I can use? I dont see Nemenyi or Conover as an optionThanks for your time.  

    pnakashe pnakashe
    Discussions |
    May 5, 2022 12:02 PM
    781 views | 0 replies
  • JMP script: Script Alarm Control chart- Table with atypical batch number and values

    Hello everyone,I am trying to make a table with the OOT (out of Trend) batches with their respective "atypical" values.I used for that the "script alarm" function as I could found some exemples on the JMP community. Here is my script:  z_KSigmaZ =1.4; // Création de la Carte de controle si N catégories > 5 Names Default To Here( 1 ); If(N Items(Associative Array(:"RNS/NS tordu (srg)")) > 5, Gr...

    Sebastienlg Sebastienlg
    Discussions |
    Apr 29, 2022 6:29 AM
    554 views | 0 replies
  • How to create a graph builder box plot with mean values, and including the "group X" variable in the legend

    I'm using JMP 16.2.0 and I'm trying to automatically generate a graph builder with box plots and their mean values with the group X variable as the color. I'm using a bar chart with style=floating to display the mean value (inspired by this topic)My current graph:This is almost what I want, except for a few things.1. I'd like the Group X variable (Recipe) to be visible in the legend as well. One w...

    mvanderaa1 mvanderaa1
    Discussions |
    Apr 20, 2022 4:13 AM
    1982 views | 0 replies
view all discussions