search for: my_set

Displaying 1 result from an estimated 1 matches for "my_set".

Did you mean: my_net
2007 Oct 03
1
Making a table: collapsing across sub-strings
Hi list, I'm currently processing textual data and I would really appreciate some help with one off my problems. I have a set of strings and I want to count how often each of this strings appears in this set. This is not very difficult and can be done as: TB<-table(my_set) plot(TB) However, I also want to collapse across sub-strings. This is, I want a sub-string ss of string S to be counted as an occurrence of string S. So, 'abab' should be included in the count of 'ababaaa' and should not be listed as a separate entry in the frequency table. Does...