cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.

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

  • How to access one of the multiple data tables opened at the same time?

    Hi folks, I opened a couple data table by the following jsl, dt = Multiple File Import(); After that, I tried to access one of the data table to process the data, what is the jsl script or command to access the the data table. For example, if I need to access the 2nd data table row #2 and column #1, i used the command below: dt[2][2,1] but it did not work, please advise it, thanks.   

    TDK_Long TDK_Long
    Discussions |
    Nov 30, 2023 3:30 PM
    1188 views | 2 replies
  • How to use Range Check () with Set Property()?

    In JSL, the following works  (in JMP 16.2)Column( dt, myCol ) << set property("Spec Limits", {LSL( myLSL), USL(myUSL)});However, I am trying to also use Range Check within set property following the scripting guide (for JMP 16)Column( dt, myCol ) << set property("Spec Limits", {LSL( myLSL), USL( myUSL )}, "Range Check", LTLT (myLSL2, myUSL2) ));where myLSL/myUSL & myLSL2/myUSL2 are supplied from a...

    Neo Neo
    Discussions |
    Nov 30, 2023 12:37 PM
    1342 views | 2 replies
  • How do I get JMP to close pdf files that have been opened to extract information?

    Since I am new to scripting, I just copied a script from a previous discussion (https://community.jmp.com/t5/Discussions/Batch-processing-files-to-extract-data-into-a-summary-table/m-p/529021) and slimmed it to the stuff I need - only the pdf file names.Names Default to Here( 1 ); //point to file directory path = Pick Directory( "Select Directory Containing Data Files" ); //Gets the list of file...

    CalibrationBear CalibrationBear
    Discussions |
    Nov 30, 2023 11:11 AM
    1264 views | 2 replies
  • Impossible to select variables in the analysis windows

    When trying to perform any analysis, the window opens and it is impossible to select variables and add them in the proper box. Only one clic is allowed in the variables list box. It may have started after working on a dataset used with JMP for Mac while I'm on Windows. JMP16.0

    EmmaMAC EmmaMAC
    Discussions |
    Nov 30, 2023 8:24 AM
    2154 views | 3 replies
  • Custom design or mixture design? which one to choose?

    Is there any difference between a mixture design and custom design with same factors treated as mixtures? Which would be better? 

    Mathej01 Mathej01
    Discussions |
    Nov 30, 2023 4:39 AM
    2550 views | 4 replies

Latest Discussions

  • How do I get JMP to close pdf files that have been opened to extract information?

    Since I am new to scripting, I just copied a script from a previous discussion (https://community.jmp.com/t5/Discussions/Batch-processing-files-to-extract-data-into-a-summary-table/m-p/529021) and slimmed it to the stuff I need - only the pdf file names.Names Default to Here( 1 ); //point to file directory path = Pick Directory( "Select Directory Containing Data Files" ); //Gets the list of file...

    CalibrationBear CalibrationBear
    Discussions |
    Nov 30, 2023 11:11 AM
    1264 views | 2 replies
  • Impossible to select variables in the analysis windows

    When trying to perform any analysis, the window opens and it is impossible to select variables and add them in the proper box. Only one clic is allowed in the variables list box. It may have started after working on a dataset used with JMP for Mac while I'm on Windows. JMP16.0

    EmmaMAC EmmaMAC
    Discussions |
    Nov 30, 2023 8:24 AM
    2154 views | 3 replies
  • Work Flow error when save pdf

    I try to play around with JMP v17 new feature workflow to output my chart into pdf. But it give me error when execute of save pdf. Is it because it unable to replaced the pdf?  

    OneNorthJMP OneNorthJMP
    Discussions |
    Nov 29, 2023 10:20 PM
    1571 views | 2 replies
  • Missing Nominal Data

    Hi. I am doing a class project where I need to predict price based on a number of predictor variables for a housing dataset. I have cleaned up all my numerical rows, getting rid of outliers, now my question involves two columns: parking_options and laundry_options. Within these two columns there are about 218,000 missing values for rows. My question is what to do with the missing nominal data. It ...

    jmessina944 jmessina944
    Discussions |
    Nov 29, 2023 7:20 AM
    2888 views | 6 replies
  • Rename subgroup column names from summary table

    Hi all,  I need help with my script. I have a script that creates a summary table from raw data table as below; Data Table( "DVIRCR_SumTable" ) << Summary( Group( :prodgroup3, :subapp ), Max( :rcr% ), Subgroup( :date_ ), Freq( "None" ), Weight( "None" ), statistics column name format( "column" ), Link to original data table( 0 ) ); //rename N Rows column to Lot Count :Name( "N Rows" ) << ...

    Leyahans Leyahans
    Discussions |
    Nov 29, 2023 4:38 AM
    976 views | 1 replies

Latest Discussions

  • Dendrograms in JMP: show scale, show categories without the categories dendrogram and setup UPGMA+dice as statistics.

    HiDoes anybody know how to get the scale of the dendrograms? Scale can be setup in different ways, but it is not shown by default in the output.Does anybody know how to get the categories labels shown without performing the categories dendrogram?Does anybody know how to perform Dice+UPGMA dendrograms? Those are basics statistics, and I can’t find them.Thank you very much if someone helps JMP 17.2....

    JRTormo JRTormo
    Discussions |
    Nov 29, 2023 2:41 AM
    1132 views | 0 replies
  • Keyboard shortcuts

    [More Topic Containers like this] Jmp Help/Keyboard Shortcuts   assign new Keyboard ShortcutsAssigning-keyboard-shortcuts-for-frequently-used-options comment/uncomment blocks of code (international keyboard)A shortcut can be set in the menu customization Editoradd  keyboard shortcuts for your own functionsadd them to the main menu/ to a toolbar and assign a shortcutadd keyboard shortcuts for "open...

    hogi hogi
    Discussions |
    Nov 26, 2023 1:38 AM
    998 views | 0 replies
  • When the neural network of JMP is operated in Python, the value is different.

    When the neural network created by JMP was saved and run in python code, it output values different from the score output by JMP.

    OS:windows 10Python Version : 3.9

    File list jmp_score.py
    CNN_NTanH_boost.py <- JMP Python 
    mypython_code.py


    import CNN_NTanH_boost
    import numpy as np
    import pandas as pdfilepath = r"filepath" ext = 'csv' if filepath.endswith(ext): df=pd.read_csv(filepath) else : df=pd....

    TShiino TShiino
    Discussions |
    Nov 21, 2023 8:48 PM
    833 views | 0 replies
  • Could JMP optimize factors with uncertainty?

    Hello community!!,A question: will it be possible for the profiler to find the best combinations of factors with uncertainty when performing a simulation, which maximize the total utility and minimize the total cost, generating a table of the best combinations found? For example: 

    Marco1 Marco1
    Discussions |
    Nov 21, 2023 9:08 AM
    788 views | 0 replies
  • Choice platform, analysis of discrete choice: random parameters logit analysis?

    Hi there,I have a question concerning the choice platform. I have conducted a discrete choice experiment and analysed it using JMP. I have the choice profiles dataset, and the choices run (or responses) on another. I have done my analysis, and it bears interesting results.A colleague suggested performing a random parameters logit analysis. Is it possible to do it in JMP? How does it differ from th...

    gav2013 gav2013
    Discussions |
    Nov 17, 2023 8:07 AM
    751 views | 0 replies
view all discussions