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.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
martin_snogdahl
Level III

Extract list from Get List Check-command

Using the Get List Check command I get the following:

LC = col << Get List Check

The Log will show

LC = List Check({"Argon", "Krypton", "Air"});

How do I extract the list from inside the List Check()-statement? I want to end up with a variable containing the list.

LC_list = {"Argon", "Krypton", "Air"}

1 REPLY 1
ian_jmp
Level X

Re: Extract list from Get List Check-command

Take a look in the Scripting Index for 'Head()' and 'Arg()'.

// Make a table

dt =

New Table( "List Check",

Add Rows( 0 ),

New Column( "Check",

Character,

"Nominal",

List Check( {"A", "B", "C"} ),

Set Values( {} )

)

);

// Get the values of a List Check property into a list

lc = Column(dt, "Check") << getListCheck;

lcList = Arg(lc, 1);


Recommended Articles