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
Neo
Neo
Level VI

How to remove duplicate entries from a list?

If I have a list like

myList  = {"John", "Dan", "Rob", "Rob", "Matt", "Shane", "Matt", "Shane", "John"};

How do I get a list with duplicate entries removed ?

myList_new= {"John", "Dan", "Rob", "Matt", "Shane"};

 

When it's too good to be true, it's neither
1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to remove duplicate entries from a list?

If it doesn't matter that order changes you can use associative array

Names Default To Here(1);

myList  = {"John", "Dan", "Rob", "Rob", "Matt", "Shane", "Matt", "Shane", "John"};
my_list = Associative Array(myList) << get keys;
-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: How to remove duplicate entries from a list?

If it doesn't matter that order changes you can use associative array

Names Default To Here(1);

myList  = {"John", "Dan", "Rob", "Rob", "Matt", "Shane", "Matt", "Shane", "John"};
my_list = Associative Array(myList) << get keys;
-Jarmo
hogi
Level XIII

Re: How to remove duplicate entries from a list?

Unfortunately, Associative Arrays get slow if the list is long.

 

There are other approaches like Summarize and Tables/Summary which are way faster.

So, sometimes it could make sense to create a data table, fill a new column with the list values and use the fast table functions.

 

Best:
go to Provide fast way to get unique values from JMP objects (column, lists), possibly similar to Python's...  and support @jthi 's wish with a Kudo :)

 

Recommended Articles