cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Iterating Columns

    I’m working on a script to iterate through a list of columns and I’ve hit a snag.  I need to be able to output the column reference in the form ":Technology Default” but every method I’ve looked at outputs "Column("Technology Default")" .  I looked this up online and it appears that the reference I need is a "column reference" when what I get is a "column object reference".  Is there a straightfor...

    SpannerHead SpannerHead
    Discussions |
    May 11, 2024 10:30 AM
    3666 views | 6 replies
  • How to automate managing limits feature through JSL

    Hi, I'm trying to use JSL to perform manage limits. I'm trying to open a limit table, implement it on the current data table and then save it. The only function I found in the fourm or in the scripting index is to open the manage limits and then manually implement the limit or manually open a data table.  The other methods I found was hard-coding the spec limit using JSL.  Is there are a way I can...

    RA899 RA899
    Discussions |
    May 11, 2024 7:06 AM
    3238 views | 1 replies
  • Why does regex replacement not remove empty lines?

    The purpose is to download web content, keep the visible content, and remove lines with only Spaces.
    I use the following JSL but can't remove blank lines? Thanks!u = "https://www.jmp.com/support/help/zh-cn/17.2/jmp/jsl-terminology.shtml"; txt = Load Text File( u ); a = Length( txt ); t1 = Regex( txt, "<(.[^>]{0,})>", "", globalreplace ); t2 = Regex( t1, " ", "", globalreplace ); t2 = Regex( t2, "^...

    lala lala
    Discussions |
    May 10, 2024 4:45 PM
    10152 views | 14 replies
  • How to limit the user entry to 7 digits in NumberEditBox?

    ECN = 0, Text Box( "System ECN:" ), S1 = Number Edit Box(ECN, <<Set Property( "MaxLength", 7)), The user shouldn't be able to enter more than 7 digits. For example: 1234567... the user shouldn't be able to enter 8. How did achieve this? Any help is appreciated. 

    PunitPanjwani PunitPanjwani
    Discussions |
    May 10, 2024 1:34 PM
    4297 views | 8 replies
  • Path to the jmpStart.jsl file

    I have understood that jmpStart.jsl file is automatically loaded when running JMP, which is really helpful. I asked my team members to modify their start jsl which can be found in their folder, e.g. C:/Users/<ID>/AppData/Roaming/SAS/JMP, and it went very well. Now I was wondering if we could identify the path of our jmpstart.jsl even though we could check it in our log file. It would be easier for...

    WakuWakuGoku WakuWakuGoku
    Discussions |
    May 10, 2024 4:52 AM
    3492 views | 4 replies

Latest Discussions

  • Iterating Columns

    I’m working on a script to iterate through a list of columns and I’ve hit a snag.  I need to be able to output the column reference in the form ":Technology Default” but every method I’ve looked at outputs "Column("Technology Default")" .  I looked this up online and it appears that the reference I need is a "column reference" when what I get is a "column object reference".  Is there a straightfor...

    SpannerHead SpannerHead
    Discussions |
    May 11, 2024 10:30 AM
    3666 views | 6 replies
  • Begin Data Update

    HelloI have a table and would like the empty volume to be updated to 0I have written the script to update the column "19-04-2024"the problem is the name of the column can be changed and I prefer to use column (3) or column (4)but it doesn't work. can you please correct the script? dt << Begin Data Update;
                                        dt << Recode Column (
                                        d...

    Dennisbur Dennisbur
    Discussions |
    May 9, 2024 10:51 AM
    7323 views | 12 replies
  • Averaging with the Summary command. How can I use the mean column of the generated table to keep a significant number?

    I have seen Big Class.jmp's table with the same JSL get a mean column that already retains a significant number, but my own table does not.dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); dt = Current Data Table(); d2 = dt << Summary( Group( 2 ), Mean( 4 ), Freq( 0 ), Weight( 0 ), Link to original data table( 0 ), statistics column name format( "column" ) );Thanks!

    lala lala
    Discussions |
    May 8, 2024 8:00 AM
    5436 views | 10 replies
  • How can count the number of consecutive Spaces at the beginning of each line?

    It can be implemented with a formula or a regex
    I only know how to use this formula, but it's definitely not right.I don't want to do it in a circular way.Length(txt)-Length(Substitute(txt, " ", ""))Thanks!

    lala lala
    Discussions |
    May 8, 2024 7:45 AM
    1870 views | 3 replies
  • How to increase separation space in graph builder boxes

    Dear JMP experts,I created three stacked graph boxes with the graph builder and I added reference lines in each of them. Now I want to increase the space between each graph box since it is hard to distinguish them from each other. I couldnt find any function for that.Thanks for  your help!

    DualARIMACougar DualARIMACougar
    Discussions |
    May 8, 2024 7:19 AM
    2105 views | 2 replies

Latest Discussions

view all discussions