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

  • How to fix a duration with missing colon :

    Hi all,  I have an issue that I haven't encountered before...  I have an Excel file with 87 columns of durations that should be in hh:mm However, they are in hhmm or hmm <-- note the missing :  If the duration is less than 10:00 it is three figures  (9:59 is entered as 959)If the duration is more than 9:59 it is four figures (11:52 is entered as 1152) I can handle this if it were 1 or 2 columns, b...

    Stats_Like_Jazz Stats_Like_Jazz
    Discussions |
    Apr 29, 2026 6:00 AM
    341 views | 7 replies
  • Remove "None Selected" Option from Local Data Filter

    I have dug around the community, scripting index, etc to see if there is an answer to this but I haven't found anything. I have a local data filter being used to change which parameter is shown on a chart. The local data filter is set to radio button mode so only one selection can be made at a time. I would like to remove the option of "None Selected" from the data filter because this option will ...

    jevanove jevanove
    Discussions |
    Apr 28, 2026 9:45 AM
    103 views | 1 replies
  • JSL: Filtering files by Creation Date with Files In Directory and Filter Each

    Hi all,

    I am working with JSL to collect and filter files from a directory.
    The basic filtering logic (name, extension, size) works correctly, but I am running into issues when trying to add a reliable Creation Date filter.

    This code correctly finds non‑empty .txt files whose names contain "result":   Names Default To Here(1); folderPath = "C:/Users/.../test"; fileListOrig = Files In Directory(folde...

    Daron8 Daron8
    Discussions |
    Apr 28, 2026 8:28 AM
    235 views | 4 replies
  • Help with relative positions of custom "legend"

    Hello JSL Scripters,   I'm working on a script, where I am adding my own "legend" to a graph. See screenshot below.     I've added the lines and text by right clicking in the graph Customize...> and then adding a Script to the graph. The following JSL generates the "legend" as shown above. Pen Color( "Red" ); Pen Size( 2 ); Line Style( "Solid" ); Line( [20, 100], [65, 65] ); Text( {120, 64}, "Wei...

    SDF1 SDF1
    Discussions |
    Apr 28, 2026 5:38 AM
    237 views | 4 replies
  • JMP 14.3 Add ins available

    Is there any site with add-ins for older JMP version like V14?

    AttributedWalk1 AttributedWalk1
    Discussions |
    Apr 28, 2026 12:34 AM
    183 views | 1 replies

Latest Discussions

  • How to fix a duration with missing colon :

    Hi all,  I have an issue that I haven't encountered before...  I have an Excel file with 87 columns of durations that should be in hh:mm However, they are in hhmm or hmm <-- note the missing :  If the duration is less than 10:00 it is three figures  (9:59 is entered as 959)If the duration is more than 9:59 it is four figures (11:52 is entered as 1152) I can handle this if it were 1 or 2 columns, b...

    Stats_Like_Jazz Stats_Like_Jazz
    Discussions |
    Apr 29, 2026 6:00 AM
    341 views | 7 replies
  • Remove "None Selected" Option from Local Data Filter

    I have dug around the community, scripting index, etc to see if there is an answer to this but I haven't found anything. I have a local data filter being used to change which parameter is shown on a chart. The local data filter is set to radio button mode so only one selection can be made at a time. I would like to remove the option of "None Selected" from the data filter because this option will ...

    jevanove jevanove
    Discussions |
    Apr 28, 2026 9:45 AM
    103 views | 1 replies
  • JMP 14.3 Add ins available

    Is there any site with add-ins for older JMP version like V14?

    AttributedWalk1 AttributedWalk1
    Discussions |
    Apr 28, 2026 12:34 AM
    183 views | 1 replies
  • Red triangle menu edits

    Is there a way to edit the name and the script of a red triangle menu item after I created them rather than recreate the whole menu? ob << Set Menu Script( {"A", Print( "A" ), "B", Print( "B" ), "B1", Print( "B1" ), "B2", Print( "B2" ), "B3", Print( "B3" ), "C", Print( "C" )} ); ob << Set Submenu( 2, 3 ); Let's say I need change  "B2", Print( "B2" ) --> "BeeToo", Print( "BeeToo" ) for one speci...

    miguello miguello
    Discussions |
    Apr 25, 2026 12:21 AM
    147 views | 1 replies
  • Best Way To Write A Formula With A Potentially Missing Column Reference

    I have a script that creates a formula based on the contents of an object.  In some instances, the entry that fills in the object is bypassed.  N Items(yVars) ==0 in that case.  How can I have the formula calculate without the column reference if empty?   The case below is overly complex where I check for the presence of an entry and use an If() statement to create alternative actions. If( N Items...

    SpannerHead SpannerHead
    Discussions |
    Apr 24, 2026 9:12 AM
    288 views | 4 replies

Latest Discussions

  • Inquiry regarding the procedure for PLS Discriminant Analysis (PLS-DA)

    [Environment] Version: JMP(r) Student Edition 19.1.0 (914688) License: For Academic Use Only (Expires: 2027/04/13) OS: Microsoft Windows 11 Home (10.0.26200.0)
    [Inquiry] Regarding the procedure for performing PLS Discriminant Analysis (PLS-DA)

    I am attempting to perform a PLS Discriminant Analysis (PLS-DA) using JMP Student Edition, as I understand this feature is supported in this edition. I ...

    SignBurro204 SignBurro204
    Discussions |
    Apr 24, 2026 3:30 AM
    116 views | 0 replies
  • defining function scope changes how result is returned

    Why don't all three of these return their unevaluated argument like the first one does? Is there a way to make the last two work like the first? Inside the function, e is still unevaluated, this seems to happen when the result is returned. names default to here(1); ns = New Namespace("n"); foo = function({e}, Name Expr(e) ); ns:bar = function({e}, Name Expr(e) ); show( foo( expr( notavar...

    ih ih
    Discussions |
    Apr 20, 2026 1:45 PM
    154 views | 0 replies
  • How does JMP bias the rate of count when calculating the probability of Partition platform with categorical responses?

    For categorical responses Partition has the response rates that are slightly biased away from zero to avoid having attributed probabilities of zero. I would like to know how to calcurate the biased probabilities.

    Takashi Takashi
    Discussions |
    Apr 16, 2026 8:41 PM
    147 views | 0 replies
  • Nested Two Way Anova Help?

    Hi, I am trying to analyze calcium transient data from cardiomyocytes. I moved to JMP because Prism cannot do a two way ANOVA on nested data but I cannot figure out how to run this analysis. I have 4 experimental groups (WT SHAM, KO SHAM, WT OVX, KO OVX) across two factors (genotype (WT/KO) and surgery (SHAM/OVX)) but I don't know how to add these variables prior to running analyses. For each anim...

    ClusterSeal6941 ClusterSeal6941
    Discussions |
    Apr 14, 2026 12:36 PM
    349 views | 0 replies
  • Help with PPK on one-sided data which includes zeros

    I’m trying to calculate an appropriate PPK for data with the following criteria: Data lies between 0 and +InifinityA significant portion of the data is exactly 0, and this represents an actual true 0Has an Upper Spec limit onlyHeavily Skewed The distribution should be an appropriate distribution for the data. What’s the best way to get JMP to do this?

    david707 david707
    Discussions |
    Apr 8, 2026 8:59 AM
    325 views | 0 replies
view all discussions