Guest User

Untitled

a guest
Apr 26th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Email subject Line Number of Sent Number of Open
  2. A MasterCard For You! 113 8
  3. Act now to line up for your request immediately 5011 470
  4. Action requested to proceed further with your application 6427 544
  5. Advance Request Notification 1123 94
  6. User action pending notification 1540 934
  7.  
  8. Email$SubjectLine <- as.character(Email$SubjectLine)
  9. All.words <- strsplit(Email$SubjectLine, c(" "))
  10. words <- unlist(All.words)
  11. word.count <- table(words)
  12. chosen.words <- names(word.count)[word.count>3]
Add Comment
Please, Sign In to add comment