cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.

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

  • Fix error: Send Expects Scriptable Object in access or evaluation of 'List

    I am trying to write a JSL to get the summary of replicates on a concatenated data table. The code below throws an error, could you tell why and how to fix it? dt_summary=dt_concatenated_lst << Summary( Group( :Sample name ), Mean( :"A280 Concentration(mg/ml)"n ), Mean( :"AvgA280 Concentration (mg/ml)"n ), Mean( :"CVA280 Concentration (%)"n ), Freq( "None" ), Weight( "None" ), Link to origi...

    jlmbs jlmbs
    Discussions |
    Nov 1, 2022 4:24 AM
    1847 views | 1 replies
  • How do I get items from a list to output a value from another list ?

    Hi, New to JMP and have searched and read loads of help and going around in circles. I would think what I am doing is easy and straight forward but not getting that feeling from JSL. I have a more complicated data table but for the purpose of trying to get my code to work I have simplified my table. I have a table with 5 columns, 4 of each have "_Yield" in the heading. 13 rows consist of 1's and 0...

    Shadow Shadow
    Discussions |
    Nov 1, 2022 4:21 AM
    2622 views | 2 replies
  • How to assign a data table reference to table opened by jmpquery?

    Is there a way in JSL to assign a table created from a jmpquery execution?Instead of:dtBigClass = open("BigClass.jmp");I would like to assign "dtBigClass" to a jmpquery that I just executed. Many thanks, John

    JohnDMoore1 JohnDMoore1
    Discussions |
    Nov 1, 2022 12:16 AM
    1357 views | 2 replies
  • PER file location does not exist

    Every time I log into JMP I get a pop up that says "The PER file location does not exist, please enter an existing location." I've tried re-associating the license file without success. Any ideas?  

    aq aq
    Discussions |
    Oct 31, 2022 10:08 PM
    3038 views | 4 replies
  • Need help. Got some error during create interactive HTML file

    I'm writing script to make file HTML (interactive) by adding data filter feature into graphs but I got some error on the these following code during the calling function save Interactive HTML() Thanks for helping on this.The error message is below attached picture.  Here is my codeNames Default To Here( 1 ); dt = Open( "C:\myJSL\BigClass.csv"); app=New Window( "Shared Local Filter Batman", Data F...

    cpbatman cpbatman
    Discussions |
    Oct 31, 2022 8:27 PM
    5258 views | 6 replies

Latest Discussions

  • How to assign a data table reference to table opened by jmpquery?

    Is there a way in JSL to assign a table created from a jmpquery execution?Instead of:dtBigClass = open("BigClass.jmp");I would like to assign "dtBigClass" to a jmpquery that I just executed. Many thanks, John

    JohnDMoore1 JohnDMoore1
    Discussions |
    Nov 1, 2022 12:16 AM
    1357 views | 2 replies
  • PER file location does not exist

    Every time I log into JMP I get a pop up that says "The PER file location does not exist, please enter an existing location." I've tried re-associating the license file without success. Any ideas?  

    aq aq
    Discussions |
    Oct 31, 2022 10:08 PM
    3038 views | 4 replies
  • DOE: how is Sum of Squares of each effects calculated?

    Hi, How is sum of squares (SS) of each effects calculated in DOE parameter estimate table?any simple 2-3 factors DOE example to share? Thanks

    dadawasozo dadawasozo
    Discussions |
    Oct 31, 2022 3:56 PM
    15773 views | 19 replies
  • How to specify replications in 2-way anova?

    I come from Google Sheets, using the XLMiner Analysis Toolpak add-on. The results I get from using its 2-way anova WITH replication is different from the results I get from JMP. In JMP, I click "Fit Model", entering the response variable, and selecting both factors before clicking the "full factorial" macro. In XLMiner, I simply enter the data range as input and specify 30 replications. I have 2 i...

    DevonFazekas DevonFazekas
    Discussions |
    Oct 31, 2022 8:56 AM
    2732 views | 4 replies
  • Got extra columns after open CSV file in JMP

    Hi all,

    Problem statement:
    JMP table displays extra columns compared with the number of column of input file.Detail:I have some input files (.csv) which has only one column. However, when I load these files into JMP, JMP table displays 2 more columns. Lets take a look to image below  I believe that all csv files that I got are originally .XML files. 
    Is there any possibility that I can load .csv file...

    PhamBao PhamBao
    Discussions |
    Oct 30, 2022 4:52 PM
    1288 views | 3 replies

Latest Discussions

  • How to run JSL script in user opened JMP session instead creating a new seesion by JMP.dll?

    Currently I developed a windows application based on Interop.JMP.dll. The application contains a functionality to generate JSL file and run it in JMP but I got a issue now. It seems can only create a new session and run it by application instead of using the session that user opened first. I'd like to confirm whether it's possible to run JSL in the session by user opened manually. Appreciate it if...

    SquaresDingo505 SquaresDingo505
    Discussions |
    Oct 24, 2022 7:23 PM
    722 views | 0 replies
  • How to Analyze and Graph Responses with Supercategories

    I use JMP Pro 16. I am doing MCA on 90 columns that have supercategories.  I want to do the analysis and viz on the supercategory classification. Is there a way to do this without having to create separate columns that only have the supercategory classification?  PS:  I don't know how to do JSL scripting.

    TCM TCM
    Discussions |
    Oct 21, 2022 5:59 AM
    762 views | 0 replies
  • 標準化列名稱如何用變數取代求解

    //新增周標準化
    weekEMC_HF_C_12_0 = Data Table( "周_EMC_HF_C_12um" ) << Get Column Names( string );
    weekEMC_HF_C_12 = {};
    //少一周={:"2022W38"n,:"2022W40"n,:"2022W41"n};
    For( j = N Items( weekEMC_HF_C_12_0 ), j >= (N Items( weekEMC_HF_C_12_0 ) - 5), j--,
    Insert Into( weekEMC_HF_C_12, weekEMC_HF_C_12_0[j] )
    );
    Try(
    Local( {old dt = Current Data Table()},
    Current Data Table( Data Table( "周_EMC_HF_C_12um" ) );
    For Each( ...

    Ken697 Ken697
    Discussions |
    Oct 20, 2022 9:22 PM
    679 views | 0 replies
  • Methods for compressing a CSV or TSV file with jmp compression to save as .jmp table without having to open the csv in JSL first?

    I have access to both JMP12 and JMP14, so a solution for either would work. What I am trying to achieve is saving very large text files (csv,tab,tsv,etc.) with JMP compression such that I get a compressed .jmp file as the result. By large I mean 2-6gb files. Currently I use something like this: MyDataFile = open(filename,Private); MyDataFile << Compress File When Saved; MyDataFile << save(filetosa...

    CurbStegosaurus CurbStegosaurus
    Discussions |
    Oct 14, 2022 9:06 AM
    1824 views | 0 replies
  • 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
    578 views | 0 replies
view all discussions