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

  • How to create an CDF plot in Graph Builder

    What would be the best way to create a CDF plot in Graph Builder, comparable to Fit Y by X (CDF / CumProb), but with the functionality of Graph Builder like Overlay, Group, Color etc.?

    Thomas1 Thomas1
    Discussions |
    Sep 3, 2024 10:26 PM
    19402 views | 12 replies
  • How can use python to manipulate selenium in JMP 18?

    I want to automatically capture the content of the web page and get the real URL.For example thehttps://xvfr.com/60s.html its essence is only a picture real website https://g.gtimg.cn/music/photo_new/T053XD001001eyb6g4JwXRW.png  There is no content for this image address in the page source code.But it's a different address every day I have installed the following libraries in JMP pythonjmputils.jp...

    lala lala
    Discussions |
    Sep 3, 2024 7:35 PM
    1205 views | 4 replies
  • Graph Builder y=x Line Not Tied to Specific Graph

    I am trying to work in Graph Builder to create a line with JSL of perfect correlation (y=x) for the scatterplot. See below using Restaurant Tips sample data as an example.  When I do this manually, here is the script that JMP generates: Graph Builder( Graph Spacing( 10 ), Spacing Borders( 1 ), Variables( X( :Bill Amount ), Y( :Tip Amount ) ), Elements( Points( X, Y, Legend( 3 ) ) ), SendToRep...

    scott1588 scott1588
    Discussions |
    Sep 3, 2024 1:30 PM
    2317 views | 6 replies
  • How to add 45° (y=x) line to graph?

    Does anyone have a smarter way to add a 45° (y=x) line to an x-y plot? I currently do the following:Set x-axis and y-axis pixels to the same value in the Frame Size dialogUse the drawing tool to manually add a line to the plotThe line is never quite perfect and has to be adjusted when plot is changed.JMP Developers: this would be a great option to add to: Y-axis specification, Reference Lines. It ...

    markschahl markschahl
    Discussions |
    Sep 3, 2024 1:28 PM
    30057 views | 6 replies
  • Graph Builder: Add 1:1 Line

    Does anyone know how to add a 1:1 line to Graph Builder?  In the platform Fit Y by X there was a way to both fit the displayed data and show a 1:1 line.  I can't find how to do that in GB.  Thanks.

    terapin terapin
    Discussions |
    Sep 3, 2024 1:24 PM
    26145 views | 11 replies

Latest Discussions

  • How to create an CDF plot in Graph Builder

    What would be the best way to create a CDF plot in Graph Builder, comparable to Fit Y by X (CDF / CumProb), but with the functionality of Graph Builder like Overlay, Group, Color etc.?

    Thomas1 Thomas1
    Discussions |
    Sep 3, 2024 10:26 PM
    19402 views | 12 replies
  • How can use python to manipulate selenium in JMP 18?

    I want to automatically capture the content of the web page and get the real URL.For example thehttps://xvfr.com/60s.html its essence is only a picture real website https://g.gtimg.cn/music/photo_new/T053XD001001eyb6g4JwXRW.png  There is no content for this image address in the page source code.But it's a different address every day I have installed the following libraries in JMP pythonjmputils.jp...

    lala lala
    Discussions |
    Sep 3, 2024 7:35 PM
    1205 views | 4 replies
  • [JSL] Select rows using "Complex" conditions

    Hello All, I would like to write a JSL script to select the rows in a table with “complex” conditions:I need to select ONE ROW per Metric (Column :Metric) with conditions IN ORDER OF PRIORITY: 1- if the condition Flag1 = “FLAG” AND Flag2 = “FLAG” exists, Select Col Max (:Metric1) of this condition2- if the condition Flag1 = “FLAG” XOR Flag2 = “FLAG” exists, Select Col Max (:Metric1) of this condit...

    Voizingu Voizingu
    Discussions |
    Sep 2, 2024 10:12 PM
    1583 views | 6 replies
  • Graph builder: issue with multiple response

    Since Jmp 17, Graph Builder can interprete columns with modeling type Multiple Response in a way that the entries are split and the values show up one by one. Amazingly useful!!

    But there seems to be an issue if the column is used in different drop zones.
    If the user wants to find out which of the students play multiple sports , the result looks boring:
    there is just a diagonal line

    Seems that Jmp sp...

    hogi hogi
    Discussions |
    Sep 2, 2024 1:36 PM
    2064 views | 6 replies
  • P value

    Bonjour, je suis noovice sur JMP et j'aimerais comprendre  Pourquoi JMP ne donne pas de p-value pour certaines distributions comme une loi normale d'ordre 2 ou 3?

    Merci 

    kowa kowa
    Discussions |
    Sep 2, 2024 9:13 AM
    1194 views | 3 replies

Latest Discussions

  • Flame graphs

    Out of curiosity, has anyone ever managed to create something like a flame graph ( https://www.brendangregg.com/flamegraphs.html ) using Graph Builder? It looks like it would be ideal for analyzing hierarchical data, e.g. using the output of a linux "find . -ls" command to visualize disk usage.

    BHarris BHarris
    Discussions |
    Aug 30, 2024 2:07 PM
    550 views | 0 replies
  • AlT two factors with example fail

    Could you provided me some example, file,with example of ALT, two faftors, for example temerature and humidity. Please

    Juancho97 Juancho97
    Discussions |
    Aug 25, 2024 12:16 PM
    494 views | 0 replies
  • Machine data source list remove in "Database Operations"

    I used "File"-->Database-->Open table-->New connection to setup some tables from DB. but I found my list for new connections becomes longer and longer. like the attached pic. I did not found there is a way that i can remove any items from the connection list. the question is that is there a way that i can delete them. Thanks in advanced. KRSean

    Sean_ShCn0 Sean_ShCn0
    Discussions |
    Aug 22, 2024 7:24 AM
    741 views | 0 replies
  • Write Data from Data Table to Database

    Hello JMP-Community,I am searching your help here because I didn't found a sufficent solution for myself in other posts. It is about writing content of a data table into a table of a database.For that I wrote this little function: myInsertInto = function({dt, dbConnection, destinationName}, cols = dt << GetColumnNames(String); rows = dt << Select All Rows << GetSelectedRows; show(cols, rows); ...

    DBo_94 DBo_94
    Discussions |
    Aug 22, 2024 6:38 AM
    545 views | 0 replies
  • Is there a way to tell LCA that the rows are ordered by class?

    Typical dataset: 120-200 rows, 15 classes. Rows are known to be ordered by class. What is unknown is where the 'fences' between classes are. As-is -- i.e., without taking row order into account -- LCA correctly classifies about 94% of rows. My intuition is that if I knew how to tell the algorithm that the rows are grouped by class on input, we'd be at 100%. Visual, in case my use of 'grouped by' i...

    mtowle419 mtowle419
    Discussions |
    Aug 15, 2024 5:03 PM
    546 views | 0 replies
view all discussions