Hi,
I was trying to control stop words in text explorer using the folllowing example script.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Consumer Preferences.jmp" );
obj = Text Explorer( TextColumns( :Reasons Not to Floss ) );
obj << Add Stopwords( {"use", "feel", "like"} );
obj << Add Stopword Exceptions({"use", "feel", "like"});
obj << Add Stopwords( {"use", "feel", "like"} );
After setting the stopword exceptions, I can't add the same stop words again in the text explorer. And those stop words are show in both Local and Local exceptions. I was expecting setting the a word expection will delete the local stop word automatically.
![Capture.JPG Capture.JPG](https://community.jmp.com/t5/image/serverpage/image-id/19727i0C2995A0E745F299/image-dimensions/520x307?v=v2)
Overall, I would like to remvoe the stopwords/stopword exceptions using JMP scriping. Any ideas are appriciated.
Many thanks in advance.