cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Does anyone have a date picker widget in JSL (like https://jqueryui.com/datepicker/) that could be put into a New Window user dialog?

    Does anyone have a date picker widget in JSL (like https://jqueryui.com/datepicker/) that could be put into a New Window user dialog?

    landon landon
    Discussions |
    Feb 16, 2016 9:51 AM
    19301 views | 4 replies
  • How can I use JSL to create an "Overlay Plot" with data series?

    Hi all,I would like to create an overlay plot with multiple data series.  I see how I can copy the script and paste it into my code, but what if I don't know in advance how many columns I will have?  Also, what can I do about using different markers as well?Here is a copy of my script.  This is one of my smaller files, so naturally I would't want to have to type in all those lines!  Thanks in adva...

    natalie_ natalie_
    Discussions |
    Feb 16, 2016 8:36 AM
    15363 views | 10 replies
  • SQL query from 2 or more databases

    I have been creating some queries to an SQL database to extract some of the information from a master table and some other linked tables in a database.Now I want to be able to create a query that links tables located in two separate databases (both located in the same server) but I do not know if this is possible.When you create a query, the connection seems to be linked to a specific database in ...

    morenopelaez_p morenopelaez_p
    Discussions |
    Feb 16, 2016 1:20 AM
    7246 views | 4 replies
  • Extracting data from Graph/Data Table

    I have a data table that plots the below.  I need to find the corresponding x values for the points that are nearest to y=0.  I need the first two points (red lines) that cross (nearest) zero, the third crossing is not of interest.  I can find the closest value using the script:value = 0;d = Abs((:"col" << get values) - value);rows = Loc(d == Min(d));Show(rows);Data Table( "DT" ) << select rows(ro...

    bhosse0 bhosse0
    Discussions |
    Feb 14, 2016 8:13 PM
    14538 views | 9 replies
  • Fractional factorials with categorical 2-level and 3-level factors

    Hello Dear All, I have several DoE problems that include categorical
    factors that I need to screen. The number of factors with two levels varies
    between 3 and 5 while the number of factors with three levels varies between 2
    and 3. It seems to me that I can use for all the situations described above a fractional
    factorial design obtained from a L18 Hunter design which includes 8 two level
    factors and 4 ...

    MFVIT MFVIT
    Discussions |
    Feb 12, 2016 10:57 PM
    18212 views | 6 replies

Latest Discussions

  • SQL query from 2 or more databases

    I have been creating some queries to an SQL database to extract some of the information from a master table and some other linked tables in a database.Now I want to be able to create a query that links tables located in two separate databases (both located in the same server) but I do not know if this is possible.When you create a query, the connection seems to be linked to a specific database in ...

    morenopelaez_p morenopelaez_p
    Discussions |
    Feb 16, 2016 1:20 AM
    7246 views | 4 replies
  • Bug in graph builder with grid lines and right side axes?

    I think I found a bug (in JMP 12.1). Please try this script:dt = Open("$SAMPLE_DATA/Big Class.jmp");gb = dt << Graph Builder(    Size( 570, 667 ),    Show Control Panel( 0 ),    Variables(        X( :age ),        Y( :height ),        Y( :weight, Position( 1 ), Side( "Right" ) ),        Y( :age ),        Y( :name )    ),    Elements(        Position( 1, 1 ),        Points( X, Y( 1 ), Legend( 5 ) )...

    cis_pete cis_pete
    Discussions |
    Feb 12, 2016 9:32 AM
    5218 views | 1 replies
  • save factor scores using script

    I am wondering anyone knows how to save factor scores in a table using script. When I study “factor analysis”, I am unable to include the factor scores in the report except saving  them in a table by clicking “save rotated components.” I'm obtaining the factors using Analysis->Consumer Research -> Factor Analysis using a factoring  method of Principal Components and Prior Commuality and a rotation...

    likunz0 likunz0
    Discussions |
    Feb 12, 2016 7:48 AM
    5684 views | 2 replies
  • Select a range of rows with variables

    Hi everyone,Is it possible to select a range of rows with variables?This is what I have, but it found the maximum over the entire range: vlower = lowerVoltage << get;   vupper = upperVoltage << get;   row1 = (vlower/10)+1;  row2=(vupper/10)+1;select_rows = row1::row2(dt2);           select_values = dt2:Idoff(select_rows);id = maximum(select_values);

    natalie_ natalie_
    Discussions |
    Feb 12, 2016 6:50 AM
    4500 views | 2 replies
  • Control Chart Value Ordering

    Is there a way, when making a control chart (not using control chart builder) to get the “Sample Label” sorted according to the Value Ordering assigned to that column? Every time I try it, even if there is a value order assigned to the column, the control chart will display the data in the order it appears in the table, which is frustrating if you want to use the manual control chart rather than c...

    kschnarrs kschnarrs
    Discussions |
    Feb 10, 2016 7:27 AM
    7566 views | 5 replies

Latest Discussions

  • Co-Kriging with JMP and Matlab

    Hi!I was wondering if anyone already tried to work with Co-Kriging, using JMP together with Matlab. As JMP only fits Ordinary Kriging Models (Gaussian Process with Gaussian Correlation Function), I would like to send data (generated with Space Filling JMP Platform) from JMP to Matlab, fit the models there (Matlab), and bring the MODELS back to JMP, to use inside Profile Platform. Do you have any e...

    samuelbbaco0 samuelbbaco0
    Discussions |
    Dec 4, 2015 12:32 PM
    3798 views | 0 replies
  • Interpreting canonical structure and scores in discriminant analysis

    I'm trying to interpret the relative contributions of my variables in a discriminant function analysis of chemical data for three groups of rocks.  In a stepwise, linear, common covariance discriminant function analysis I'm able to generate non-overlapping 95% confidence ellipses for my three groups with no incorrectly assigned data points using 6 variables.  My understanding is that the scoring c...

    amzipkin amzipkin
    Discussions |
    Oct 20, 2015 3:25 PM
    3812 views | 0 replies
  • Generalized Segmented Distributions

    A former classmate of mine from Graduate School has recently published a paper on Generalized Segmented Distributions.  Utilizing this method, the distribution can approach any continuous density function of arbitrary form.  The method is particularly effective in fitting data with sufficient observations that are skewed and/or multimodal.  The paper can be found here:The General Segmented Distrib...

    Steven_Moore Steven_Moore
    Discussions |
    Sep 17, 2015 11:54 AM
    2523 views | 0 replies
  • Running JSL Script After Creation of a File

      

    sophiaw sophiaw
    Discussions |
    Sep 1, 2015 9:56 AM
    2809 views | 0 replies
  • Clash?

    saitcopuroglu saitcopuroglu
    Discussions |
    Aug 18, 2015 6:43 AM
    2546 views | 0 replies
view all discussions