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

  • Security vulnerability with Encrypted Classes (example)

    I'm posting here as an FYI -- encrypted classes in JSL are not secure.  I recommend only using functions and not classes, as functions are not vulnerable to this. The issue lies in the fact that JMP classes are introspective, while compiled functions are not.  Consider the following class with that contains a method I'd really like to keep secret:Define Class( "complex", real = 0; imag = 0; _i...

    ErraticAttack ErraticAttack
    Discussions |
    Mar 29, 2022 7:20 AM
    1041 views | 1 replies
  • Condition error

    hello

    I'm trying to do a delta check between neighboring cells value on the same column.

    For( i = 1, i <= N Row( dtB ), i++, If( i == 1, If( Abs( :Delta[i] - :Delta[i + 1] ) <= 0.1, dtB:Check[i] = "Pass", dtB:Check[i] = "Fail" ), i == N Row( dtB ), If( Abs( :Delta[i] - :Delta[i - 1] ) <= 0.1, dtB...

    AdamChoen AdamChoen
    Discussions |
    Mar 29, 2022 6:56 AM
    4501 views | 11 replies
  • Question on ComboBox

    I can create options for Combo Box with pop up tips using something like that (found this experimentally): Names Default To Here( 1 ); list = {"One" ("This is One"), "Two" ("This is two")}; New Window( "Example", cb = Combo Box( list, selection = cb << GetSelected(); Print( selection ); ) );But then when I look at the selection - it only has "One" or "Two" as a result of << Get Selected.T...

    miguello miguello
    Discussions |
    Mar 29, 2022 6:02 AM
    1762 views | 4 replies
  • How to save a neural network to run on new data table

    Hi, Is there a way after saving the prediction formula including the hidden nodes (H1, H2, ...) so that I can run it on data in a new table? I don't just want to copy the formulas but rather have a way to save and automate it. The new data table is from a JMP button I made in an addin that does a sql query of a database.  I was going to try and automate a cartesian join of the data table that I ha...

    bjbreitling bjbreitling
    Discussions |
    Mar 28, 2022 4:16 PM
    2089 views | 2 replies
  • Using JSL (xpath) to change text edit boxes within Cause and Effect Diagrams

    I am trying to color the text edit boxes within my cause and effect diagram, but when I use the xpath function to grab a specific box, it always selects the whole diagram. Is there a more specific route to get the individual text edit boxes? ((dgram)[i])<< (xpath("//texteditbox")[i])<<select();Thanks!

    Raybob Raybob
    Discussions |
    Mar 28, 2022 2:03 PM
    1747 views | 3 replies

Latest Discussions

  • Security vulnerability with Encrypted Classes (example)

    I'm posting here as an FYI -- encrypted classes in JSL are not secure.  I recommend only using functions and not classes, as functions are not vulnerable to this. The issue lies in the fact that JMP classes are introspective, while compiled functions are not.  Consider the following class with that contains a method I'd really like to keep secret:Define Class( "complex", real = 0; imag = 0; _i...

    ErraticAttack ErraticAttack
    Discussions |
    Mar 29, 2022 7:20 AM
    1041 views | 1 replies
  • "Weight" in "Fit Y by X" (and perhaps generally in JMP platforms)

    I have data from several (22?) samples, which vary considerably in sample size. I understand that parameters are estimated better with larger samples, but that is not the issue I want to address here. It is that I would like to both graph distributions, and estimate parameters, as if the sample sizes didn't differ across the groups/samples. This means that large samples will need to be de-weighted...

    profjmb profjmb
    Discussions |
    Mar 28, 2022 5:37 AM
    2777 views | 3 replies
  • CUSUM chart with subgroup variable

    I'm trying to understand how the cusum chart is calculated usind a subgroup variable X where some X values are present multiple times. For example, I have 3-5 measurements per day and the cusum chart should be grouped by day. Since it says in the JMP help regarding X "If a value of this column is present more than once, the average response at each X value is plotted on the CUSUM chart.", I though...

    Kristin Kristin
    Discussions |
    Mar 28, 2022 12:27 AM
    2634 views | 4 replies
  • Association Analysis no showing up in menu.

    Hello, I ran into an issue while trying to work on a homework assignment. My JMP Pro doesn't have association analysis, I tried to adjust the preferences, I restarted my setting, restarted my computer, I even uninstalled and reinstalled JMP Pro but this problem persiets. I download JMP pro on my roommate's computer and again, I ran into this issue. I emailed JMP support about this but I haven't fo...

    DualJackal898 DualJackal898
    Discussions |
    Mar 27, 2022 10:07 PM
    4369 views | 1 replies
  • Mixed Logit Model

    How do I perform a Mixed Logit Model on JMP?

    ARR ARR
    Discussions |
    Mar 26, 2022 6:01 AM
    848 views | 1 replies

Latest Discussions

  • Column Switcher Button Removed from Plot Window Toolbar in JMP 16 for Mac

    Recently switched from JMP15 for Mac to JMP16 for Mac. I was surprised to see the column switcher button removed as an option in an analysis/plot window.  It used to reside up top next to the local data filter button (see black circle).  The option to customize it back is also missing and has been replaced by a 'properties' button.  This may also prove useful but I'm new to it.    To get the colum...

    datanaut datanaut
    Discussions |
    Mar 17, 2022 3:18 PM
    842 views | 0 replies
  • No table linking after saving the project?

    Hi,when I generate a summary table with the option "link to original data table" (selected by default), the two tables are linked:By selecting a row in the summary table the corresponding rows in the original table are selected.Cool.This also works for selections in Graphs and Dashboards.Very cool! Now my problem:After saving both tables to a project file, (precisely: after close & re-open the pro...

    hogi hogi
    Discussions |
    Feb 3, 2022 4:19 AM
    598 views | 0 replies
  • Setting Guardbands on Test Limits Using EMP

    Hello. I am trying to use the EMP tool to help set guardbands to my test limits based on my gauge R and R data from a final test machine.I used 10 devices and measured these devices 5 times each, across 5 different test sites on the machine.I need to know how much to guardband my Upper and Lower specs. I am having trouble understanding how to apply the data in the EMP report. I feel like this is a...

    Jbritsch04 Jbritsch04
    Discussions |
    Feb 2, 2022 8:49 AM
    769 views | 0 replies
  • How to introduce lower bounds for simulated data in Profiler platform

    Hi JMP community,   (JMP Pro 16.0.0)   I'm hoping to find out if there is a way to include lower bounds to simulated data in the Profiler platform. I have several predictors going into a model, but few data points to fit. So, in order to generate simulated ("synthetic") data, I use the Prediction Profiler platform along with the multivariate correlation structure of the data to generate thousands ...

    SDF1 SDF1
    Discussions |
    Feb 1, 2022 11:09 AM
    589 views | 0 replies
  • Query Builder filtering on date stored in Varchar(20)

    Query Builder - date filter.SQL ServerJMP version 16.2In the database (SQL Server) I get the Date field called RETURNDATE in ‘varchar20’ – I would like to use the Calendar functionality in the filter to select my dates I tried to create a calculated column (Calc1) and specify CAST([RETURNDATE] as date), which he doesn’t like. Using SQL outside Query BuilderSELECT TOP (1000) [LABJOBNO]      ,[DESPA...

    HansD HansD
    Discussions |
    Jan 25, 2022 6:12 AM
    1391 views | 0 replies
view all discussions