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

  • Number edit box not updating column

    I am trying to update a column with a formula given a text edit box input. I have attempted other solutions found on the discussions page but with no luck In the beginning of my code I define the area as 1 as a default. This is also the default value inside of the number edit box: area = 1; I have a column that uses the area variable: dt << New Column( "Current Density", Numeric, "Continuous", ...

    trevorphysics trevorphysics
    Discussions |
    Nov 1, 2022 1:46 PM
    1293 views | 2 replies
  • How to hover over a point and see the image associated with that row

    Hi.  I have a column in a table with URL links to images.  I would like to hover over a point and see the image associated with that row.  And also click the point and go to the URL. Any help would be much appreciated.

    SampleTapir814 SampleTapir814
    Discussions |
    Nov 1, 2022 12:24 PM
    2017 views | 2 replies
  • Select Rows Based on Another Summary Data Table Each Row of Multiple Column Values

    Hi,I am facing issue to write a code to select rows based on another summary data table each row of multiple column values. The summary data table is variable, change from time to time.Below is JSL code. It does not work as required. I need help here. Example,In summary data table,row#1, Make = Acura, Model =Integra, Protection = manual belts, base on these values select rows in Data Table A.row#2...

    Lino Lino
    Discussions |
    Nov 1, 2022 8:52 AM
    2904 views | 5 replies
  • How to add label to red reference line?

    Hi,How can I add label to the reference lines? Here's my code:Any advice?Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); sliderValue = 1; dothisonchange = Function( {val}, tb << Set Text( "Cpk : " || Substr( Char( val ), 1, 4 ) ) ); Mean = 60; std = 0.5; New Window( "", H List Box( V List Box( tb = Text Box( "Value: " || Char( sliderValue ) ), sb = Slider Box(...

    Jackie_ Jackie_
    Discussions |
    Nov 1, 2022 7:14 AM
    5611 views | 10 replies
  • Questions about "Multi HTTP Request" of JMP17?

    Hello!JMP17 added "Multi HTTP Request"
    Sample code: Do the three download tasks download at the same time, or do the next tasks download when one is complete?
    Will the overall download time be reduced by using this feature?urls = {"http://cdimage.ubuntu.com/lubuntu/releases/20.04.3/release/lubuntu-20.04.3-desktop-amd64.iso", "http://downloads.sourceforge.net/clonezilla/clonezilla-live-2.7.3-19-amd64...

    lala lala
    Discussions |
    Nov 1, 2022 6:52 AM
    2511 views | 5 replies

Latest Discussions

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
    720 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
    761 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
    677 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
    576 views | 0 replies
view all discussions