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.
Overall, I would like to remvoe the stopwords/stopword exceptions using JMP scriping. Any ideas are appriciated.
Many thanks in advance.