cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Easily detect, manage, and convert column units in JMP by downloading Unit Conversion in the JMP Marketplace!
  • Need to analyze data that resides in a database? Register for the April 10 Master JMP webinar to learn how.
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Set column width with JSL?

    Is there a way to set the display width of a column using JSL?  When I create a table, by default the columns are too wide.  I've tried playing around with set column width but it doesn't work.I know that the column width is stored somewhere, because if I set the column widths manually, save the dataset, and then open it again, voila the widths are preserved.  I just don't know how to do it in JSL...

    pmroz pmroz
    Discussions |
    Jul 10, 2019 2:20 PM
    20595 views | 7 replies
  • Set Current Directory

    Hi.  I have written some sentences to set the current directory where to find the files of interest but it dones not work. Any help? Thanks     Set Current Directory( "/Users/manel/Desktop/Municipales_Spain" ); my_file = Pick File( {"All files|*"} ); dt = Open( my_file ); dt << Select Where( Código de Provincia == 44 ); SubDt = dt << Subset( output table name( "Matarranya1" ) ); Close( "Mata...

    gallardet gallardet
    Discussions |
    Jul 10, 2019 1:10 PM
    9330 views | 5 replies
  • How to group multiple data transformations into one script

    Hello, I'm kind of new to scripting, and I was wondering if anyone can help me with finding resources to learn about how to put this process into one script. Here is an outline of the work that I have done. 1.  Use tabulate to create summaries from an original table2.  Save tabulate as data table (the result is 3 separate tables)3.  For each of the 3 tables     a.  Add a new column with a formula ...

    JeffSwartzel JeffSwartzel
    Discussions |
    Jul 10, 2019 12:36 PM
    3109 views | 2 replies
  • Add a new window for Start & End Calendar date selection box/ date entry box

    Hi JMP community, I usually use jmp preselected and plot graphs need a help to add selection date amend for my script below.   As per below, once I call out database, I have to amend the dates for start & end in order to query needed data on input dates.   dt = Open Database( "DSN=xxx ;Description=yyy;UID=zzz;PWD=zzz;APP=JMP;DATABASE=MATS;", "SELECT pen_parametric.pn_id, pen_parametric.equiplk_k...

    OtisZeca OtisZeca
    Discussions |
    Jul 10, 2019 12:02 PM
    6286 views | 4 replies
  • Nominal variable in ANOVA report

    I have 28 music clips. 14 of them are composed in major mode and rest 14 in minor mode. I am looking at emotional response for the music and preference for the music against the mode of the music.  I have two questions: 1) Should Mode (Major and Minor) be put as nominal variable or ordinal variable? 2) When I put Mode as a nominal variable with value labels - Major = 0, Minor = 0, and then fit the...

    2605 2605
    Discussions |
    Jul 10, 2019 6:48 AM
    8632 views | 4 replies

Latest Discussions

  • How to group multiple data transformations into one script

    Hello, I'm kind of new to scripting, and I was wondering if anyone can help me with finding resources to learn about how to put this process into one script. Here is an outline of the work that I have done. 1.  Use tabulate to create summaries from an original table2.  Save tabulate as data table (the result is 3 separate tables)3.  For each of the 3 tables     a.  Add a new column with a formula ...

    JeffSwartzel JeffSwartzel
    Discussions |
    Jul 10, 2019 12:36 PM
    3109 views | 2 replies
  • Clickonce Application

    Does anyone have the syntax needed to run a clickonce application. I've triedRunProgram(executable("clickonce application")); Which I figured wouldn't work. Are there any other options?

    kyle_lamson kyle_lamson
    Discussions |
    Jul 9, 2019 6:26 PM
    8441 views | 4 replies
  • Statistical Significance

    Hi, I have the following information only: I have Failure Rates (FR) from two sets of data. The experiment set has 4 fails out of 2500 (FR:0.16%) samples and the control set has 34 fails out of 35000 samples (FR:0.097%). Due to such a big difference in the sample size, is there a way JMP can help to determine if these two FRs are statistocally similar or different? Thanks.Ravi

    RaviK RaviK
    Discussions |
    Jul 9, 2019 2:10 PM
    8465 views | 6 replies
  • Capability Animation - How to see the LSL/USL Value?

    I just discovered this nifty tool called the Capability Animation, where you can play around, dragging the spec limits and mean shifts, and it simulates your capability indices. But, I cannot see the actual LSL/USL values as I drag them! Does anyone know how to make this happen?

    Antonio80 Antonio80
    Discussions |
    Jul 9, 2019 1:31 AM
    1582 views | 0 replies
  • Unable to allocate enough memory in access or evaluation

    Hi,I'm trying to use the Multivariate platform to perform a correlation between 6 time points (rows) across 73500 columns. My final goal is to output a  73500x73500 correlation matrix. When I try to run it, I immediately receive this pop out message:Unable to allocate enough memory in access or evaluation of 'List' , {/*###*/Estimation Method( 0 ), Matrix Format( 2 )} What's the issue? I'm using J...

    ns ns
    Discussions |
    Jul 8, 2019 9:04 AM
    1620 views | 0 replies

Latest Discussions

  • Capability Animation - How to see the LSL/USL Value?

    I just discovered this nifty tool called the Capability Animation, where you can play around, dragging the spec limits and mean shifts, and it simulates your capability indices. But, I cannot see the actual LSL/USL values as I drag them! Does anyone know how to make this happen?

    Antonio80 Antonio80
    Discussions |
    Jul 9, 2019 1:31 AM
    1582 views | 0 replies
  • Unable to allocate enough memory in access or evaluation

    Hi,I'm trying to use the Multivariate platform to perform a correlation between 6 time points (rows) across 73500 columns. My final goal is to output a  73500x73500 correlation matrix. When I try to run it, I immediately receive this pop out message:Unable to allocate enough memory in access or evaluation of 'List' , {/*###*/Estimation Method( 0 ), Matrix Format( 2 )} What's the issue? I'm using J...

    ns ns
    Discussions |
    Jul 8, 2019 9:04 AM
    1620 views | 0 replies
  • How to Post JSON data to a site via API functionality: "Unsupported Media Type"

    Hi There, I am trying to perform a POST request to post some JSON data to a server, but unfortunately as of now I keep getting a 415 error. The goal of this script is to upload a JSON formatted file (or something of the like) to the server for other users to download/read. I noticed that there are very few POST examples with JSL, but quite the abundance with GET, which I have no problems with. I w...

    liqinglei419 liqinglei419
    Discussions |
    Jul 2, 2019 6:33 AM
    2017 views | 0 replies
  • How to analyze crossover design data in JMP

    I had crossover design data from one of my experiment, and I want to analyze it according to the rules of crossover design. Can someone please help me with this?

    sharmachetan sharmachetan
    Discussions |
    Jun 14, 2019 2:34 PM
    1534 views | 0 replies
  • Help understanding how Lift curves are calculated

    Dear JMPers,   (computer details: I have JMP Pro 14 on a W7 Enterprise, 64-bit computer.)   I am trying to better understand how JMP actually calculates a Lift curve. I understand conceptually the ROC and Lift curves, but I'm having a hard time calculating a Lift curve myself. The JMP help/support page (https://www.jmp.com/support/help/14-2/lift-curve.shtml#1276958) isn't all that helpful in under...

    SDF1 SDF1
    Discussions |
    May 29, 2019 11:10 AM
    2148 views | 0 replies
view all discussions