forked from bquast/Data-Science-Capstone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Quiz1.R
34 lines (28 loc) · 782 Bytes
/
Quiz1.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Quiz 1
============
Question 1
------------
file.info("Coursera-Swiftkey/final/en_US/en_US.blogs.txt")$size / 1024^2
Question 2
------------
blogs <- readLines("Coursera-Swiftkey/final/en_US/en_US.blogs.txt")
news <- readLines("Coursera-Swiftkey/final/en_US/en_US.news.txt")
twitter <- readLines("Coursera-Swiftkey/final/en_US/en_US.twitter.txt")
length(twitter)
Question 3
------------
max(nchar(blogs))
max(nchar(news))
max(nchar(twitter))
Question 4
------------
love_count <- sum(grepl("love", twitter))
hate_count <- sum(grepl("hate", twitter))
love_count / hate_count
Question 5
------------
biostats <- grep("biostats", twitter)
twitter[biostats]
Question 6
------------
sum(grepl("A computer once beat me at chess, but it was no match for me at kickboxing", twitter))