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

  • Changing Color Scales in Graph Builder when Using a Data Filter

    I'm creating an X-Y plot in Graph Builder and Using a 3rd continuous variable, Z, to create a color map at the X-Y values.  Further in a Data Filter I'm using a 4th variable that is a time based variable to show how the color map changes as a function of that 4th variable.  Using the animation feature is great for showing this. The problem is that as in the animation JMP apparently defaults to usi...

    stevecaffrey stevecaffrey
    Discussions |
    Mar 27, 2019 11:56 AM
    7020 views | 3 replies
  • Summarize Function with multiple by columns

    All, I'm trying to write a script that gets a count of observations, potentially by 1 or more columns (as determined by input from the user). I can get the script to work for one column, but not for two or more. How do I adjust the code in the by step of the summarize function to handle 1+ columns? Below is a sample of script:  varName = VarList <<Get selected(); numCols = nitems(varName); n = nro...

    seburke89 seburke89
    Discussions |
    Mar 27, 2019 9:28 AM
    6599 views | 2 replies
  • Random Uniform() keeps giving me the same number

    My script is returning random values from Random Uniform(), until I write some results to a data table.  When I write to the table Random Uniform() always returns the same value.   See comments in script below.  Would appreciate any help.  Many thanks, John names default to here(1); clear log(); include("defineVectorClass.jsl"); dtChaos = open("chaos.jmp"); proportionToCorner = 0.5; A = new object...

    johnmoore johnmoore
    Discussions |
    Mar 27, 2019 6:51 AM
    10034 views | 5 replies
  • Repeat a sequence in a column -JSL

    I was looking into the scripting guide, and it talks about Sequence( from, to, stepsize, repeat ); with from, to , stepsize and repeat. What if I want 3 values say, 1, 50000, 100000 repeated till the end of table in a column? (This is basically highlighting the 3 values in a column and right click and say fill to the end of the table)Do i have to run a for loop, or is there like a one line script ...

    vishwasanj vishwasanj
    Discussions |
    Mar 27, 2019 5:44 AM
    12128 views | 3 replies
  • How to get content of text edit box into "variable"?

    Hi, I'am looking for an alternative to manual change of variable ("Inspection Lot") within the script itself.   former sript:   Names Default To Here( 1 ); Open Database( "DBQ=X:... WHERE User1 LIKE '%Inspection Lot%'", "HSS" );     I tried this - s.below, but it does not work. The script is running, but the "variable" was not used. Probably something is wrong with the format. Looking for advice. ...

    PS_Ato PS_Ato
    Discussions |
    Mar 27, 2019 1:35 AM
    8679 views | 4 replies

