cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
JMP Bar Chart

Welcome to the JMP User Community!

Ask questions, get answers, meet other JMP users

Learning Resources

Latest Discussions

  • Split whole string into 2 new column

    table<< New Column("d0", Character, Nominal, Formula(Word(Column(table, "Data"), "_", 1, 3))); table<< New Column("d1", Character, Nominal, Formula(Word(Column(table, "Data"), "_", 4, 6)));
    string= 1_1_1_1_1_1
    wanted to split this string into 2 column with data 1_1_1 for d0 and 1_1_1 for d1. Somehow the script above not working

    weilyne weilyne
    Discussions |
    Sep 3, 2023 12:52 PM
    1113 views | 1 replies
  • Open function with relative file location

    I need to use the open function with a relative file location. The following code finds the location, and stores the path to the file in the variable RelativeLocation relativePath = Get Default Directory(); UPtwo = Left( relativePath, Contains( relativePath, "/Folder/", -2 ) ); RelativeLocation = UPtwo || "Excel_file.xlsx";However, when using the Open function with the RelativeLocation variable, t...

    Steffen_Bugge Steffen_Bugge
    Discussions |
    Sep 2, 2023 2:19 PM
    1648 views | 2 replies
  • Access to folder above main script

    I am currently using the Get Default Directory function to run a script in a subfolder of my main script, using the following code relativePath = Get Default Directory(); Include(relativePath || "Folder1/Data import.jsl");How can I run a script or open a file in a folder above my main script, i.e. in a directory higher than the full directory given by Get Default Directory function?

    Steffen_Bugge Steffen_Bugge
    Discussions |
    Sep 1, 2023 11:49 PM
    1630 views | 3 replies
  • step

    The step function looks useful :)  some things which I noticed: 1) Don't use string values  as yi - although it seems to be "allowed": 2) Description - add-on:
    Returns the yi argument corresponding to the largest xi which satisfies xi less than or equal to the x argument- but only: IF there is another xi that is larger than x. 3) None of the yi values must be empty.


    Names Default to Here(1); dt = Op...

    hogi hogi
    Discussions |
    Sep 1, 2023 9:16 AM
    1414 views | 2 replies
  • How to do interactive Graph Builder in a custom window without toolbars or menus?

    Currently I have the following script: gb = Graph Builder(...); rgb = Report(gb); win = New Window("Custom Window", Show Menu( 0 ), Show Toolbars( 0 ), rgb); gb << Close Window;This way I get my small GB plot in a nice window without unnecessary user controls.The problem is that I cannot select points on that plot - it's a report, plot is not interactive. How do I either:a) make it interactive, so...

    miguello miguello
    Discussions |
    Aug 31, 2023 1:10 PM
    2736 views | 6 replies

Latest Discussions

  • Split whole string into 2 new column

    table<< New Column("d0", Character, Nominal, Formula(Word(Column(table, "Data"), "_", 1, 3))); table<< New Column("d1", Character, Nominal, Formula(Word(Column(table, "Data"), "_", 4, 6)));
    string= 1_1_1_1_1_1
    wanted to split this string into 2 column with data 1_1_1 for d0 and 1_1_1 for d1. Somehow the script above not working

    weilyne weilyne
    Discussions |
    Sep 3, 2023 12:52 PM
    1113 views | 1 replies
  • I can’t download

    When i try download I receive this

    FaceNoiseNewt88 FaceNoiseNewt88
    Discussions |
    Aug 31, 2023 12:53 PM
    1377 views | 1 replies
  • JSL How to put number(label) on line charts

    Hello friends, need some help. I plotted the Line Chart and manual did turn on Label at Data Source. It works fine. However when I got the JSL code for this the Line plot, and run code JSL, the reading (Data Value for Y-Axis) is gone!  :(  (I just got only line without number of value) 

    I am not sure if do we have JSL command to turn on the label (Data Value) and also how to set decimal number to s...

    cpbatman cpbatman
    Discussions |
    Aug 31, 2023 1:22 AM
    1874 views | 2 replies
  • Try to rename multiple data tables

    Hi friends,   I am trying to rename opened data tables in a project. I have two data tables, one has columns, the other one has 16 columns. I want to name the smaller data table as "Image" (this data contains lots of pictures) and the other one as "Numerical data".   My code works - for the first time. After the code changed the data table names correctly, If I manually change the correct named da...

    DivisiveEagle45 DivisiveEagle45
    Discussions |
    Aug 31, 2023 12:01 AM
    1293 views | 2 replies
  • How to deselect the columns that are assigned to Col List Box using Remove Selection Command

    I have assigned a column to X Col Box(Col List Box) and on clicking the Remove Button I need to deselect the column that I assigned to it. On X = Function({}, X Col Box << Append(Cols List << Get Selected) ); On Remove = Function({}, X Col Box << Remove selected; );

    Vinusha Vinusha
    Discussions |
    Aug 30, 2023 10:23 AM
    1099 views | 1 replies

Latest Discussions

view all discussions