Displaying 1 result from an estimated 1 matches for "dabra".
Did you mean:
abra
2007 Nov 27
2
exporting a split list
Using wk <- with(d, split(word, kind)), I get the following class table:
wk$`1`
[1] "a" "bra" ... # (*)
wk$`10`
"ca" "dabra" ...
Now I need to export it in the following format:
class num_members examples
1 23 a bra ...
10 4 ca dabra
For each class C such as `1`, I need to print the number of members,
length(wk[[C]]), and show N examples as sam...