cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • 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 19 is here! Learn more about the new features.

Discussions

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

JSL List to matrix ?

Prob: needed to get a list or matrix of numbers instead of characters;

 

String="1,2,3,4,5,6";

list=words(String,",");  //output --> {"1","2","3","4","5","6"}

 

required output ={1,2,3,4,5,6};

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: JSL List to matrix ?

All Matrix, List and Character functions are available at

     Help==>Scripting Index==>Functions

Here is a possible answer for you

Names Default To Here( 1 );
String = "1,2,3,4,5,6";
Eval( Parse( "Mat=[" || string || "];" ) );
Jim

View solution in original post

4 REPLIES 4
ram
ram
Level IV

Re: JSL List to matrix ?

No For loop should be used.
Jeff_Perkinson
Community Manager Community Manager

Re: JSL List to matrix ?

Here's one way to do it without a For() loop.

 

String="1,2,3,4,5,6";
list=words(String,",");  
//output --> {"1","2","3","4","5","6"}

x=new table("temp", new column("c", character, values(list)), private);
:c<< data type(numeric);
m = c<< get values;

close(x, nosave);

show(m);
-Jeff
txnelson
Super User

Re: JSL List to matrix ?

All Matrix, List and Character functions are available at

     Help==>Scripting Index==>Functions

Here is a possible answer for you

Names Default To Here( 1 );
String = "1,2,3,4,5,6";
Eval( Parse( "Mat=[" || string || "];" ) );
Jim
ram
ram
Level IV

Re: JSL List to matrix ?

Thank you Jim,
This is exactly i was looking for. Also Thanks for pointing to the link to explore other functions too.

Recommended Articles