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

  • Extracting a particular string from a longer one

    SourceTemperatureMZ_ES20-ATF786_D03-R_8x8-5hz_NoCG_0klux-black3--5degc__20181105_203705-5MZ_ES20-ATF786_D03-R_8x8-5hz_NoCG_0klux-grey17--30degc__20181105_194659-30MZ_ES20-ATF786_D03-R_8x8-5hz_NoCG_0klux-white64-70degc__20181105_18392070 Hi,I am trying to extract the temperature from the "Source" column in the JMP table above using JSLIn the Temperature column I have written the results that I woul...

    David_Morrow David_Morrow
    Discussions |
    Nov 7, 2018 7:39 AM
    7301 views | 4 replies
  • is there a way to color a contour plot with a category of data?

    I'm creating a contour plot with 3 groups of numerical data.  I also have categories that these different data are grouped into.  Is there any way to create a custom color scheme that follows the categories of data in the groups assigned so that I can see where the categories sit in this contour of the three numerical series?

    Maureen Maureen
    Discussions |
    Nov 6, 2018 11:10 PM
    4874 views | 2 replies
  • adding post-hoc groups to plots

    Is it possible to add letters to plots to signify post-hoc (e.g., Tukey's HSD p<0.05) differences? What I normally do is use GraphBuilder to make a plot, copy it, paste it into Adobe Illustrator, and then manually add lowercase letters (a=highest, b=next highest.....f=lowest) to denote post-hoc differences (from having run the statistical model under "Fit model"). I am guessing this is the only wa...

    abmayfield abmayfield
    Discussions |
    Nov 6, 2018 10:36 AM
    25885 views | 8 replies
  • JSL to Select Project Tab and Run Script

    Folks, I'm brand new to working with Projects and am having some difficulty achieving various things that I routinely do in JSL.  My Project has 4 data tables and I'm trying to select one of them and then run a particular script that is listed in that data table.  I've looked at the help information for Projects but can't quite figure out how to accomplish this.  Any suggestions/ideas would be gre...

    terapin terapin
    Discussions |
    Nov 6, 2018 6:40 AM
    9247 views | 7 replies
  • Coloring selective cells

    Hi there, how do I color the cells red for values that are lower than the limits? Thanks.dt = New Table( "Marks",    Add Rows( 2 ),    New Column( "Name", Character, Nominal, Set Values( {"Peter", "Leslie"} ) ),    New Column( "Limits",        Numeric,        Continuous,        Format( "Best", 12 ),        Set Values( [20, 30] )    ),    New Column( "Column 1",        Numeric,        Continuous,  ...

    kayne kayne
    Discussions |
    Nov 5, 2018 1:37 PM
    16678 views | 10 replies

Latest Discussions

  • is there a way to color a contour plot with a category of data?

    I'm creating a contour plot with 3 groups of numerical data.  I also have categories that these different data are grouped into.  Is there any way to create a custom color scheme that follows the categories of data in the groups assigned so that I can see where the categories sit in this contour of the three numerical series?

    Maureen Maureen
    Discussions |
    Nov 6, 2018 11:10 PM
    4874 views | 2 replies
  • column with formula in a post query script

    hi,   With a JMP query builder, and with the post query script, I create a new column with something like this:   dt << NewColumn("BMI", Numeric, Continuous, Formula(:weight/:height^2)); but, my problem is: when I update from database the jmp file, I create a new column "BMI 2". and with an another update: a new column BMI 3.   I would like to have only one column BMI at each update from database....

    Françoise Françoise
    Discussions |
    Nov 5, 2018 7:41 AM
    4548 views | 2 replies
  • How to save each graph from graph builder into an image file with the title from the List array

    Hello all, I have trying to find a away of saving my results into a pptx. template and realized that I should first save each result into a file to then compile into a template report.According the following post:https://community.jmp.com/t5/Discussions/the-graph-size-exported-to-pptx-Save-Presentation/m-p/72135#M35554 However, I have not been able to find a away of naming my files according to th...

    ivomdb ivomdb
    Discussions |
    Nov 5, 2018 3:45 AM
    18993 views | 9 replies
  • JMP Alert: Column "Column Name" requires numeric values{4} in access or evaluation of 'Bad Argument'

    I am trying to do a an if statement and am getting the error JMP Alert: Column "Column Name" requires numeric values{4} in access or evaluation of 'Bad Argument' where "Column Name" is the name of the column with the formula. Careful, my input column name looks like a formula but it's a column name.  The input column is Numeric, continuous. What am I doing wrong? Here's the formulaIf( Num( Abs( :N...

    BSwid BSwid
    Discussions |
    Nov 2, 2018 12:15 PM
    10824 views | 6 replies
  • Power Analysis Help

    Hi, Please could I get some help understanding power analysis? I have 2 treatments with 6 pen replicates. I have ran an ANOVA which has showed the P value of 0.1, SEM= 0.011. I would like help to find out: With the current data- what is the l.s.d. or the minimum difference between the two points I would need to have to see a significant difference here?How many more replicates would I need to see ...

    Abbiegraham Abbiegraham
    Discussions |
    Nov 2, 2018 10:08 AM
    10100 views | 1 replies

Latest Discussions

  • 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
    2652 views | 0 replies
  • Contingency table and mosaic plot are not same orientation

    // For a contingency table report, swap the x and y // currently can swap the mosaic plot only Names Default to Here(1); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); myr = Contingency( Y( :Age ), X( :sex ) ); // Have to have a Contingency Analysis report open // Can add test to make sure it is open in the future myr = Current Report(); // taking apart CrossTabBox was easier using XML than JSL ...

    Vball247 Vball247
    Discussions |
    Oct 29, 2018 2:18 PM
    3294 views | 0 replies
  • how to change the type and color of lines in graph

    I am trying to show line of fit in graph builder for several sets of data. The data table have many columns, I want to show the column(i) vs column(1).Every column can  be grouped by A1 & a, also can  be grouped by B1 & b, but except column(1). The follow is the chart about column(2) vs column(1):  I use the follow script to change the type of lines:Dispatch( {}, "400", ScaleBox, {Legend Model( 8,...

    Yu Yu
    Discussions |
    Sep 25, 2018 2:34 AM
    3726 views | 0 replies
  • Mean separation letter from test slices

    Hello!

    How do I get the mean separation letter in for each level of a factor when interaction is significant? For example, if I have A*B interaction and I want to get the mean separation of B at each level of A, how do I get the LSD letters in JMP? I can do test slices and that will use the DF of the full analysis, but this does not shows which mean of B differs. If I do multiple comparison: How ca...

    jfranc19 jfranc19
    Discussions |
    Sep 14, 2018 2:35 PM
    2546 views | 0 replies
  • repeated-measures ANCOVA: How to perform the analysis when the parallel slope assumpt. doesn't meet?

    Hi all,I need to perform the ANCOVA for a repeated-measures design. I tried to adapt the Julian's ANCOVA procedure showed on the https://www.youtube.com/watch?v=mApbp1RDy-U to my study case (repeated-measures design). Initially, I did the following actions: 1. In the Fit Y by X dialogue: I selected VAR_Y as "Y, Response" and VAR_X as "X, Factor";2. For "Group by" I selected the variable Timepoint;...

    Reinaldo Reinaldo
    Discussions |
    Jun 18, 2018 6:31 AM
    3564 views | 0 replies
view all discussions