Latest Discussions

  • Changing Color Scales in Graph Builder when Using a Data Filter

    I'm creating an X-Y plot in Graph Builder and Using a 3rd continuous variable, Z, to create a color map at the X-Y values.  Further in a Data Filter I'm using a 4th variable that is a time based variable to show how the color map changes as a function of that 4th variable.  Using the animation feature is great for showing this. The problem is that as in the animation JMP apparently defaults to usi...

    stevecaffrey stevecaffrey
    Discussions |
    Mar 27, 2019 11:56 AM
    7020 views | 3 replies
  • Beta Binomial Generalized Regress Variables

    I have a dataset that is constructed like this:IDReplicateYX1X2A10.78.33A20.25.44.09B10.25.76.66B21.31.39C10.11.48C20.07.22 The beta binomail distribution seems appropriate because my response variable (Y) is porportional.  Thus, I am interested in looking at the relationship of the two X variables to Y.  In order to use a beta binomial regression in jmp, you need to: The beta binomial distributio...

    batorani batorani
    Discussions |
    Mar 26, 2019 8:07 PM
    4593 views | 3 replies
  • Formula for Weibull distribution with a co-variate

    Hello,I performed a survival analysis with censored data, and a co-variate called "AGE". I used "Save Probabilty Formula" to save the formula in the data table. Now when  I right click the newly created column, and click on "Formula", I get the below formula.  My question is could someone advise on the actual formula for Weibull Distribution where I can substitute the calibrated co-efficients, and...

    mikethejumper mikethejumper
    Discussions |
    Mar 25, 2019 4:03 PM
    5550 views | 2 replies
  • Newline character

    Hello,I would like to simply insert a newline character at the end of each item in an array, being written to file.  Does JMP not recognize '\n'?  If so how would I get it to outputfile1file2file3rather thanfile1\nfile2\nfile3for(i=1,i<=length(Files),i++, filestring=filestring|| " " || char(Files[i]) || "\n"); f=Save Text File(pypath || "argfile.txt",filestring,mode("replace"));Thanks!  

    mnf mnf
    Discussions |
    Mar 25, 2019 8:23 AM
    8573 views | 3 replies
  • Analyzing texts

    So far I have been using JMP for my statistical calculations in the research, and I have been stuck using different windows-programs for my qualitative research. I wonder if I could use JMP for that too? I have two specific questions concerning text analysis with JMP that I have not found the answer to:1) is it posible to use JMP for qualitative analysis? i.e. to code the texts in several steps, d...

    gueriniere gueriniere
    Discussions |
    Mar 25, 2019 3:25 AM
    7730 views | 4 replies

Latest Discussions

  • Selecting Number of Clusters in Hierarchical Clustering

    One way to select possible number of clusters in hierarchical methods is to identify the relatively large changes in distance as number of clusters change (see table below). When I look at the actual distance measure from the table (clustering history below dendogram), there is a bigger jump from 3 clusters to 4 than from 4 to 5 (smaller), suggesting 4 may be the right decision. However, when you ...

    pratyushdash pratyushdash
    Discussions |
    Feb 23, 2019 5:51 PM
    2888 views | 0 replies
  • Beta Generalized Regression and adjusted chi-square values

    I have a data set from a two-choice rodent feeding trial. We were testing the effectiveness of 10 deterrents by coating them on seeds and offering them to rodents alongside control seeds that were uncoated. The explanatory variable is which of the 10 deterrents the treatment seed was coated with, and the response variable is the proportion of control seed and treatment seed consumed.  The question...

    Mananahi Mananahi
    Discussions |
    Feb 13, 2019 9:58 AM
    2231 views | 0 replies
  • DF Dens for repeated measures ANOVAs

    Dear JMP Community, When I run repeated measures ANOVAs with JMP (RMS, with Subject as a random factor), I have noticed that when a certain factor is crossed with Subject, the corresponding DF Den stays independent while the DF Dens for the other factors are put together as “Residual”.  Please see Images 1-3 of the attached file on how “DF Den” under “Test Denominator Synthesis” change across imag...

    mu mu
    Discussions |
    Feb 6, 2019 8:10 AM
    3888 views | 0 replies
  • Partition and Pruning

    I'm working with a dataset of about 27,000 rows and am trying to use 9 factors to predict a response using the partition function and a decision tree.  I'm using both k-means and validation.  When I tell JMP to Go, it will split 100-200 times, however the Split History shows me very little improvement after about 20 splits. For what I'm trying to do, I want to back up to the 20th split, but I don'...

    NG NG
    Discussions |
    Jan 30, 2019 8:25 AM
    3248 views | 0 replies
  • I want to use LASSO and Group LASSO in JMP

    I'm involved in a project where we are applying lasso to build a logistic regression model from a "black box" set of predictors.  I need to get JMP Pro before trying out JMP's implementation.  I'm doing all the analysis in R at present.  Does JMP Pro also include group lasso?  I've found through using JMP Cluster Variables (CLUSVAR) that I can naturally group my predictors prior to group lasso.  F...

    gene gene
    Discussions |
    Nov 2, 2018 7:43 AM
    2416 views | 0 replies
view all discussions