diff --git a/Assignment 2-2020.Rmd b/Assignment 2-2020.Rmd index 0b235a3..4514bca 100644 --- a/Assignment 2-2020.Rmd +++ b/Assignment 2-2020.Rmd @@ -29,6 +29,7 @@ D1 <- read.csv("video-data.csv", header = TRUE) #Create a data frame that only contains the years 2018 D2 <- filter(D1, year == 2018) +D2 ``` ## Histograms @@ -63,10 +64,10 @@ y <- c(2,4,2,3,2,4,3) #Create a table from x & y table1 <- table(x,y) - +table1 #Display the table as a Barplot barplot(table1) - +table1 #Create a data frame of the average total key points for each year and plot the two against each other as a lines D3 <- D1 %>% group_by(year) %>% summarise(mean_key = mean(key.points)) @@ -91,26 +92,40 @@ pairs(D5) 1. Create a simulated data set containing 100 students, each with a score from 1-100 representing performance in an educational game. The scores should tend to cluster around 75. Also, each student should be given a classification that reflects one of four interest groups: sport, music, nature, literature. ```{r} -#rnorm(100, 75, 15) creates a random sample with a mean of 75 and standard deviation of 20 +#rnorm(100, 75, 15) creates a random sample with a mean of 75 and standard deviation of 15 #pmax sets a maximum value, pmin sets a minimum value #round rounds numbers to whole number values #sample draws a random samples from the groups vector according to a uniform distribution +score <- rnorm(100, 75, 15) +hist(score, breaks = 30) +s1 <- data.frame(score) +s1 + +library(dplyr) +s1 <- filter(s1, score <= 100) +hist(s1$score) +s2 <- data.frame(rep(100, 100-NROW(s1))) +names(s2) <- "score" -``` +s3 <- bind_rows(s1, s2) +s3$studentid <- seq(1, 100, 1) +s3$score <- round(s3$score) +interest <- c("sport", "music","nature", "literature") +s3$interest <- sample(interest, 100, replace = TRUE) +s3 +``` 2. Using base R commands, draw a histogram of the scores. Change the breaks in your histogram until you think they best represent your data. ```{r} - +hist(s3$score, breaks = 10, ylim = c(0, 30)) ``` - - 3. Create a new variable that groups the scores according to the breaks in your histogram. ```{r} #cut() divides the range of scores into intervals and codes the values in scores according to which interval they fall. We use a vector called `letters` as the labels, `letters` is a vector made up of the letters of the alphabet. - +s3$lables <- cut(s3$score, breaks = 10, labels = letters[1:10]) ``` 4. Now using the colorbrewer package (RColorBrewer; http://colorbrewer2.org/#type=sequential&scheme=BuGn&n=3) design a pallette and assign it to the groups in your data on the histogram. @@ -123,7 +138,8 @@ library(RColorBrewer) #Make RColorBrewer palette available to R and assign to your bins #Use named palette in histogram - +brewer.pal(10, "Set3") +hist(s3$score, breaks = 10 , ylim = c(0, 30), col = brewer.pal(10, "Set3"), border = FALSE) ``` @@ -131,35 +147,37 @@ library(RColorBrewer) ```{r} #Make a vector of the colors from RColorBrewer - +head(s3) +boxplot(score ~ interest, data = s3) +brewer.pal(4, "Pastel1") +display.brewer.pal(4, "Pastel1") +boxplot(score ~ interest, data = s3, col = brewer.pal(4, "Pastel1"), border = "grey") ``` - - 6. Now simulate a new variable that describes the number of logins that students made to the educational game. They should vary from 1-25. ```{r} - +(s3$logins <- sample(1:25, 100, replace = TRUE)) ``` 7. Plot the relationships between logins and scores. Give the plot a title and color the dots according to interest group. ```{r} - - +plot(s3$logins ~ score, data = s3, main = "All About Games", ylab = "logins", pch = 7, col = c("plum2", "mediumturquoise", "darkseagreen1", "lavender")) ``` 8. R contains several inbuilt data sets, one of these in called AirPassengers. Plot a line graph of the the airline passengers over time using this data set. ```{r} - +plot(AirPassengers) ``` -9. Using another inbuilt data set, iris, plot the relationships between all of the variables in the data set. Which of these relationships is it appropraiet to run a correlation on? +9. Using another inbuilt data set, iris, plot the relationships between all of the variables in the data set. Which of these relationships is it appropriate to run a correlation on? ```{r} - +plot(iris) +cor(iris$Petal.Length,iris$Petal.Width) ``` # Part III - Analyzing Swirl @@ -171,7 +189,15 @@ In this repository you will find data describing Swirl activity from the class s ### Instructions 1. Insert a new code block +```{r} + +``` + 2. Create a data frame from the `swirl-data.csv` file called `DF1` +```{r} +DF1 <- read.csv("swirl-data.csv", header = TRUE) +DF1 +``` The variables are: @@ -185,19 +211,52 @@ The variables are: `hash` - anonymyzed student ID 3. Create a new data frame that only includes the variables `hash`, `lesson_name` and `attempt` called `DF2` +```{r} +library(dplyr) +DF2 <- dplyr::select(DF1, hash, lesson_name, attempt) +DF2 +``` 4. Use the `group_by` function to create a data frame that sums all the attempts for each `hash` by each `lesson_name` called `DF3` +```{r} +library(dplyr) +DF3 <- DF2 %>% group_by(hash, lesson_name) %>% summarise(sum = sum(attempt)) +DF3 +``` + 5. On a scrap piece of paper draw what you think `DF3` would look like if all the lesson names were column names + 6. Convert `DF3` to this format +```{r} +library(tidyr) +script <- spread(DF3, lesson_name, sum, fill = NA, convert = FALSE) +``` + 7. Create a new data frame from `DF1` called `DF4` that only includes the variables `hash`, `lesson_name` and `correct` +```{r} +library(dplyr) +DF4 <- select(DF1, hash, lesson_name, correct) +``` 8. Convert the `correct` variable so that `TRUE` is coded as the **number** `1` and `FALSE` is coded as `0` +```{r} +DF4$correct <- ifelse(DF4$correct == "FALSE", 0, 1) + +``` 9. Create a new data frame called `DF5` that provides a mean score for each student on each course +```{r} +library(dplyr) +course_name <- DF1[,1] +DF5 <- bind_cols(DF4, course_name) +DF5 %>% group_by(hash, ...4) %>% summarise(mean = mean(correct)) + +``` 10. **Extra credit** Convert the `datetime` variable into month-day-year format and create a new data frame (`DF6`) that shows the average correct for each day + Finally use the knitr function to generate an html document from your work. Commit, Push and Pull Request your work back to the main branch of the repository. Make sure you include both the .Rmd file and the .html file. diff --git a/Assignment-2-2020.html b/Assignment-2-2020.html new file mode 100644 index 0000000..c4943ed --- /dev/null +++ b/Assignment-2-2020.html @@ -0,0 +1,18238 @@ + + + + +
+ + + + + + + + + + +#Part I
+In the hackathon a project was proposed to collect data from student video watching, a sample of this data is available in the file video-data.csv.
+stid = student id year = year student watched video participation = whether or not the student opened the video watch.time = how long the student watched the video for confusion.points = how many times a student rewatched a section of a video key,points = how many times a student skipped or increased the speed of a video
+#Install the 'tidyverse' package or if that does not work, install the 'dplyr' and 'tidyr' packages.
+
+#Load the package(s) you just installed
+
+library(tidyverse)
+## ── Attaching packages ──────────────────────────────────────────────────────────────────────────────── tidyverse 1.3.0 ──
+## ✓ ggplot2 3.3.2 ✓ purrr 0.3.4
+## ✓ tibble 3.0.3 ✓ dplyr 1.0.2
+## ✓ tidyr 1.1.2 ✓ stringr 1.4.0
+## ✓ readr 1.3.1 ✓ forcats 0.5.0
+## ── Conflicts ─────────────────────────────────────────────────────────────────────────────────── tidyverse_conflicts() ──
+## x dplyr::filter() masks stats::filter()
+## x dplyr::lag() masks stats::lag()
+library(tidyr)
+library(dplyr)
+
+D1 <- read.csv("video-data.csv", header = TRUE)
+
+#Create a data frame that only contains the years 2018
+D2 <- filter(D1, year == 2018)
+D2
+## stid year video participation watch.time confusion.points key.points
+## 1 1 2018 A 1 16.50 6 6
+## 2 2 2018 A 0 0.00 0 0
+## 3 3 2018 A 1 9.00 4 6
+## 4 4 2018 A 1 20.00 8 5
+## 5 5 2018 A 1 12.00 8 5
+## 6 6 2018 A 1 15.00 5 4
+## 7 7 2018 A 1 24.75 11 5
+## 8 8 2018 A 1 12.00 8 6
+## 9 9 2018 A 1 15.00 5 2
+## 10 10 2018 A 1 0.00 0 5
+## 11 11 2018 A 1 19.25 7 6
+## 12 12 2018 A 1 5.00 4 2
+## 13 13 2018 A 1 16.00 8 2
+## 14 14 2018 A 1 7.50 5 5
+## 15 15 2018 A 1 10.00 8 4
+## 16 16 2018 A 1 25.00 10 5
+## 17 17 2018 A 0 0.00 0 0
+## 18 18 2018 A 1 20.25 9 4
+## 19 19 2018 A 1 12.00 6 5
+## 20 20 2018 A 1 14.00 7 4
+## 21 21 2018 A 0 0.00 0 0
+## 22 22 2018 A 0 0.00 0 0
+## 23 23 2018 A 1 3.00 3 5
+## 24 24 2018 A 0 0.00 0 0
+## 25 25 2018 A 1 8.75 7 4
+## 26 26 2018 A 1 0.00 0 5
+## 27 27 2018 A 1 8.00 4 5
+## 28 28 2018 A 1 10.00 4 5
+## 29 29 2018 A 1 10.00 5 2
+## 30 30 2018 A 1 19.25 7 3
+## 31 1 2018 B 1 6.00 2 5
+## 32 2 2018 B 1 15.00 5 4
+## 33 3 2018 B 1 5.00 2 4
+## 34 4 2018 B 1 0.00 0 5
+## 35 5 2018 B 1 2.00 1 4
+## 36 6 2018 B 1 13.50 6 4
+## 37 7 2018 B 1 7.00 7 4
+## 38 8 2018 B 1 0.00 0 7
+## 39 9 2018 B 0 0.00 0 0
+## 40 10 2018 B 1 0.00 0 5
+## 41 11 2018 B 1 12.00 8 3
+## 42 12 2018 B 0 0.00 0 0
+## 43 13 2018 B 1 30.00 10 3
+## 44 14 2018 B 0 0.00 0 0
+## 45 15 2018 B 1 2.00 1 4
+## 46 16 2018 B 1 5.50 2 3
+## 47 17 2018 B 1 0.00 0 5
+## 48 18 2018 B 1 10.00 4 2
+## 49 19 2018 B 1 6.00 2 3
+## 50 20 2018 B 1 6.00 6 5
+## 51 21 2018 B 1 10.50 6 5
+## 52 22 2018 B 1 6.00 2 3
+## 53 23 2018 B 1 7.50 6 4
+## 54 24 2018 B 1 6.00 3 1
+## 55 25 2018 B 1 15.75 7 6
+## 56 26 2018 B 0 0.00 0 0
+## 57 27 2018 B 0 0.00 0 0
+## 58 28 2018 B 1 3.00 1 5
+## 59 29 2018 B 1 3.00 2 5
+## 60 30 2018 B 1 5.00 5 4
+## 61 1 2018 C 1 24.00 8 4
+## 62 2 2018 C 1 5.25 3 5
+## 63 3 2018 C 1 4.00 4 4
+## 64 4 2018 C 1 13.50 6 5
+## 65 5 2018 C 1 0.00 0 6
+## 66 6 2018 C 1 10.50 6 3
+## 67 7 2018 C 1 2.50 1 6
+## 68 8 2018 C 0 0.00 0 0
+## 69 9 2018 C 1 20.25 9 5
+## 70 10 2018 C 1 10.00 8 5
+## 71 11 2018 C 0 0.00 0 0
+## 72 12 2018 C 1 24.00 8 4
+## 73 13 2018 C 0 0.00 0 0
+## 74 14 2018 C 1 18.00 9 5
+## 75 15 2018 C 1 4.00 2 4
+## 76 16 2018 C 1 12.00 4 3
+## 77 17 2018 C 1 0.00 0 3
+## 78 18 2018 C 1 12.00 6 4
+## 79 19 2018 C 0 0.00 0 0
+## 80 20 2018 C 1 16.50 6 4
+## 81 21 2018 C 1 2.50 1 4
+## 82 22 2018 C 1 27.00 9 4
+## 83 23 2018 C 0 0.00 0 0
+## 84 24 2018 C 1 11.25 9 5
+## 85 25 2018 C 1 0.00 0 4
+## 86 26 2018 C 0 0.00 0 0
+## 87 27 2018 C 1 25.00 10 3
+## 88 28 2018 C 1 8.00 8 4
+## 89 29 2018 C 1 14.00 8 4
+## 90 30 2018 C 1 0.00 0 4
+## 91 1 2018 D 1 3.00 3 5
+## 92 2 2018 D 1 27.50 10 4
+## 93 3 2018 D 0 0.00 0 0
+## 94 4 2018 D 1 22.00 8 4
+## 95 5 2018 D 1 16.50 6 3
+## 96 6 2018 D 1 0.00 0 4
+## 97 7 2018 D 1 4.00 4 3
+## 98 8 2018 D 1 18.00 6 2
+## 99 9 2018 D 1 8.00 8 3
+## 100 10 2018 D 1 1.00 1 5
+## 101 11 2018 D 1 4.00 2 3
+## 102 12 2018 D 1 15.75 9 3
+## 103 13 2018 D 1 6.00 4 5
+## 104 14 2018 D 1 11.25 9 3
+## 105 15 2018 D 1 8.00 4 4
+## 106 16 2018 D 1 12.50 5 3
+## 107 17 2018 D 1 5.50 2 5
+## 108 18 2018 D 1 0.00 0 5
+## 109 19 2018 D 1 9.00 6 4
+## 110 20 2018 D 1 15.00 6 3
+## 111 21 2018 D 0 0.00 0 0
+## 112 22 2018 D 1 12.00 8 5
+## 113 23 2018 D 1 15.00 5 4
+## 114 24 2018 D 1 15.00 5 4
+## 115 25 2018 D 1 16.50 6 6
+## 116 26 2018 D 1 22.00 11 4
+## 117 27 2018 D 1 2.00 2 2
+## 118 28 2018 D 1 13.50 6 5
+## 119 29 2018 D 1 4.00 2 5
+## 120 30 2018 D 1 2.25 1 5
+## 121 1 2018 E 1 10.00 4 3
+## 122 2 2018 E 1 7.50 5 5
+## 123 3 2018 E 1 7.00 7 5
+## 124 4 2018 E 1 32.50 13 4
+## 125 5 2018 E 0 0.00 0 0
+## 126 6 2018 E 0 0.00 0 0
+## 127 7 2018 E 0 0.00 0 0
+## 128 8 2018 E 0 0.00 0 0
+## 129 9 2018 E 0 0.00 0 0
+## 130 10 2018 E 1 10.00 4 3
+## 131 11 2018 E 1 24.00 8 4
+## 132 12 2018 E 1 10.00 5 5
+## 133 13 2018 E 1 7.00 4 4
+## 134 14 2018 E 1 14.00 7 4
+## 135 15 2018 E 0 0.00 0 0
+## 136 16 2018 E 1 19.25 7 4
+## 137 17 2018 E 1 19.25 7 4
+## 138 18 2018 E 1 19.50 13 4
+## 139 19 2018 E 1 18.00 6 5
+## 140 20 2018 E 1 6.75 3 6
+## 141 21 2018 E 1 6.00 4 4
+## 142 22 2018 E 0 0.00 0 0
+## 143 23 2018 E 0 0.00 0 0
+## 144 24 2018 E 1 4.50 3 1
+## 145 25 2018 E 1 11.00 4 3
+## 146 26 2018 E 1 15.75 7 5
+## 147 27 2018 E 1 0.00 0 3
+## 148 28 2018 E 1 5.00 2 5
+## 149 29 2018 E 0 0.00 0 0
+## 150 30 2018 E 0 0.00 0 0
+#Generate a histogram of the watch time for the year 2018
+
+hist(D2$watch.time)
+#Change the number of breaks to 100, do you get the same impression?
+
+hist(D2$watch.time, breaks = 100)
+#Cut the y-axis off at 10
+
+hist(D2$watch.time, breaks = 100, ylim = c(0,10))
+#Restore the y-axis and change the breaks so that they are 0-5, 5-20, 20-25, 25-35
+
+hist(D2$watch.time, breaks = c(0,5,20,25,35))
+#Plot the number of confusion points against the watch time
+
+plot(D1$confusion.points, D1$watch.time)
+#Create two variables x & y
+x <- c(1,3,2,7,6,4,4)
+y <- c(2,4,2,3,2,4,3)
+
+#Create a table from x & y
+table1 <- table(x,y)
+table1
+## y
+## x 2 3 4
+## 1 1 0 0
+## 2 1 0 0
+## 3 0 0 1
+## 4 0 1 1
+## 6 1 0 0
+## 7 0 1 0
+#Display the table as a Barplot
+barplot(table1)
+table1
+## y
+## x 2 3 4
+## 1 1 0 0
+## 2 1 0 0
+## 3 0 0 1
+## 4 0 1 1
+## 6 1 0 0
+## 7 0 1 0
+#Create a data frame of the average total key points for each year and plot the two against each other as a lines
+
+D3 <- D1 %>% group_by(year) %>% summarise(mean_key = mean(key.points))
+## `summarise()` ungrouping output (override with `.groups` argument)
+plot(D3$year, D3$mean_key, type = "l", lty = "dashed")
+#Create a boxplot of total enrollment for three students
+D4 <- filter(D1, stid == 4|stid == 20| stid == 22)
+#The drop levels command will remove all the schools from the variable with no data
+D4 <- droplevels(D4)
+boxplot(D4$watch.time~D4$stid, xlab = "Student", ylab = "Watch Time")
+ ## Pairs
#Use matrix notation to select columns 2, 5, 6, and 7
+D5 <- D1[,c(2,5,6,7)]
+#Draw a matrix of plots for every combination of variables
+pairs(D5)
+ ## Part II
#rnorm(100, 75, 15) creates a random sample with a mean of 75 and standard deviation of 15
+#pmax sets a maximum value, pmin sets a minimum value
+#round rounds numbers to whole number values
+#sample draws a random samples from the groups vector according to a uniform distribution
+score <- rnorm(100, 75, 15)
+hist(score, breaks = 30)
+s1 <- data.frame(score)
+s1
+## score
+## 1 90.12277
+## 2 62.56622
+## 3 90.54175
+## 4 87.00259
+## 5 61.10177
+## 6 83.86110
+## 7 69.28404
+## 8 72.81397
+## 9 47.82355
+## 10 89.91117
+## 11 51.20224
+## 12 84.96020
+## 13 100.12495
+## 14 65.71475
+## 15 92.19781
+## 16 71.52665
+## 17 47.58650
+## 18 94.80028
+## 19 48.06289
+## 20 47.22903
+## 21 71.97148
+## 22 80.90574
+## 23 69.63911
+## 24 53.39208
+## 25 75.15094
+## 26 88.08375
+## 27 63.59659
+## 28 54.92399
+## 29 39.43996
+## 30 74.41598
+## 31 70.57450
+## 32 90.28911
+## 33 68.73865
+## 34 77.46461
+## 35 79.55874
+## 36 49.36791
+## 37 68.62514
+## 38 61.92730
+## 39 105.14063
+## 40 84.37605
+## 41 88.32617
+## 42 72.83367
+## 43 77.49704
+## 44 82.23881
+## 45 63.89380
+## 46 65.48691
+## 47 47.74406
+## 48 80.71828
+## 49 63.38009
+## 50 73.63539
+## 51 94.66302
+## 52 43.62196
+## 53 59.64099
+## 54 82.50441
+## 55 85.41847
+## 56 74.94899
+## 57 51.17241
+## 58 70.09713
+## 59 71.55696
+## 60 62.41766
+## 61 97.80306
+## 62 73.89282
+## 63 85.22152
+## 64 52.41677
+## 65 85.06132
+## 66 76.27287
+## 67 70.44929
+## 68 99.11804
+## 69 71.53525
+## 70 95.80843
+## 71 86.43885
+## 72 87.20852
+## 73 107.33153
+## 74 67.81648
+## 75 73.21547
+## 76 96.33486
+## 77 63.57735
+## 78 87.08566
+## 79 74.49806
+## 80 61.09316
+## 81 65.62750
+## 82 65.62864
+## 83 65.13166
+## 84 77.95485
+## 85 99.13133
+## 86 64.52652
+## 87 67.10931
+## 88 107.66049
+## 89 63.40978
+## 90 89.30227
+## 91 54.83919
+## 92 75.72112
+## 93 94.97915
+## 94 97.86007
+## 95 78.14981
+## 96 108.88606
+## 97 95.63370
+## 98 73.59439
+## 99 63.31810
+## 100 75.17315
+library(dplyr)
+s1 <- filter(s1, score <= 100)
+hist(s1$score)
+s2 <- data.frame(rep(100, 100-NROW(s1)))
+names(s2) <- "score"
+
+s3 <- bind_rows(s1, s2)
+
+s3$studentid <- seq(1, 100, 1)
+s3$score <- round(s3$score)
+interest <- c("sport", "music","nature", "literature")
+s3$interest <- sample(interest, 100, replace = TRUE)
+s3
+## score studentid interest
+## 1 90 1 literature
+## 2 63 2 music
+## 3 91 3 literature
+## 4 87 4 sport
+## 5 61 5 nature
+## 6 84 6 literature
+## 7 69 7 sport
+## 8 73 8 sport
+## 9 48 9 nature
+## 10 90 10 music
+## 11 51 11 literature
+## 12 85 12 literature
+## 13 66 13 nature
+## 14 92 14 nature
+## 15 72 15 sport
+## 16 48 16 sport
+## 17 95 17 sport
+## 18 48 18 sport
+## 19 47 19 literature
+## 20 72 20 sport
+## 21 81 21 nature
+## 22 70 22 literature
+## 23 53 23 music
+## 24 75 24 sport
+## 25 88 25 nature
+## 26 64 26 sport
+## 27 55 27 sport
+## 28 39 28 nature
+## 29 74 29 sport
+## 30 71 30 sport
+## 31 90 31 nature
+## 32 69 32 literature
+## 33 77 33 nature
+## 34 80 34 sport
+## 35 49 35 sport
+## 36 69 36 sport
+## 37 62 37 literature
+## 38 84 38 literature
+## 39 88 39 nature
+## 40 73 40 music
+## 41 77 41 literature
+## 42 82 42 literature
+## 43 64 43 literature
+## 44 65 44 literature
+## 45 48 45 literature
+## 46 81 46 sport
+## 47 63 47 music
+## 48 74 48 music
+## 49 95 49 sport
+## 50 44 50 literature
+## 51 60 51 music
+## 52 83 52 nature
+## 53 85 53 music
+## 54 75 54 music
+## 55 51 55 literature
+## 56 70 56 music
+## 57 72 57 sport
+## 58 62 58 nature
+## 59 98 59 music
+## 60 74 60 music
+## 61 85 61 sport
+## 62 52 62 nature
+## 63 85 63 sport
+## 64 76 64 literature
+## 65 70 65 music
+## 66 99 66 nature
+## 67 72 67 nature
+## 68 96 68 nature
+## 69 86 69 literature
+## 70 87 70 music
+## 71 68 71 literature
+## 72 73 72 sport
+## 73 96 73 music
+## 74 64 74 sport
+## 75 87 75 nature
+## 76 74 76 nature
+## 77 61 77 sport
+## 78 66 78 music
+## 79 66 79 literature
+## 80 65 80 sport
+## 81 78 81 music
+## 82 99 82 nature
+## 83 65 83 music
+## 84 67 84 nature
+## 85 63 85 nature
+## 86 89 86 literature
+## 87 55 87 music
+## 88 76 88 literature
+## 89 95 89 music
+## 90 98 90 music
+## 91 78 91 literature
+## 92 96 92 nature
+## 93 74 93 literature
+## 94 63 94 music
+## 95 75 95 nature
+## 96 100 96 nature
+## 97 100 97 music
+## 98 100 98 sport
+## 99 100 99 nature
+## 100 100 100 literature
+hist(s3$score, breaks = 10, ylim = c(0, 30))
+ 3. Create a new variable that groups the scores according to the breaks in your histogram.
#cut() divides the range of scores into intervals and codes the values in scores according to which interval they fall. We use a vector called `letters` as the labels, `letters` is a vector made up of the letters of the alphabet.
+s3$lables <- cut(s3$score, breaks = 10, labels = letters[1:10])
+library(RColorBrewer)
+#Let's look at the available palettes in RColorBrewer
+
+#The top section of palettes are sequential, the middle section are qualitative, and the lower section are diverging.
+#Make RColorBrewer palette available to R and assign to your bins
+
+#Use named palette in histogram
+brewer.pal(10, "Set3")
+## [1] "#8DD3C7" "#FFFFB3" "#BEBADA" "#FB8072" "#80B1D3" "#FDB462" "#B3DE69"
+## [8] "#FCCDE5" "#D9D9D9" "#BC80BD"
+hist(s3$score, breaks = 10 , ylim = c(0, 30), col = brewer.pal(10, "Set3"), border = FALSE)
+#Make a vector of the colors from RColorBrewer
+head(s3)
+## score studentid interest lables
+## 1 90 1 literature i
+## 2 63 2 music d
+## 3 91 3 literature i
+## 4 87 4 sport h
+## 5 61 5 nature d
+## 6 84 6 literature h
+boxplot(score ~ interest, data = s3)
+brewer.pal(4, "Pastel1")
+## [1] "#FBB4AE" "#B3CDE3" "#CCEBC5" "#DECBE4"
+display.brewer.pal(4, "Pastel1")
+boxplot(score ~ interest, data = s3, col = brewer.pal(4, "Pastel1"), border = "grey")
+ 6. Now simulate a new variable that describes the number of logins that students made to the educational game. They should vary from 1-25.
(s3$logins <- sample(1:25, 100, replace = TRUE))
+## [1] 4 6 16 8 21 6 14 10 19 22 5 3 2 3 4 10 1 21 1 11 19 13 12 24 12
+## [26] 3 12 14 3 4 2 13 1 25 12 11 4 13 7 16 10 3 1 14 5 2 25 6 3 1
+## [51] 17 22 6 3 6 11 17 7 23 15 1 8 5 24 22 13 1 7 17 9 9 20 22 4 7
+## [76] 18 24 9 25 7 16 11 5 21 8 13 24 4 21 7 12 14 16 11 13 11 14 3 19 16
+plot(s3$logins ~ score, data = s3, main = "All About Games", ylab = "logins", pch = 7, col = c("plum2", "mediumturquoise", "darkseagreen1", "lavender"))
+plot(AirPassengers)
+plot(iris)
+cor(iris$Petal.Length,iris$Petal.Width)
+## [1] 0.9628654
+In this repository you will find data describing Swirl activity from the class so far this semester. Please connect RStudio to this repository.
+Insert a new code block
Create a data frame from the swirl-data.csv file called DF1
DF1 <- read.csv("swirl-data.csv", header = TRUE)
+DF1
+## course_name lesson_name question_number
+## 1 R Programming Dates and Times 18
+## 2 R Programming Functions 11
+## 3 R Programming Basic Building Blocks 14
+## 4 R Programming Dates and Times 17
+## 5 R Programming Dates and Times 22
+## 6 R Programming Workspace and Files 5
+## 7 R Programming Functions 9
+## 8 R Programming Dates and Times 15
+## 9 R Programming Dates and Times 14
+## 10 R Programming Dates and Times 16
+## 11 R Programming Basic Building Blocks 15
+## 12 R Programming Vectors 22
+## 13 R Programming Basic Building Blocks 12
+## 14 R Programming Vectors 19
+## 15 R Programming Workspace and Files 6
+## 16 R Programming Subsetting Vectors 31
+## 17 R Programming Dates and Times 20
+## 18 R Programming Subsetting Vectors 23
+## 19 R Programming Vectors 19
+## 20 R Programming Dates and Times 24
+## 21 R Programming Subsetting Vectors 27
+## 22 R Programming Dates and Times 23
+## 23 R Programming Dates and Times 19
+## 24 R Programming Subsetting Vectors 22
+## 25 R Programming Functions 5
+## 26 R Programming Subsetting Vectors 26
+## 27 R Programming Basic Building Blocks 11
+## 28 R Programming Vectors 23
+## 29 R Programming Logic 39
+## 30 R Programming Basic Building Blocks 16
+## 31 R Programming Workspace and Files 8
+## 32 R Programming Workspace and Files 9
+## 33 R Programming Subsetting Vectors 33
+## 34 R Programming Dates and Times 27
+## 35 R Programming Workspace and Files 11
+## 36 R Programming Dates and Times 28
+## 37 R Programming Dates and Times 29
+## 38 R Programming Vectors 18
+## 39 R Programming Subsetting Vectors 29
+## 40 R Programming Subsetting Vectors 30
+## 41 R Programming Basic Building Blocks 10
+## 42 R Programming Dates and Times 38
+## 43 R Programming Dates and Times 39
+## 44 R Programming Basic Building Blocks 17
+## 45 R Programming Subsetting Vectors 32
+## 46 R Programming Logic 43
+## 47 R Programming Workspace and Files 10
+## 48 R Programming Subsetting Vectors 34
+## 49 R Programming Logic 36
+## 50 R Programming Logic 36
+## 51 R Programming Subsetting Vectors 21
+## 52 R Programming Functions 8
+## 53 R Programming Logic 38
+## 54 R Programming Dates and Times 37
+## 55 R Programming Vectors 17
+## 56 R Programming Basic Building Blocks 3
+## 57 R Programming Logic 41
+## 58 R Programming Logic 42
+## 59 R Programming Missing Values 8
+## 60 R Programming Logic 33
+## 61 R Programming Workspace and Files 31
+## 62 R Programming Subsetting Vectors 36
+## 63 R Programming Workspace and Files 14
+## 64 R Programming Workspace and Files 15
+## 65 R Programming Dates and Times 13
+## 66 R Programming Logic 37
+## 67 R Programming Basic Building Blocks 8
+## 68 R Programming Dates and Times 35
+## 69 R Programming Missing Values 4
+## 70 R Programming Missing Values 6
+## 71 R Programming Missing Values 7
+## 72 R Programming Subsetting Vectors 9
+## 73 R Programming Logic 46
+## 74 R Programming Logic 33
+## 75 R Programming Logic 35
+## 76 R Programming Dates and Times 8
+## 77 R Programming Dates and Times 9
+## 78 R Programming Dates and Times 12
+## 79 R Programming Functions 3
+## 80 R Programming Dates and Times 33
+## 81 R Programming Logic 27
+## 82 R Programming Dates and Times 32
+## 83 R Programming Missing Values 3
+## 84 R Programming Workspace and Files 22
+## 85 R Programming Workspace and Files 23
+## 86 R Programming Functions 13
+## 87 R Programming Basic Building Blocks 18
+## 88 R Programming Basic Building Blocks 21
+## 89 R Programming Basic Building Blocks 22
+## 90 R Programming Subsetting Vectors 37
+## 91 R Programming Dates and Times 11
+## 92 R Programming Subsetting Vectors 17
+## 93 R Programming Vectors 8
+## 94 R Programming Vectors 11
+## 95 R Programming Workspace and Files 41
+## 96 R Programming Workspace and Files 42
+## 97 R Programming Functions 52
+## 98 R Programming Logic 28
+## 99 R Programming Workspace and Files 25
+## 100 R Programming Workspace and Files 33
+## 101 R Programming Missing Values 9
+## 102 R Programming Workspace and Files 34
+## 103 R Programming Workspace and Files 35
+## 104 R Programming Subsetting Vectors 38
+## 105 R Programming Workspace and Files 15
+## 106 R Programming Workspace and Files 17
+## 107 R Programming Dates and Times 30
+## 108 R Programming Subsetting Vectors 42
+## 109 R Programming Workspace and Files 19
+## 110 R Programming Workspace and Files 21
+## 111 R Programming Logic 6
+## 112 R Programming Logic 30
+## 113 R Programming Logic 32
+## 114 R Programming Dates and Times 7
+## 115 R Programming Subsetting Vectors 11
+## 116 R Programming Subsetting Vectors 13
+## 117 R Programming Subsetting Vectors 14
+## 118 R Programming Subsetting Vectors 15
+## 119 R Programming Vectors 7
+## 120 R Programming Subsetting Vectors 41
+## 121 R Programming Workspace and Files 40
+## 122 R Programming Missing Values 19
+## 123 R Programming Missing Values 20
+## 124 R Programming Missing Values 21
+## 125 R Programming Logic 7
+## 126 R Programming Logic 9
+## 127 R Programming Vectors 25
+## 128 R Programming Logic 44
+## 129 R Programming Logic 47
+## 130 R Programming Basic Building Blocks 23
+## 131 R Programming Basic Building Blocks 25
+## 132 R Programming Subsetting Vectors 40
+## 133 R Programming Logic 18
+## 134 R Programming Basic Building Blocks 26
+## 135 R Programming Basic Building Blocks 27
+## 136 R Programming Basic Building Blocks 31
+## 137 R Programming Logic 4
+## 138 R Programming Missing Values 22
+## 139 R Programming Missing Values 23
+## 140 R Programming Workspace and Files 27
+## 141 R Programming Workspace and Files 29
+## 142 R Programming Logic 14
+## 143 R Programming Workspace and Files 32
+## 144 R Programming Logic 15
+## 145 R Programming Logic 17
+## 146 R Programming Basic Building Blocks 26
+## 147 R Programming Missing Values 17
+## 148 R Programming Missing Values 18
+## 149 R Programming Logic 20
+## 150 R Programming Logic 21
+## 151 R Programming Functions 32
+## 152 R Programming Functions 34
+## 153 R Programming Subsetting Vectors 5
+## 154 R Programming Subsetting Vectors 10
+## 155 R Programming Dates and Times 5
+## 156 R Programming Functions 16
+## 157 R Programming Vectors 5
+## 158 R Programming Vectors 6
+## 159 R Programming Missing Values 12
+## 160 R Programming Functions 21
+## 161 R Programming Functions 23
+## 162 R Programming Functions 25
+## 163 R Programming Functions 27
+## 164 R Programming Logic 23
+## 165 R Programming Functions 50
+## 166 R Programming Functions 34
+## 167 R Programming Logic 10
+## 168 R Programming Functions 14
+## 169 R Programming Logic 13
+## 170 R Programming Functions 17
+## 171 R Programming Functions 19
+## 172 R Programming Logic 49
+## 173 R Programming Functions 40
+## 174 R Programming Functions 41
+## 175 R Programming Functions 42
+## 176 R Programming Logic 53
+## 177 R Programming Functions 28
+## 178 R Programming Vectors 40
+## 179 R Programming Functions 51
+## 180 R Programming Dates and Times 3
+## 181 R Programming Logic 12
+## 182 R Programming Subsetting Vectors 8
+## 183 R Programming Functions 36
+## 184 R Programming Missing Values 10
+## 185 R Programming Logic 15
+## 186 R Programming Vectors 30
+## 187 R Programming Vectors 32
+## 188 R Programming Vectors 33
+## 189 R Programming Basic Building Blocks 33
+## 190 R Programming Functions 43
+## 191 R Programming Functions 47
+## 192 R Programming Vectors 41
+## 193 R Programming Vectors 29
+## 194 R Programming Dates and Times 4
+## 195 R Programming Functions 35
+## 196 R Programming Vectors 28
+## 197 R Programming Functions 48
+## 198 R Programming Basic Building Blocks 40
+## 199 R Programming Basic Building Blocks 41
+## 200 R Programming Functions 38
+## 201 R Programming Functions 35
+## 202 R Programming Functions 35
+## 203 R Programming Logic 54
+## 204 R Programming Logic 55
+## 205 R Programming Vectors 35
+## 206 R Programming Vectors 39
+## 207 R Programming Functions 35
+## 208 R Programming Subsetting Vectors 3
+## 209 R Programming Basic Building Blocks 36
+## 210 R Programming Basic Building Blocks 38
+## 211 R Programming Basic Building Blocks 39
+## 212 R Programming Vectors 33
+## 213 R Programming Logic 50
+## 214 R Programming Logic 51
+## 215 R Programming Basic Building Blocks 21
+## 216 R Programming Missing Values 10
+## 217 R Programming Missing Values 17
+## 218 R Programming Missing Values 9
+## 219 R Programming Missing Values 9
+## 220 R Programming Basic Building Blocks 18
+## 221 Getting and Cleaning Data Tidying Data with tidyr 6
+## 222 Getting and Cleaning Data Tidying Data with tidyr 8
+## 223 R Programming Missing Values 10
+## 224 R Programming Missing Values 8
+## 225 Getting and Cleaning Data Tidying Data with tidyr 53
+## 226 Getting and Cleaning Data Tidying Data with tidyr 54
+## 227 R Programming Subsetting Vectors 40
+## 228 R Programming Subsetting Vectors 41
+## 229 R Programming Missing Values 12
+## 230 Getting and Cleaning Data Tidying Data with tidyr 15
+## 231 Getting and Cleaning Data Tidying Data with tidyr 11
+## 232 Getting and Cleaning Data Tidying Data with tidyr 54
+## 233 R Programming Missing Values 7
+## 234 Getting and Cleaning Data Tidying Data with tidyr 3
+## 235 R Programming Subsetting Vectors 38
+## 236 R Programming Missing Values 4
+## 237 R Programming Dates and Times 7
+## 238 R Programming Missing Values 23
+## 239 R Programming Subsetting Vectors 3
+## 240 Getting and Cleaning Data Tidying Data with tidyr 54
+## 241 R Programming Dates and Times 8
+## 242 Getting and Cleaning Data Tidying Data with tidyr 12
+## 243 R Programming Dates and Times 9
+## 244 R Programming Missing Values 18
+## 245 R Programming Missing Values 6
+## 246 R Programming Basic Building Blocks 17
+## 247 R Programming Functions 40
+## 248 R Programming Subsetting Vectors 37
+## 249 R Programming Missing Values 3
+## 250 R Programming Looking at Data 17
+## 251 Getting and Cleaning Data Grouping and Chaining with dplyr 54
+## 252 Getting and Cleaning Data Grouping and Chaining with dplyr 55
+## 253 Getting and Cleaning Data Manipulating Data with dplyr 48
+## 254 R Programming Subsetting Vectors 5
+## 255 R Programming Logic 49
+## 256 R Programming Basic Building Blocks 3
+## 257 Getting and Cleaning Data Tidying Data with tidyr 18
+## 258 Getting and Cleaning Data Tidying Data with tidyr 19
+## 259 Getting and Cleaning Data Tidying Data with tidyr 53
+## 260 Getting and Cleaning Data Tidying Data with tidyr 52
+## 261 R Programming Basic Building Blocks 17
+## 262 R Programming Looking at Data 15
+## 263 R Programming Looking at Data 16
+## 264 R Programming Missing Values 21
+## 265 R Programming Missing Values 22
+## 266 Getting and Cleaning Data Tidying Data with tidyr 30
+## 267 R Programming Logic 7
+## 268 R Programming Dates and Times 9
+## 269 R Programming Functions 42
+## 270 R Programming Dates and Times 11
+## 271 R Programming Dates and Times 11
+## 272 R Programming Subsetting Vectors 36
+## 273 R Programming Subsetting Vectors 34
+## 274 Getting and Cleaning Data Tidying Data with tidyr 48
+## 275 R Programming Missing Values 20
+## 276 R Programming Missing Values 20
+## 277 R Programming Basic Building Blocks 17
+## 278 R Programming Functions 38
+## 279 R Programming Logic 6
+## 280 Getting and Cleaning Data Tidying Data with tidyr 28
+## 281 R Programming Functions 41
+## 282 Getting and Cleaning Data Grouping and Chaining with dplyr 35
+## 283 R Programming Functions 42
+## 284 Getting and Cleaning Data Tidying Data with tidyr 56
+## 285 R Programming Dates and Times 12
+## 286 R Programming Missing Values 19
+## 287 R Programming Subsetting Vectors 33
+## 288 R Programming Basic Building Blocks 15
+## 289 R Programming Basic Building Blocks 16
+## 290 Getting and Cleaning Data Tidying Data with tidyr 21
+## 291 Getting and Cleaning Data Tidying Data with tidyr 24
+## 292 Getting and Cleaning Data Tidying Data with tidyr 25
+## 293 R Programming Dates and Times 4
+## 294 Getting and Cleaning Data Tidying Data with tidyr 30
+## 295 R Programming Logic 9
+## 296 R Programming Subsetting Vectors 26
+## 297 R Programming Logic 12
+## 298 Getting and Cleaning Data Tidying Data with tidyr 57
+## 299 Getting and Cleaning Data Tidying Data with tidyr 58
+## 300 Getting and Cleaning Data Tidying Data with tidyr 20
+## 301 Getting and Cleaning Data Tidying Data with tidyr 20
+## 302 R Programming Dates and Times 15
+## 303 Getting and Cleaning Data Tidying Data with tidyr 47
+## 304 R Programming Functions 36
+## 305 R Programming Logic 4
+## 306 R Programming Workspace and Files 34
+## 307 R Programming Dates and Times 5
+## 308 Getting and Cleaning Data Tidying Data with tidyr 29
+## 309 R Programming Logic 10
+## 310 R Programming Subsetting Vectors 8
+## 311 R Programming Workspace and Files 22
+## 312 R Programming Workspace and Files 23
+## 313 R Programming Workspace and Files 25
+## 314 R Programming Basic Building Blocks 14
+## 315 R Programming Subsetting Vectors 32
+## 316 R Programming Workspace and Files 31
+## 317 R Programming Workspace and Files 32
+## 318 R Programming Workspace and Files 33
+## 319 Getting and Cleaning Data Grouping and Chaining with dplyr 32
+## 320 R Programming Workspace and Files 35
+## 321 Getting and Cleaning Data Grouping and Chaining with dplyr 34
+## 322 R Programming Subsetting Vectors 23
+## 323 R Programming Logic 44
+## 324 R Programming Basic Building Blocks 8
+## 325 R Programming Basic Building Blocks 10
+## 326 R Programming Basic Building Blocks 11
+## 327 R Programming Dates and Times 13
+## 328 R Programming Dates and Times 14
+## 329 R Programming Logic 53
+## 330 R Programming Vectors 19
+## 331 R Programming Logic 55
+## 332 R Programming Dates and Times 3
+## 333 R Programming Looking at Data 11
+## 334 R Programming Workspace and Files 14
+## 335 R Programming Workspace and Files 15
+## 336 Getting and Cleaning Data Manipulating Data with dplyr 48
+## 337 Getting and Cleaning Data Manipulating Data with dplyr 49
+## 338 Getting and Cleaning Data Manipulating Data with dplyr 50
+## 339 R Programming Basic Building Blocks 22
+## 340 R Programming Basic Building Blocks 12
+## 341 R Programming Logic 51
+## 342 R Programming Basic Building Blocks 26
+## 343 R Programming Logic 54
+## 344 R Programming Basic Building Blocks 31
+## 345 R Programming Basic Building Blocks 33
+## 346 R Programming Basic Building Blocks 36
+## 347 R Programming Basic Building Blocks 36
+## 348 R Programming Workspace and Files 40
+## 349 Getting and Cleaning Data Tidying Data with tidyr 30
+## 350 R Programming Basic Building Blocks 40
+## 351 R Programming Basic Building Blocks 41
+## 352 R Programming Subsetting Vectors 9
+## 353 R Programming Basic Building Blocks 23
+## 354 R Programming Basic Building Blocks 25
+## 355 R Programming Vectors 11
+## 356 R Programming Basic Building Blocks 27
+## 357 R Programming Vectors 18
+## 358 Getting and Cleaning Data Grouping and Chaining with dplyr 27
+## 359 Getting and Cleaning Data Grouping and Chaining with dplyr 31
+## 360 Getting and Cleaning Data Grouping and Chaining with dplyr 33
+## 361 R Programming Logic 42
+## 362 R Programming Logic 43
+## 363 Getting and Cleaning Data Tidying Data with tidyr 34
+## 364 R Programming Logic 46
+## 365 R Programming Logic 47
+## 366 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 367 R Programming Logic 50
+## 368 R Programming Subsetting Vectors 31
+## 369 R Programming Subsetting Vectors 32
+## 370 R Programming Functions 35
+## 371 R Programming Functions 35
+## 372 R Programming Looking at Data 13
+## 373 R Programming Workspace and Files 11
+## 374 R Programming Vectors 41
+## 375 Getting and Cleaning Data Manipulating Data with dplyr 47
+## 376 R Programming Workspace and Files 15
+## 377 R Programming Looking at Data 20
+## 378 R Programming Looking at Data 22
+## 379 R Programming Functions 42
+## 380 R Programming Functions 43
+## 381 R Programming Functions 47
+## 382 R Programming Functions 47
+## 383 R Programming Functions 48
+## 384 R Programming Functions 48
+## 385 R Programming Functions 50
+## 386 R Programming Functions 51
+## 387 R Programming Functions 52
+## 388 R Programming Basic Building Blocks 36
+## 389 R Programming Basic Building Blocks 39
+## 390 R Programming Workspace and Files 42
+## 391 R Programming Vectors 5
+## 392 R Programming Vectors 6
+## 393 R Programming Vectors 7
+## 394 R Programming Vectors 8
+## 395 R Programming Subsetting Vectors 11
+## 396 R Programming Vectors 17
+## 397 R Programming Subsetting Vectors 14
+## 398 R Programming Subsetting Vectors 15
+## 399 R Programming Subsetting Vectors 17
+## 400 R Programming Logic 42
+## 401 R Programming Subsetting Vectors 21
+## 402 R Programming Subsetting Vectors 22
+## 403 R Programming Matrices and Data Frames 6
+## 404 Getting and Cleaning Data Tidying Data with tidyr 37
+## 405 R Programming Subsetting Vectors 27
+## 406 R Programming Subsetting Vectors 29
+## 407 R Programming Subsetting Vectors 30
+## 408 R Programming Workspace and Files 5
+## 409 R Programming Workspace and Files 6
+## 410 R Programming Workspace and Files 8
+## 411 R Programming Workspace and Files 9
+## 412 R Programming Workspace and Files 10
+## 413 R Programming Vectors 40
+## 414 R Programming Matrices and Data Frames 21
+## 415 R Programming Matrices and Data Frames 22
+## 416 R Programming Matrices and Data Frames 26
+## 417 R Programming Workspace and Files 17
+## 418 R Programming Workspace and Files 19
+## 419 R Programming Workspace and Files 21
+## 420 Getting and Cleaning Data Tidying Data with tidyr 19
+## 421 Getting and Cleaning Data Tidying Data with tidyr 20
+## 422 Getting and Cleaning Data Tidying Data with tidyr 21
+## 423 R Programming Workspace and Files 27
+## 424 R Programming Workspace and Files 29
+## 425 Getting and Cleaning Data Tidying Data with tidyr 28
+## 426 Getting and Cleaning Data Tidying Data with tidyr 29
+## 427 Getting and Cleaning Data Tidying Data with tidyr 30
+## 428 Getting and Cleaning Data Tidying Data with tidyr 30
+## 429 R Programming Basic Building Blocks 36
+## 430 R Programming Basic Building Blocks 38
+## 431 R Programming Dates and Times 20
+## 432 R Programming Dates and Times 22
+## 433 Getting and Cleaning Data Tidying Data with tidyr 30
+## 434 R Programming Subsetting Vectors 10
+## 435 Getting and Cleaning Data Grouping and Chaining with dplyr 22
+## 436 R Programming Subsetting Vectors 13
+## 437 Getting and Cleaning Data Grouping and Chaining with dplyr 25
+## 438 Getting and Cleaning Data Grouping and Chaining with dplyr 26
+## 439 Getting and Cleaning Data Tidying Data with tidyr 46
+## 440 R Programming Subsetting Vectors 21
+## 441 R Programming Vectors 22
+## 442 R Programming Vectors 23
+## 443 R Programming Vectors 25
+## 444 R Programming Vectors 28
+## 445 R Programming Vectors 29
+## 446 R Programming Vectors 30
+## 447 R Programming Vectors 30
+## 448 R Programming Vectors 32
+## 449 R Programming Vectors 33
+## 450 R Programming Vectors 33
+## 451 R Programming Vectors 35
+## 452 R Programming Vectors 39
+## 453 Getting and Cleaning Data Tidying Data with tidyr 46
+## 454 Getting and Cleaning Data Grouping and Chaining with dplyr 51
+## 455 Getting and Cleaning Data Grouping and Chaining with dplyr 53
+## 456 Getting and Cleaning Data Tidying Data with tidyr 6
+## 457 R Programming Matrices and Data Frames 27
+## 458 R Programming Matrices and Data Frames 30
+## 459 R Programming Matrices and Data Frames 33
+## 460 Getting and Cleaning Data Manipulating Data with dplyr 53
+## 461 Getting and Cleaning Data Manipulating Data with dplyr 55
+## 462 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 463 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 464 Getting and Cleaning Data Manipulating Data with dplyr 57
+## 465 Getting and Cleaning Data Manipulating Data with dplyr 57
+## 466 Getting and Cleaning Data Manipulating Data with dplyr 61
+## 467 R Programming Dates and Times 16
+## 468 R Programming Dates and Times 16
+## 469 Getting and Cleaning Data Tidying Data with tidyr 31
+## 470 R Programming Workspace and Files 41
+## 471 Getting and Cleaning Data Grouping and Chaining with dplyr 16
+## 472 Getting and Cleaning Data Grouping and Chaining with dplyr 16
+## 473 Getting and Cleaning Data Grouping and Chaining with dplyr 17
+## 474 Getting and Cleaning Data Grouping and Chaining with dplyr 21
+## 475 R Programming Dates and Times 23
+## 476 Getting and Cleaning Data Grouping and Chaining with dplyr 23
+## 477 Getting and Cleaning Data Tidying Data with tidyr 30
+## 478 Getting and Cleaning Data Tidying Data with tidyr 30
+## 479 Getting and Cleaning Data Tidying Data with tidyr 30
+## 480 Getting and Cleaning Data Tidying Data with tidyr 47
+## 481 Getting and Cleaning Data Tidying Data with tidyr 32
+## 482 Getting and Cleaning Data Tidying Data with tidyr 33
+## 483 Getting and Cleaning Data Tidying Data with tidyr 33
+## 484 R Programming Dates and Times 38
+## 485 R Programming Dates and Times 39
+## 486 R Programming Functions 23
+## 487 R Programming Functions 25
+## 488 R Programming Functions 27
+## 489 R Programming Functions 28
+## 490 R Programming Functions 32
+## 491 R Programming Functions 34
+## 492 R Programming Functions 34
+## 493 R Programming Matrices and Data Frames 18
+## 494 R Programming Looking at Data 10
+## 495 Getting and Cleaning Data Tidying Data with tidyr 3
+## 496 Getting and Cleaning Data Manipulating Data with dplyr 46
+## 497 Getting and Cleaning Data Tidying Data with tidyr 8
+## 498 Getting and Cleaning Data Tidying Data with tidyr 11
+## 499 Getting and Cleaning Data Tidying Data with tidyr 12
+## 500 R Programming Looking at Data 26
+## 501 R Programming Subsetting Vectors 42
+## 502 R Programming Looking at Data 28
+## 503 Exploratory_Data_Analysis Plotting_Systems 5
+## 504 Exploratory_Data_Analysis Plotting_Systems 7
+## 505 Exploratory_Data_Analysis Plotting_Systems 9
+## 506 Exploratory_Data_Analysis Plotting_Systems 9
+## 507 Exploratory_Data_Analysis Plotting_Systems 11
+## 508 Exploratory_Data_Analysis Plotting_Systems 16
+## 509 R Programming Dates and Times 17
+## 510 R Programming Dates and Times 18
+## 511 R Programming Dates and Times 19
+## 512 Getting and Cleaning Data Tidying Data with tidyr 33
+## 513 Getting and Cleaning Data Tidying Data with tidyr 33
+## 514 Getting and Cleaning Data Tidying Data with tidyr 34
+## 515 Exploratory_Data_Analysis Plotting_Systems 27
+## 516 Getting and Cleaning Data Tidying Data with tidyr 30
+## 517 Getting and Cleaning Data Tidying Data with tidyr 39
+## 518 Exploratory_Data_Analysis Plotting_Systems 28
+## 519 Exploratory_Data_Analysis Plotting_Systems 31
+## 520 Getting and Cleaning Data Tidying Data with tidyr 31
+## 521 R Programming Matrices and Data Frames 3
+## 522 R Programming Matrices and Data Frames 4
+## 523 R Programming Matrices and Data Frames 5
+## 524 Exploratory_Data_Analysis Plotting_Systems 35
+## 525 R Programming Matrices and Data Frames 7
+## 526 R Programming Matrices and Data Frames 9
+## 527 R Programming Matrices and Data Frames 10
+## 528 R Programming Matrices and Data Frames 12
+## 529 R Programming Matrices and Data Frames 13
+## 530 R Programming Matrices and Data Frames 14
+## 531 R Programming Matrices and Data Frames 16
+## 532 R Programming Matrices and Data Frames 17
+## 533 Getting and Cleaning Data Grouping and Chaining with dplyr 50
+## 534 Getting and Cleaning Data Manipulating Data with dplyr 44
+## 535 Getting and Cleaning Data Manipulating Data with dplyr 45
+## 536 Getting and Cleaning Data Grouping and Chaining with dplyr 10
+## 537 Getting and Cleaning Data Grouping and Chaining with dplyr 11
+## 538 Getting and Cleaning Data Tidying Data with tidyr 32
+## 539 Exploratory_Data_Analysis Plotting_Systems 19
+## 540 R Programming Matrices and Data Frames 34
+## 541 R Programming Logic 13
+## 542 R Programming Logic 14
+## 543 Getting and Cleaning Data Grouping and Chaining with dplyr 5
+## 544 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 545 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 546 Getting and Cleaning Data Grouping and Chaining with dplyr 7
+## 547 Getting and Cleaning Data Grouping and Chaining with dplyr 8
+## 548 Getting and Cleaning Data Grouping and Chaining with dplyr 9
+## 549 R Programming Matrices and Data Frames 34
+## 550 R Programming Matrices and Data Frames 35
+## 551 R Programming Matrices and Data Frames 37
+## 552 R Programming Matrices and Data Frames 38
+## 553 Exploratory_Data_Analysis Plotting_Systems 19
+## 554 Exploratory_Data_Analysis Plotting_Systems 20
+## 555 Getting and Cleaning Data Tidying Data with tidyr 37
+## 556 Getting and Cleaning Data Tidying Data with tidyr 38
+## 557 R Programming Dates and Times 24
+## 558 Getting and Cleaning Data Tidying Data with tidyr 42
+## 559 Getting and Cleaning Data Tidying Data with tidyr 43
+## 560 R Programming Matrices and Data Frames 30
+## 561 R Programming Matrices and Data Frames 33
+## 562 R Programming Logic 20
+## 563 Getting and Cleaning Data Manipulating Data with dplyr 62
+## 564 Getting and Cleaning Data Manipulating Data with dplyr 63
+## 565 Exploratory_Data_Analysis Plotting_Systems 17
+## 566 R Programming Matrices and Data Frames 39
+## 567 Getting and Cleaning Data Grouping and Chaining with dplyr 39
+## 568 Getting and Cleaning Data Grouping and Chaining with dplyr 42
+## 569 Getting and Cleaning Data Grouping and Chaining with dplyr 43
+## 570 Getting and Cleaning Data Grouping and Chaining with dplyr 45
+## 571 Getting and Cleaning Data Grouping and Chaining with dplyr 48
+## 572 Getting and Cleaning Data Grouping and Chaining with dplyr 49
+## 573 Getting and Cleaning Data Tidying Data with tidyr 46
+## 574 R Programming Looking at Data 9
+## 575 R Programming Dates and Times 30
+## 576 R Programming Dates and Times 32
+## 577 R Programming Dates and Times 33
+## 578 R Programming Dates and Times 35
+## 579 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 580 Getting and Cleaning Data Tidying Data with tidyr 15
+## 581 Getting and Cleaning Data Tidying Data with tidyr 18
+## 582 R Programming Looking at Data 27
+## 583 R Programming Matrices and Data Frames 34
+## 584 R Programming Logic 15
+## 585 R Programming Logic 15
+## 586 R Programming Logic 17
+## 587 R Programming Logic 18
+## 588 Getting and Cleaning Data Tidying Data with tidyr 24
+## 589 Getting and Cleaning Data Tidying Data with tidyr 25
+## 590 R Programming Logic 21
+## 591 R Programming Logic 23
+## 592 R Programming Dates and Times 37
+## 593 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 594 R Programming Matrices and Data Frames 16
+## 595 Exploratory_Data_Analysis Plotting_Systems 21
+## 596 Exploratory_Data_Analysis Plotting_Systems 25
+## 597 Exploratory_Data_Analysis Plotting_Systems 26
+## 598 R Programming Dates and Times 27
+## 599 R Programming Dates and Times 28
+## 600 R Programming Dates and Times 29
+## 601 R Programming Matrices and Data Frames 27
+## 602 Exploratory_Data_Analysis Plotting_Systems 32
+## 603 R Programming Matrices and Data Frames 3
+## 604 Exploratory_Data_Analysis Plotting_Systems 33
+## 605 R Programming Logic 27
+## 606 R Programming Functions 19
+## 607 R Programming Functions 21
+## 608 Getting and Cleaning Data Tidying Data with tidyr 38
+## 609 Getting and Cleaning Data Tidying Data with tidyr 38
+## 610 Getting and Cleaning Data Tidying Data with tidyr 39
+## 611 Getting and Cleaning Data Tidying Data with tidyr 42
+## 612 Getting and Cleaning Data Tidying Data with tidyr 43
+## 613 Getting and Cleaning Data Manipulating Data with dplyr 41
+## 614 R Programming Looking at Data 8
+## 615 R Programming Matrices and Data Frames 37
+## 616 R Programming Matrices and Data Frames 4
+## 617 R Programming Matrices and Data Frames 6
+## 618 Exploratory_Data_Analysis Plotting_Systems 34
+## 619 R Programming Matrices and Data Frames 10
+## 620 R Programming Matrices and Data Frames 12
+## 621 R Programming Matrices and Data Frames 13
+## 622 Getting and Cleaning Data Tidying Data with tidyr 18
+## 623 R Programming Matrices and Data Frames 18
+## 624 R Programming Matrices and Data Frames 21
+## 625 R Programming Matrices and Data Frames 35
+## 626 R Programming Matrices and Data Frames 3
+## 627 R Programming Functions 3
+## 628 R Programming Functions 3
+## 629 R Programming Logic 38
+## 630 R Programming Logic 39
+## 631 R Programming Matrices and Data Frames 7
+## 632 Getting and Cleaning Data Manipulating Data with dplyr 30
+## 633 Exploratory_Data_Analysis Plotting_Systems 36
+## 634 Exploratory_Data_Analysis Plotting_Systems 36
+## 635 R Programming Matrices and Data Frames 17
+## 636 Exploratory_Data_Analysis Plotting_Systems 39
+## 637 Exploratory_Data_Analysis Plotting_Systems 40
+## 638 R Programming Matrices and Data Frames 22
+## 639 R Programming Matrices and Data Frames 26
+## 640 R Programming Looking at Data 6
+## 641 R Programming Logic 36
+## 642 R Programming Logic 37
+## 643 R Programming Functions 5
+## 644 R Programming Logic 41
+## 645 R Programming Matrices and Data Frames 9
+## 646 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 647 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 648 Exploratory_Data_Analysis Plotting_Systems 38
+## 649 R Programming Matrices and Data Frames 14
+## 650 R Programming Logic 32
+## 651 Getting and Cleaning Data Manipulating Data with dplyr 39
+## 652 Getting and Cleaning Data Manipulating Data with dplyr 40
+## 653 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 654 Getting and Cleaning Data Tidying Data with tidyr 58
+## 655 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 656 Getting and Cleaning Data Manipulating Data with dplyr 18
+## 657 R Programming Matrices and Data Frames 5
+## 658 Getting and Cleaning Data Manipulating Data with dplyr 28
+## 659 R Programming Functions 13
+## 660 Getting and Cleaning Data Manipulating Data with dplyr 33
+## 661 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 662 Getting and Cleaning Data Manipulating Data with dplyr 35
+## 663 Getting and Cleaning Data Manipulating Data with dplyr 36
+## 664 R Programming Logic 33
+## 665 R Programming Logic 35
+## 666 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 667 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 668 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 669 Getting and Cleaning Data Manipulating Data with dplyr 27
+## 670 R Programming Functions 8
+## 671 R Programming Functions 16
+## 672 R Programming Logic 28
+## 673 Getting and Cleaning Data Tidying Data with tidyr 57
+## 674 Getting and Cleaning Data Manipulating Data with dplyr 34
+## 675 Getting and Cleaning Data Tidying Data with tidyr 56
+## 676 R Programming Functions 9
+## 677 R Programming Functions 11
+## 678 R Programming Looking at Data 4
+## 679 R Programming Logic 38
+## 680 Getting and Cleaning Data Tidying Data with tidyr 48
+## 681 R Programming Functions 17
+## 682 Getting and Cleaning Data Manipulating Data with dplyr 26
+## 683 R Programming Functions 14
+## 684 Getting and Cleaning Data Manipulating Data with dplyr 24
+## 685 R Programming Matrices and Data Frames 38
+## 686 R Programming Logic 30
+## 687 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 688 R Programming Looking at Data 3
+## 689 R Programming Matrices and Data Frames 39
+## 690 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 691 Getting and Cleaning Data Tidying Data with tidyr 53
+## 692 Getting and Cleaning Data Tidying Data with tidyr 52
+## 693 Getting and Cleaning Data Tidying Data with tidyr 54
+## 694 Getting and Cleaning Data Manipulating Data with dplyr 22
+## 695 R Programming Logic 38
+## 696 Getting and Cleaning Data Manipulating Data with dplyr 25
+## 697 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 698 NA
+## 699 R Programming Matrices and Data Frames 21
+## 700 R Programming Basic Building Blocks 22
+## 701 R Programming Basic Building Blocks 25
+## 702 R Programming Dates and Times 4
+## 703 R Programming Basic Building Blocks 27
+## 704 R Programming Basic Building Blocks 23
+## 705 R Programming Basic Building Blocks 26
+## 706 R Programming Functions 5
+## 707 R Programming Basic Building Blocks 18
+## 708 R Programming Basic Building Blocks 21
+## 709 R Programming Dates and Times 3
+## 710 R Programming Vectors 6
+## 711 R Programming Vectors 7
+## 712 R Programming Vectors 7
+## 713 R Programming Vectors 5
+## 714 R Programming Vectors 11
+## 715 R Programming Vectors 17
+## 716 R Programming Vectors 18
+## 717 R Programming Basic Building Blocks 15
+## 718 R Programming Basic Building Blocks 16
+## 719 R Programming Basic Building Blocks 17
+## 720 R Programming Functions 3
+## 721 R Programming Workspace and Files 25
+## 722 R NA
+## 723 R Programming Dates and Times 17
+## 724 R Programming Functions 8
+## 725 R Programming Subsetting Vectors 3
+## 726 R Programming Vectors 8
+## 727 R Programming Basic Building Blocks 3
+## 728 R Programming Basic Building Blocks 8
+## 729 R Programming Basic Building Blocks 10
+## 730 R Programming Basic Building Blocks 11
+## 731 R Programming Basic Building Blocks 12
+## 732 R Programming Basic Building Blocks 14
+## 733 R Programming Functions 13
+## 734 R Programming Functions 14
+## 735 R Programming Functions 16
+## 736 R Programming Workspace and Files 23
+## 737 R Programming Dates and Times 18
+## 738 R Programming Dates and Times 19
+## 739 R Programming Dates and Times 20
+## 740 R Programming Dates and Times 22
+## 741 R Programming Vectors 11
+## 742 R Programming Vectors 17
+## 743 R Programming Vectors 18
+## 744 R Programming Vectors 19
+## 745 R Programming Dates and Times 12
+## 746 R Programming Dates and Times 13
+## 747 R Programming Matrices and Data Frames 18
+## 748 R Programming Workspace and Files 22
+## 749 R Programming Dates and Times 16
+## 750 R Programming Logic 9
+## 751 R Programming Logic 10
+## 752 R Programming Functions 9
+## 753 R Programming Dates and Times 5
+## 754 R Programming Dates and Times 7
+## 755 R Programming Dates and Times 8
+## 756 R Programming Dates and Times 9
+## 757 R Programming Dates and Times 11
+## 758 R Programming Logic 15
+## 759 R Programming Vectors 18
+## 760 R Programming Dates and Times 14
+## 761 R Programming Dates and Times 15
+## 762 R Programming Functions 13
+## 763 R Programming Functions 13
+## 764 R Programming Missing Values 7
+## 765 R Programming Logic 12
+## 766 R Programming Logic 12
+## 767 R Programming Logic 13
+## 768 R Programming Logic 14
+## 769 R Programming Logic 15
+## 770 R Programming Logic 15
+## 771 R Programming Vectors 33
+## 772 R Programming Matrices and Data Frames 16
+## 773 R Programming Matrices and Data Frames 17
+## 774 R Programming Workspace and Files 21
+## 775 R Programming Vectors 28
+## 776 R Programming Vectors 29
+## 777 R Programming Vectors 30
+## 778 R Programming Missing Values 8
+## 779 R Programming Missing Values 9
+## 780 R Programming Functions 11
+## 781 R Programming Functions 13
+## 782 R Programming Functions 13
+## 783 R Programming Functions 13
+## 784 R Programming Functions 13
+## 785 R Programming Functions 13
+## 786 R Programming Functions 13
+## 787 R Programming Functions 13
+## 788 R Programming Missing Values 3
+## 789 R Programming Missing Values 4
+## 790 R Programming Missing Values 6
+## 791 R Programming Vectors 32
+## 792 R Programming Vectors 33
+## 793 R Programming Vectors 5
+## 794 R Programming Functions 16
+## 795 R Programming Basic Building Blocks 3
+## 796 R Programming Basic Building Blocks 8
+## 797 R Programming Basic Building Blocks 10
+## 798 R Programming Basic Building Blocks 11
+## 799 R Programming Basic Building Blocks 12
+## 800 R Programming Vectors 25
+## 801 R Programming Basic Building Blocks 14
+## 802 R Programming Basic Building Blocks 15
+## 803 R Programming Basic Building Blocks 16
+## 804 R Programming Logic 7
+## 805 R Programming Subsetting Vectors 14
+## 806 R Programming Vectors 35
+## 807 R Programming Vectors 35
+## 808 R Programming Vectors 35
+## 809 R Programming Vectors 32
+## 810 R Programming Vectors 33
+## 811 R Programming Matrices and Data Frames 14
+## 812 R Programming Basic Building Blocks NA
+## 813 R Programming Workspace and Files 19
+## 814 R Programming Basic Building Blocks 22
+## 815 R Programming Logic 4
+## 816 R Programming Logic 6
+## 817 R Programming Vectors 19
+## 818 R Programming Vectors 22
+## 819 R Programming Subsetting Vectors 15
+## 820 R Programming Missing Values 10
+## 821 R Programming Subsetting Vectors 5
+## 822 R Programming Subsetting Vectors 8
+## 823 R Programming Subsetting Vectors 8
+## 824 R Programming Subsetting Vectors 8
+## 825 R Programming Subsetting Vectors 8
+## 826 R Programming Subsetting Vectors 9
+## 827 R Programming Logic 27
+## 828 R Programming Workspace and Files 5
+## 829 R Programming Workspace and Files 6
+## 830 R Programming Logic 7
+## 831 R Programming Subsetting Vectors 13
+## 832 R Programming Vectors 23
+## 833 R Programming Vectors 25
+## 834 R Programming Missing Values 12
+## 835 R Programming Missing Values 17
+## 836 R Programming Missing Values 18
+## 837 R Programming Missing Values 19
+## 838 R Programming Missing Values 20
+## 839 R Programming Missing Values 21
+## 840 R Programming Workspace and Files 9
+## 841 R Programming Workspace and Files 10
+## 842 R Programming Workspace and Files 11
+## 843 R Programming Workspace and Files 8
+## 844 R Programming Vectors 29
+## 845 R Programming Vectors 30
+## 846 R Programming Matrices and Data Frames 13
+## 847 R Programming Vectors 28
+## 848 R Programming Workspace and Files 17
+## 849 R Programming Subsetting Vectors 11
+## 850 R Programming Vectors 23
+## 851 R Programming Basic Building Blocks 25
+## 852 R Programming Subsetting Vectors 10
+## 853 R Programming Subsetting Vectors 21
+## 854 R Programming Vectors 6
+## 855 R Programming Matrices and Data Frames 3
+## 856 R Programming Subsetting Vectors 17
+## 857 R Programming Workspace and Files 15
+## 858 R Programming Vectors 22
+## 859 R Programming Vectors 7
+## 860 R Programming Vectors 8
+## 861 R Programming Missing Values 22
+## 862 R Programming Matrices and Data Frames 7
+## 863 R Programming Missing Values 23
+## 864 R Programming Logic 17
+## 865 R Programming Matrices and Data Frames 6
+## 866 R P NA
+## 867 R Programming Matrices and Data Frames 9
+## 868 R Programming Matrices and Data Frames 10
+## 869 R Programming Basic Building Blocks 23
+## 870 R Programming Matrices and Data Frames 3
+## 871 R Programming Basic Building Blocks 17
+## 872 R Programming Basic Building Blocks 18
+## 873 R Programming Subsetting Vectors 21
+## 874 R Programming Subsetting Vectors 21
+## 875 R Programming Matrices and Data Frames 12
+## 876 R Programming Logic 20
+## 877 R Programming Matrices and Data Frames 4
+## 878 R Programming Basic Building Blocks 21
+## 879 R Programming Logic 18
+## 880 R Programming Workspace and Files 15
+## 881 R Programming Logic 23
+## 882 R Programming Basic Building Blocks 21
+## 883 R Programming Workspace and Files 14
+## 884 R Programming Workspace and Files 14
+## 885 R Programming Matrices and Data Frames 5
+## 886 R Programming Logic 21
+## 887 R Programming Dates and Times 17
+## 888 R Programming Basic Building Blocks 21
+## 889 R Programming Dates and Times 18
+## 890 R Programming Basic Building Blocks 21
+## 891 R Programming Dates and Times 11
+## 892 R Programming Subsetting Vectors 33
+## 893 R Programming Subsetting Vectors 34
+## 894 R Programming Subsetting Vectors 36
+## 895 R Programming Basic Building Blocks 18
+## 896 R Programming Subsetting Vectors 15
+## 897 R Programming Basic Building Blocks 17
+## 898 R Programming Dates and Times 9
+## 899 R Programming Workspace and Files 19
+## 900 R Programming Subsetting Vectors 41
+## 901 R Programming Workspace and Files 15
+## 902 R Programming Functions 50
+## 903 R Programming Dates and Times 12
+## 904 R Programming Subsetting Vectors 32
+## 905 R Programming Basic Building Blocks 16
+## 906 R Programming Missing Values 7
+## 907 R Programming Dates and Times 16
+## 908 R Programming Dates and Times 16
+## 909 R Programming Vectors 17
+## 910 R Programming Vectors 18
+## 911 R Programming Dates and Times 19
+## 912 R Programming Subsetting Vectors 37
+## 913 R Programming Subsetting Vectors 38
+## 914 R Programming Subsetting Vectors 42
+## 915 R Programming Logic 4
+## 916 R Programming Dates and Times 8
+## 917 R Programming Subsetting Vectors 31
+## 918 R Programming Functions 48
+## 919 R Programming Dates and Times 15
+## 920 R Programming Logic 37
+## 921 R Programming Logic 38
+## 922 R Programming Workspace and Files 14
+## 923 R Programming Workspace and Files 15
+## 924 R Programming Vectors 18
+## 925 R Programming Workspace and Files 17
+## 926 R Programming Subsetting Vectors 13
+## 927 R Programming Subsetting Vectors 40
+## 928 R Programming Dates and Times 7
+## 929 R Programming Logic 20
+## 930 R Programming Workspace and Files 6
+## 931 R Programming Workspace and Files 8
+## 932 R Programming Basic Building Blocks 15
+## 933 R Programming Dates and Times 14
+## 934 R Programming Workspace and Files 14
+## 935 R Programming Subsetting Vectors 14
+## 936 R Programming Logic 30
+## 937 R Programming Functions 16
+## 938 R Programming Subsetting Vectors 21
+## 939 R Programming Subsetting Vectors 22
+## 940 R Programming Workspace and Files 21
+## 941 R Programming Dates and Times 20
+## 942 R Programming Subsetting Vectors 26
+## 943 R Programming Subsetting Vectors 27
+## 944 R Programming Subsetting Vectors 29
+## 945 R Programming Dates and Times 13
+## 946 R Programming Functions 47
+## 947 R Programming Missing Values 6
+## 948 R Programming Functions 8
+## 949 R Programming Functions 8
+## 950 R Programming Missing Values 8
+## 951 R Programming Missing Values 9
+## 952 R Programming Vectors 19
+## 953 R Programming Dates and Times 3
+## 954 R Programming Dates and Times 4
+## 955 R Programming Dates and Times 5
+## 956 R Programming Basic Building Blocks 25
+## 957 R Programming Workspace and Files 5
+## 958 R Programming Subsetting Vectors 30
+## 959 R Programming Basic Building Blocks 33
+## 960 R Programming Logic 6
+## 961 R Programming Logic 7
+## 962 R Programming Logic 9
+## 963 R Programming Logic 9
+## 964 R Programming Logic 10
+## 965 R Programming Logic 12
+## 966 R Programming Logic 13
+## 967 R Programming Logic 14
+## 968 R Programming Subsetting Vectors 13
+## 969 R Programming Dates and Times 22
+## 970 R Programming Dates and Times 23
+## 971 R Programming Basic Building Blocks 31
+## 972 R Programming Subsetting Vectors 13
+## 973 R Programming Subsetting Vectors 13
+## 974 R Programming Subsetting Vectors 13
+## 975 R Programming Subsetting Vectors 13
+## 976 R Programming Workspace and Files 32
+## 977 R Programming Workspace and Files 33
+## 978 R Programming Subsetting Vectors 17
+## 979 R Programming Workspace and Files 35
+## 980 R Programming Basic Building Blocks 3
+## 981 R Programming Subsetting Vectors 23
+## 982 R Programming Vectors 7
+## 983 R Programming Vectors 8
+## 984 R Programming Vectors 11
+## 985 R Programming Basic Building Blocks 14
+## 986 R Programming Logic 36
+## 987 R Programming Functions 5
+## 988 R Programming Missing Values 3
+## 989 R Programming Basic Building Blocks 39
+## 990 R Programming Logic 39
+## 991 R Programming Logic 41
+## 992 R Programming Functions 51
+## 993 R Programming Basic Building Blocks 22
+## 994 R Programming Basic Building Blocks 22
+## 995 R Programming Basic Building Blocks 23
+## 996 R Programming Missing Values 19
+## 997 R Programming Basic Building Blocks 27
+## 998 R Programming Missing Values 21
+## 999 R Programming Missing Values 22
+## 1000 R Programming Basic Building Blocks 36
+## 1001 R Programming Basic Building Blocks 38
+## 1002 R Programming Workspace and Files 31
+## 1003 R Programming Basic Building Blocks 40
+## 1004 R Programming Basic Building Blocks 41
+## 1005 R Programming Functions 13
+## 1006 R Programming Functions 17
+## 1007 R Programming Subsetting Vectors 11
+## 1008 R Programming Logic 15
+## 1009 R Programming Subsetting Vectors 13
+## 1010 R Programming Subsetting Vectors 13
+## 1011 R Programming Logic 21
+## 1012 R Programming Subsetting Vectors 13
+## 1013 R Programming Logic 27
+## 1014 R Programming Subsetting Vectors 13
+## 1015 R Programming Subsetting Vectors 3
+## 1016 R Programming Dates and Times 28
+## 1017 R Programming Dates and Times 29
+## 1018 R Programming Workspace and Files 34
+## 1019 R Programming Dates and Times 32
+## 1020 R Programming Workspace and Files 40
+## 1021 R Programming Basic Building Blocks 8
+## 1022 R Programming Basic Building Blocks 10
+## 1023 R Programming Basic Building Blocks 11
+## 1024 R Programming Basic Building Blocks 12
+## 1025 R Programming Functions 43
+## 1026 R Programming Missing Values 4
+## 1027 R Programming Functions 42
+## 1028 R Programming Workspace and Files 31
+## 1029 R Programming Subsetting Vectors 5
+## 1030 R Programming Subsetting Vectors 8
+## 1031 R Programming Functions 8
+## 1032 R Programming Logic 41
+## 1033 R Programming Functions 52
+## 1034 R Programming Missing Values 17
+## 1035 R Programming Missing Values 18
+## 1036 R Programming Logic 43
+## 1037 R Programming Missing Values 20
+## 1038 R Programming Basic Building Blocks 25
+## 1039 R Programming Basic Building Blocks 26
+## 1040 R Programming Missing Values 23
+## 1041 R Programming Functions 41
+## 1042 R Programming Dates and Times 27
+## 1043 R Programming Functions 25
+## 1044 R Programming Subsetting Vectors 8
+## 1045 R Programming Subsetting Vectors 9
+## 1046 R Programming Subsetting Vectors 10
+## 1047 R Programming Functions 14
+## 1048 R Programming Functions 19
+## 1049 R Programming Workspace and Files 22
+## 1050 R Programming Workspace and Files 23
+## 1051 R Programming Subsetting Vectors 13
+## 1052 R Programming Logic 23
+## 1053 R Programming Workspace and Files 29
+## 1054 R Programming Functions 8
+## 1055 R Programming Functions 9
+## 1056 R Programming Workspace and Files 9
+## 1057 R Programming Functions 27
+## 1058 R Programming Logic 28
+## 1059 R Programming Dates and Times 30
+## 1060 R Programming Logic 32
+## 1061 R Programming Workspace and Files 41
+## 1062 R Programming Workspace and Files 42
+## 1063 R Programming Vectors 5
+## 1064 R Programming Vectors 6
+## 1065 R Programming Logic 35
+## 1066 R Programming Functions 5
+## 1067 R Programming Functions 3
+## 1068 R Programming Dates and Times 24
+## 1069 R Programming Functions 23
+## 1070 R Programming Workspace and Files 10
+## 1071 R Programming Workspace and Files 11
+## 1072 R Programming Functions 8
+## 1073 R Programming Logic 41
+## 1074 R Programming Logic 41
+## 1075 R Programming Logic 42
+## 1076 R Programming Functions 8
+## 1077 R Programming Logic 44
+## 1078 R Programming Functions 8
+## 1079 R Programming Functions 8
+## 1080 R Programming Vectors 25
+## 1081 R Programming Functions 8
+## 1082 R Programming Functions 8
+## 1083 R Programming Functions 11
+## 1084 R Programming Functions 13
+## 1085 R Programming Functions 13
+## 1086 R Programming Vectors 41
+## 1087 R Programming Vectors 40
+## 1088 R Programming Logic 55
+## 1089 R Programming Logic 32
+## 1090 R Programming Logic 15
+## 1091 R Programming Workspace and Files 25
+## 1092 R Programming Subsetting Vectors 13
+## 1093 R Programming Workspace and Files 27
+## 1094 R Programming Functions 40
+## 1095 R Programming Vectors 28
+## 1096 R Programming Functions 23
+## 1097 R Programming Functions 8
+## 1098 R Programming Functions 27
+## 1099 R Programming Functions 28
+## 1100 R Programming Missing Values 10
+## 1101 R Programming Logic 32
+## 1102 R Programming Functions 8
+## 1103 R Programming Logic 32
+## 1104 R Programming Logic 33
+## 1105 R Programming Logic 33
+## 1106 R Programming Dates and Times 39
+## 1107 R Programming Logic 18
+## 1108 R Programming Functions 40
+## 1109 R Programming Vectors 29
+## 1110 R Programming Missing Values 12
+## 1111 R Programming Functions 13
+## 1112 R Programming Vectors 35
+## 1113 R Programming Vectors 39
+## 1114 R Programming Vectors 23
+## 1115 R Programming Logic 54
+## 1116 R Programming Dates and Times 35
+## 1117 R Programming Functions 8
+## 1118 R Programming Logic 50
+## 1119 R Programming Logic 17
+## 1120 R Programming Functions 38
+## 1121 R Programming Vectors 33
+## 1122 R Programming Functions 21
+## 1123 R Programming Logic 53
+## 1124 R Programming Vectors 33
+## 1125 R Programming Functions 32
+## 1126 R Programming Vectors 32
+## 1127 R Programming Subsetting Vectors 13
+## 1128 R Programming Dates and Times 33
+## 1129 R Programming Vectors 30
+## 1130 R Programming Logic 47
+## 1131 R Programming Logic 49
+## 1132 R Programming Functions 36
+## 1133 R Programming Functions 8
+## 1134 R Programming Functions 35
+## 1135 R Programming Dates and Times 37
+## 1136 R Programming Functions 8
+## 1137 R Programming Logic 51
+## 1138 R Programming Logic 46
+## 1139 R Programming Dates and Times 38
+## 1140 R Programming Vectors 22
+## 1141 R Programming Logic 46
+## 1142 R Programming Functions 34
+## 1143 R Programming Basic Building Blocks 18
+## 1144 R Programming Basic Building Blocks 41
+## 1145 R Programming Basic Building Blocks 40
+## 1146 R Programming Basic Building Blocks 21
+## 1147 R Programming Basic Building Blocks 18
+## 1148 R Programming Basic Building Blocks 17
+## 1149 R Programming Basic Building Blocks 17
+## 1150 R Programming Basic Building Blocks 33
+## 1151 R Programming Basic Building Blocks 15
+## 1152 R Programming Basic Building Blocks 3
+## 1153 R Programming Basic Building Blocks 38
+## 1154 R Programming Basic Building Blocks 39
+## 1155 R Programming Basic Building Blocks 36
+## 1156 R Programming Basic Building Blocks 14
+## 1157 R Programming Basic Building Blocks 16
+## 1158 R Programming Basic Building Blocks 15
+## 1159 R Programming Basic Building Blocks 8
+## 1160 R Programming Basic Building Blocks 36
+## 1161 R Programming Basic Building Blocks 26
+## 1162 R Programming Basic Building Blocks 10
+## 1163 R Programming Basic Building Blocks 31
+## 1164 R Programming Basic Building Blocks 11
+## 1165 R Programming Basic Building Blocks 12
+## 1166 R Programming Basic Building Blocks 15
+## 1167 R Programming Basic Building Blocks 22
+## 1168 R Programming Basic Building Blocks 27
+## 1169 R Programming Basic Building Blocks 25
+## 1170 R Programming Basic Building Blocks 14
+## 1171 R Programming Basic Building Blocks 23
+## 1172 R Programming Workspace and Files 27
+## 1173 R Programming Workspace and Files 23
+## 1174 R Programming Workspace and Files 14
+## 1175 R Programming Workspace and Files 25
+## 1176 R Programming Workspace and Files 9
+## 1177 R Programming Workspace and Files 15
+## 1178 R Programming Workspace and Files 8
+## 1179 R Programming Workspace and Files 22
+## 1180 R Programming Workspace and Files 15
+## 1181 R Programming Workspace and Files 42
+## 1182 R Programming Workspace and Files 41
+## 1183 R Programming Workspace and Files 17
+## 1184 R Programming Workspace and Files 17
+## 1185 R Programming Workspace and Files 11
+## 1186 R Programming Workspace and Files 10
+## 1187 R Programming Workspace and Files 6
+## 1188 R Programming Workspace and Files 21
+## 1189 R Programming Workspace and Files 33
+## 1190 R Programming Workspace and Files 40
+## 1191 R Programming Workspace and Files 31
+## 1192 R Programming Workspace and Files 31
+## 1193 R Programming Workspace and Files 32
+## 1194 R Programming Workspace and Files 29
+## 1195 R Programming Workspace and Files 5
+## 1196 R Programming Workspace and Files 19
+## 1197 R Programming Workspace and Files 35
+## 1198 R Programming Workspace and Files 34
+## 1199 R Programming Workspace and Files 34
+## 1200 R Programming Workspace and Files 14
+## 1201 R Programming Workspace and Files 14
+## 1202 R Programming Workspace and Files 15
+## 1203 R Programming Dates and Times 17
+## 1204 R Programming Dates and Times 18
+## 1205 R Programming Dates and Times 19
+## 1206 R Programming Dates and Times 20
+## 1207 R Programming Workspace and Files 15
+## 1208 R Programming Workspace and Files 17
+## 1209 R Programming Workspace and Files 17
+## 1210 R Programming Workspace and Files 19
+## 1211 R Programming Workspace and Files 19
+## 1212 R Programming Workspace and Files 21
+## 1213 R Programming Workspace and Files 21
+## 1214 R Programming Dates and Times 16
+## 1215 R Programming Dates and Times 16
+## 1216 R Programming Workspace and Files 10
+## 1217 R Programming Workspace and Files 11
+## 1218 R Programming Vectors 33
+## 1219 R Programming Vectors 33
+## 1220 R Programming Missing Values 3
+## 1221 R Programming Missing Values 4
+## 1222 R Programming Missing Values 6
+## 1223 R Programming Missing Values 7
+## 1224 R Programming Missing Values 8
+## 1225 R Programming Missing Values 9
+## 1226 R Programming Missing Values 10
+## 1227 R Programming Missing Values 12
+## 1228 R Programming Missing Values 17
+## 1229 R Programming Missing Values 18
+## 1230 R Programming Missing Values 19
+## 1231 R Programming Missing Values 20
+## 1232 R Programming Missing Values 21
+## 1233 R Programming Missing Values 22
+## 1234 R Programming Basic Building Blocks 27
+## 1235 R Programming Missing Values 23
+## 1236 R Programming Subsetting Vectors 3
+## 1237 R Programming Logic 4
+## 1238 R Programming Logic 6
+## 1239 R Programming Logic 7
+## 1240 R Programming Logic 9
+## 1241 R Programming Logic 10
+## 1242 R Programming Logic 12
+## 1243 R Programming Logic 13
+## 1244 R Programming Logic 14
+## 1245 R Programming Logic 15
+## 1246 R Programming Logic 17
+## 1247 R Programming Logic 18
+## 1248 R Programming Logic 20
+## 1249 R Programming Logic 21
+## 1250 R Programming Logic 23
+## 1251 R Programming Logic 27
+## 1252 R Programming Workspace and Files 5
+## 1253 R Programming Workspace and Files 6
+## 1254 R Programming Workspace and Files 8
+## 1255 R Programming Workspace and Files 9
+## 1256 R Programming Logic 33
+## 1257 NA
+## 1258 R Programming Dates and Times 3
+## 1259 R Programming Dates and Times 4
+## 1260 R Programming Dates and Times 5
+## 1261 R Programming Dates and Times 7
+## 1262 R Programming Dates and Times 8
+## 1263 R Programming Dates and Times 9
+## 1264 R Programming Dates and Times 11
+## 1265 R Programming Dates and Times 12
+## 1266 R Programming Dates and Times 13
+## 1267 R Programming Dates and Times 14
+## 1268 R Programming Dates and Times 15
+## 1269 R Programming Basic Building Blocks 21
+## 1270 R Programming Basic Building Blocks 22
+## 1271 R Programming Basic Building Blocks 23
+## 1272 R Programming Basic Building Blocks 25
+## 1273 R Programming Basic Building Blocks 26
+## 1274 R Programming Vectors 11
+## 1275 R Programming Vectors 17
+## 1276 R Programming Vectors 18
+## 1277 R Programming Subsetting Vectors 5
+## 1278 R Programming Subsetting Vectors 8
+## 1279 R Programming Subsetting Vectors 9
+## 1280 R Programming Subsetting Vectors 10
+## 1281 R Programming Vectors 5
+## 1282 R Programming Vectors 5
+## 1283 R Programming Vectors 6
+## 1284 R Programming Vectors 7
+## 1285 R Programming Vectors 7
+## 1286 R Programming Vectors 8
+## 1287 R Programming Basic Building Blocks 8
+## 1288 R Programming Basic Building Blocks 10
+## 1289 R Programming Basic Building Blocks 11
+## 1290 R Programming Vectors 19
+## 1291 R Pr NA
+## 1292 R Programming Vectors 22
+## 1293 R Programming Logic 28
+## 1294 R Programming Logic 30
+## 1295 R Programming Logic 32
+## 1296 R Programming Vectors 29
+## 1297 R Programming Vectors 30
+## 1298 R Programming Vectors 32
+## 1299 R Programming Basic Building Blocks 3
+## 1300 R Programming Subsetting Vectors 21
+## 1301 R Programming Subsetting Vectors 22
+## 1302 R Programming Subsetting Vectors 23
+## 1303 R Programming Basic Building Blocks 12
+## 1304 R Programming Basic Building Blocks 14
+## 1305 R Programming Basic Building Blocks 15
+## 1306 R Programming Basic Building Blocks 16
+## 1307 R Programming Basic Building Blocks 17
+## 1308 R Programming Basic Building Blocks 18
+## 1309 R Programming Subsetting Vectors 13
+## 1310 R Programming Subsetting Vectors 14
+## 1311 R Programming Subsetting Vectors 15
+## 1312 R Programming Subsetting Vectors 17
+## 1313 R Programming Subsetting Vectors 26
+## 1314 R Programming Subsetting Vectors 27
+## 1315 R Programming Subsetting Vectors 26
+## 1316 R Programming Subsetting Vectors 11
+## 1317 R Programming Vectors 28
+## 1318 R Programming Vectors 23
+## 1319 R Programming Vectors 25
+## 1320 R Programming Workspace and Files 31
+## 1321 R Programming Looking at Data 16
+## 1322 R Programming Workspace and Files 23
+## 1323 Getting and Cleaning Data Grouping and Chaining with dplyr 32
+## 1324 Getting and Cleaning Data Grouping and Chaining with dplyr 10
+## 1325 R Programming Looking at Data 15
+## 1326 R Programming Workspace and Files 41
+## 1327 R Programming Looking at Data 16
+## 1328 R Programming Looking at Data 13
+## 1329 Getting and Cleaning Data Grouping and Chaining with dplyr 9
+## 1330 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 1331 R Programming Workspace and Files 42
+## 1332 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 1333 Getting and Cleaning Data Grouping and Chaining with dplyr 33
+## 1334 Getting and Cleaning Data Grouping and Chaining with dplyr 39
+## 1335 Getting and Cleaning Data Grouping and Chaining with dplyr 33
+## 1336 Getting and Cleaning Data Grouping and Chaining with dplyr 11
+## 1337 R Programming Looking at Data 11
+## 1338 R Programming Looking at Data 10
+## 1339 R Programming Workspace and Files 9
+## 1340 R Programming Workspace and Files 9
+## 1341 Getting and Cleaning Data Grouping and Chaining with dplyr 32
+## 1342 R Programming Workspace and Files 11
+## 1343 R Programming Vectors 5
+## 1344 R Programming Workspace and Files 32
+## 1345 R Programming Workspace and Files 10
+## 1346 R Programming Vectors 6
+## 1347 Getting and Cleaning Data Grouping and Chaining with dplyr 35
+## 1348 Getting and Cleaning Data Grouping and Chaining with dplyr 35
+## 1349 Getting and Cleaning Data Grouping and Chaining with dplyr 34
+## 1350 R Programming Looking at Data 9
+## 1351 Getting and Cleaning Data Grouping and Chaining with dplyr 7
+## 1352 Getting and Cleaning Data Grouping and Chaining with dplyr 8
+## 1353 R Programming Workspace and Files 23
+## 1354 R Programming Dates and Times 35
+## 1355 R Programming Workspace and Files 25
+## 1356 R Programming Workspace and Files 27
+## 1357 R Programming Vectors 6
+## 1358 R Programming Vectors 6
+## 1359 R Programming Logic 47
+## 1360 R Programming Workspace and Files 32
+## 1361 R Programming Workspace and Files 33
+## 1362 R Programming Workspace and Files 34
+## 1363 R Programming Workspace and Files 34
+## 1364 R Programming Workspace and Files 35
+## 1365 R Programming Workspace and Files 40
+## 1366 R Programming Functions 17
+## 1367 R Programming Functions 19
+## 1368 R Programming Functions 21
+## 1369 R Programming Functions 23
+## 1370 R Programming Workspace and Files 29
+## 1371 R Programming Logic 46
+## 1372 R Programming Functions 28
+## 1373 R Programming Functions 32
+## 1374 R Programming Functions 34
+## 1375 R Programming Functions 35
+## 1376 R Programming Workspace and Files 5
+## 1377 R Programming Workspace and Files 6
+## 1378 R Programming Workspace and Files 8
+## 1379 R Programming Functions 41
+## 1380 R Programming Functions 42
+## 1381 R Programming Functions 42
+## 1382 R Programming Functions 43
+## 1383 R Programming Functions 25
+## 1384 R Programming Functions 27
+## 1385 Getting and Cleaning Data Grouping and Chaining with dplyr 54
+## 1386 Getting and Cleaning Data Grouping and Chaining with dplyr 55
+## 1387 R Programming Looking at Data 3
+## 1388 R Programming Looking at Data 4
+## 1389 R Programming Looking at Data 6
+## 1390 R Programming Looking at Data 8
+## 1391 R Programming Workspace and Files 21
+## 1392 R Programming Workspace and Files 22
+## 1393 R Programming Dates and Times 33
+## 1394 Getting and Cleaning Data Tidying Data with tidyr 53
+## 1395 Getting and Cleaning Data Tidying Data with tidyr 53
+## 1396 Getting and Cleaning Data Tidying Data with tidyr 54
+## 1397 Getting and Cleaning Data Tidying Data with tidyr 56
+## 1398 Getting and Cleaning Data Tidying Data with tidyr 57
+## 1399 Getting and Cleaning Data Tidying Data with tidyr 58
+## 1400 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 1401 Getting and Cleaning Data Grouping and Chaining with dplyr 16
+## 1402 Getting and Cleaning Data Grouping and Chaining with dplyr 17
+## 1403 Getting and Cleaning Data Grouping and Chaining with dplyr 21
+## 1404 Getting and Cleaning Data Grouping and Chaining with dplyr 21
+## 1405 Getting and Cleaning Data Grouping and Chaining with dplyr 22
+## 1406 Getting and Cleaning Data Grouping and Chaining with dplyr 23
+## 1407 Getting and Cleaning Data Grouping and Chaining with dplyr 25
+## 1408 Getting and Cleaning Data Grouping and Chaining with dplyr 26
+## 1409 Getting and Cleaning Data Grouping and Chaining with dplyr 27
+## 1410 Getting and Cleaning Data Grouping and Chaining with dplyr 31
+## 1411 Exploratory_Data_Analysis Plotting_Systems 19
+## 1412 Exploratory_Data_Analysis Plotting_Systems 20
+## 1413 Exploratory_Data_Analysis Plotting_Systems 21
+## 1414 Exploratory_Data_Analysis Plotting_Systems 25
+## 1415 Exploratory_Data_Analysis Plotting_Systems 26
+## 1416 Exploratory_Data_Analysis Plotting_Systems 27
+## 1417 Exploratory_Data_Analysis Plotting_Systems 27
+## 1418 Exploratory_Data_Analysis Plotting_Systems 28
+## 1419 Getting and Cleaning Data Grouping and Chaining with dplyr 42
+## 1420 Getting and Cleaning Data Grouping and Chaining with dplyr 43
+## 1421 Getting and Cleaning Data Grouping and Chaining with dplyr 45
+## 1422 Getting and Cleaning Data Grouping and Chaining with dplyr 48
+## 1423 R Programming Workspace and Files 14
+## 1424 R Programming Workspace and Files 15
+## 1425 R Programming Workspace and Files 17
+## 1426 R Programming Workspace and Files 17
+## 1427 R Programming Workspace and Files 19
+## 1428 R Programming Workspace and Files 19
+## 1429 R Programming Workspace and Files 19
+## 1430 R Programming Workspace and Files 19
+## 1431 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 1432 Getting and Cleaning Data Tidying Data with tidyr 48
+## 1433 Getting and Cleaning Data Tidying Data with tidyr 52
+## 1434 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 1435 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 1436 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 1437 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 1438 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 1439 Getting and Cleaning Data Manipulating Data with dplyr 18
+## 1440 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 1441 R Programming Logic 49
+## 1442 R Programming Logic 50
+## 1443 R Programming Logic 51
+## 1444 R Programming Logic 53
+## 1445 R Programming Logic 54
+## 1446 R Programming Logic 55
+## 1447 R Programming Dates and Times 3
+## 1448 R Programming Dates and Times 4
+## 1449 R Programming Vectors 5
+## 1450 R Programming Vectors 5
+## 1451 R Programming Dates and Times 8
+## 1452 R Programming Dates and Times 9
+## 1453 R Programming Dates and Times 11
+## 1454 R Programming Dates and Times 12
+## 1455 R Programming Vectors 7
+## 1456 R Programming Vectors 7
+## 1457 R Programming Vectors 8
+## 1458 R Programming Vectors 11
+## 1459 R Programming Vectors 17
+## 1460 R Programming Vectors 18
+## 1461 R Programming Vectors 19
+## 1462 R Programming Vectors 22
+## 1463 Getting and Cleaning Data Grouping and Chaining with dplyr 49
+## 1464 Getting and Cleaning Data Grouping and Chaining with dplyr 50
+## 1465 Getting and Cleaning Data Grouping and Chaining with dplyr 51
+## 1466 Getting and Cleaning Data Grouping and Chaining with dplyr 51
+## 1467 Getting and Cleaning Data Grouping and Chaining with dplyr 53
+## 1468 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 1469 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 1470 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 1471 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 1472 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 1473 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 1474 Getting and Cleaning Data Manipulating Data with dplyr 62
+## 1475 Getting and Cleaning Data Manipulating Data with dplyr 63
+## 1476 R Programming Dates and Times 37
+## 1477 R Programming Dates and Times 38
+## 1478 R Programming Dates and Times 39
+## 1479 R Programming Functions 3
+## 1480 R Programming Functions 5
+## 1481 R Programming Functions 8
+## 1482 R Programming Functions 9
+## 1483 R Programming Functions 11
+## 1484 R Programming Functions 13
+## 1485 R Programming Functions 14
+## 1486 R Programming Functions 16
+## 1487 R Programming Functions 16
+## 1488 Getting and Cleaning Data Tidying Data with tidyr 25
+## 1489 Getting and Cleaning Data Tidying Data with tidyr 28
+## 1490 Getting and Cleaning Data Tidying Data with tidyr 29
+## 1491 Getting and Cleaning Data Tidying Data with tidyr 30
+## 1492 Getting and Cleaning Data Tidying Data with tidyr 30
+## 1493 Getting and Cleaning Data Tidying Data with tidyr 31
+## 1494 Getting and Cleaning Data Tidying Data with tidyr 32
+## 1495 Getting and Cleaning Data Tidying Data with tidyr 33
+## 1496 Getting and Cleaning Data Tidying Data with tidyr 33
+## 1497 R Programming Functions 36
+## 1498 R Programming Functions 38
+## 1499 R Programming Functions 40
+## 1500 Getting and Cleaning Data Tidying Data with tidyr 33
+## 1501 Getting and Cleaning Data Tidying Data with tidyr 33
+## 1502 Getting and Cleaning Data Tidying Data with tidyr 34
+## 1503 Getting and Cleaning Data Tidying Data with tidyr 37
+## 1504 R Programming Functions 47
+## 1505 R Programming Functions 48
+## 1506 R Programming Functions 48
+## 1507 R Programming Functions 50
+## 1508 R Programming Functions 51
+## 1509 R Programming Functions 52
+## 1510 Getting and Cleaning Data Grouping and Chaining with dplyr 5
+## 1511 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 1512 Getting and Cleaning Data Tidying Data with tidyr 48
+## 1513 R Programming Subsetting Vectors 23
+## 1514 R Programming Subsetting Vectors 26
+## 1515 R Programming Subsetting Vectors 27
+## 1516 R Programming Subsetting Vectors 29
+## 1517 R Programming Subsetting Vectors 30
+## 1518 R Programming Subsetting Vectors 31
+## 1519 R Programming Subsetting Vectors 32
+## 1520 R Programming Subsetting Vectors 33
+## 1521 R Programming Subsetting Vectors 34
+## 1522 R Programming Subsetting Vectors 36
+## 1523 R Programming Subsetting Vectors 37
+## 1524 Exploratory_Data_Analysis Plotting_Systems 5
+## 1525 Exploratory_Data_Analysis Plotting_Systems 7
+## 1526 Exploratory_Data_Analysis Plotting_Systems 9
+## 1527 Exploratory_Data_Analysis Plotting_Systems 11
+## 1528 Exploratory_Data_Analysis Plotting_Systems 11
+## 1529 Exploratory_Data_Analysis Plotting_Systems 16
+## 1530 Exploratory_Data_Analysis Plotting_Systems 17
+## 1531 Exploratory_Data_Analysis Plotting_Systems 19
+## 1532 R Programming Logic 10
+## 1533 R Programming Logic 12
+## 1534 R Programming Logic 13
+## 1535 R Programming Logic 14
+## 1536 R Programming Logic 14
+## 1537 R Programming Logic 15
+## 1538 R Programming Logic 17
+## 1539 R Programming Logic 18
+## 1540 Exploratory_Data_Analysis Plotting_Systems 28
+## 1541 Exploratory_Data_Analysis Plotting_Systems 31
+## 1542 Exploratory_Data_Analysis Plotting_Systems 32
+## 1543 Exploratory_Data_Analysis Plotting_Systems 32
+## 1544 Exploratory_Data_Analysis Plotting_Systems 32
+## 1545 Exploratory_Data_Analysis Plotting_Systems 32
+## 1546 Exploratory_Data_Analysis Plotting_Systems 32
+## 1547 Exploratory_Data_Analysis Plotting_Systems 33
+## 1548 Exploratory_Data_Analysis Plotting_Systems 34
+## 1549 Exploratory_Data_Analysis Plotting_Systems 35
+## 1550 Exploratory_Data_Analysis Plotting_Systems 36
+## 1551 Exploratory_Data_Analysis Plotting_Systems 36
+## 1552 Exploratory_Data_Analysis Plotting_Systems 38
+## 1553 Exploratory_Data_Analysis Plotting_Systems 39
+## 1554 Exploratory_Data_Analysis Plotting_Systems 40
+## 1555 R Programming Logic 39
+## 1556 R Programming Logic 41
+## 1557 R Programming Logic 41
+## 1558 R Programming Logic 42
+## 1559 R Programming Logic 43
+## 1560 R Programming Logic 44
+## 1561 R Programming Missing Values 3
+## 1562 R Programming Missing Values 4
+## 1563 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 1564 Getting and Cleaning Data Manipulating Data with dplyr 22
+## 1565 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 1566 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 1567 Getting and Cleaning Data Manipulating Data with dplyr 24
+## 1568 Getting and Cleaning Data Manipulating Data with dplyr 25
+## 1569 Getting and Cleaning Data Manipulating Data with dplyr 26
+## 1570 R Programming Dates and Times 5
+## 1571 R Programming Dates and Times 7
+## 1572 Getting and Cleaning Data Manipulating Data with dplyr 30
+## 1573 Getting and Cleaning Data Manipulating Data with dplyr 33
+## 1574 Getting and Cleaning Data Manipulating Data with dplyr 34
+## 1575 Getting and Cleaning Data Manipulating Data with dplyr 35
+## 1576 Getting and Cleaning Data Manipulating Data with dplyr 35
+## 1577 R Programming Dates and Times 13
+## 1578 R Programming Dates and Times 14
+## 1579 R Programming Dates and Times 15
+## 1580 R Programming Dates and Times 15
+## 1581 R Programming Dates and Times 16
+## 1582 R Programming Dates and Times 17
+## 1583 R Programming Dates and Times 18
+## 1584 R Programming Dates and Times 19
+## 1585 R Programming Vectors 22
+## 1586 R Programming Vectors 23
+## 1587 R Programming Vectors 25
+## 1588 R Programming Vectors 25
+## 1589 R Programming Vectors 28
+## 1590 R Programming Vectors 28
+## 1591 R Programming Vectors 29
+## 1592 R Programming Vectors 30
+## 1593 R Programming Vectors 32
+## 1594 R Programming Vectors 33
+## 1595 R Programming Vectors 33
+## 1596 R Programming Vectors 33
+## 1597 R Programming Vectors 35
+## 1598 R Programming Vectors 39
+## 1599 R Programming Vectors 40
+## 1600 R Programming Vectors 41
+## 1601 Getting and Cleaning Data Tidying Data with tidyr 12
+## 1602 Getting and Cleaning Data Tidying Data with tidyr 15
+## 1603 R Programming Missing Values 6
+## 1604 R Programming Missing Values 7
+## 1605 R Programming Missing Values 8
+## 1606 R Programming Missing Values 8
+## 1607 R Programming Missing Values 9
+## 1608 R Programming Missing Values 10
+## 1609 R Programming Missing Values 12
+## 1610 R Programming Missing Values 17
+## 1611 R Programming Missing Values 17
+## 1612 R Programming Missing Values 17
+## 1613 R Programming Missing Values 18
+## 1614 R Programming Missing Values 19
+## 1615 R Programming Missing Values 20
+## 1616 R Programming Missing Values 21
+## 1617 R Programming Missing Values 22
+## 1618 Getting and Cleaning Data Tidying Data with tidyr 33
+## 1619 Getting and Cleaning Data Tidying Data with tidyr 33
+## 1620 Getting and Cleaning Data Tidying Data with tidyr 33
+## 1621 R Programming Subsetting Vectors 8
+## 1622 R Programming Subsetting Vectors 9
+## 1623 R Programming Subsetting Vectors 10
+## 1624 R Programming Subsetting Vectors 10
+## 1625 Getting and Cleaning Data Tidying Data with tidyr 38
+## 1626 Getting and Cleaning Data Tidying Data with tidyr 39
+## 1627 Getting and Cleaning Data Tidying Data with tidyr 42
+## 1628 Getting and Cleaning Data Tidying Data with tidyr 43
+## 1629 Getting and Cleaning Data Tidying Data with tidyr 46
+## 1630 Getting and Cleaning Data Tidying Data with tidyr 46
+## 1631 Getting and Cleaning Data Tidying Data with tidyr 46
+## 1632 Getting and Cleaning Data Tidying Data with tidyr 47
+## 1633 R Programming Subsetting Vectors 22
+## 1634 R Programming Logic 37
+## 1635 R Programming Logic 38
+## 1636 R Programming Dates and Times 32
+## 1637 Getting and Cleaning Data Tidying Data with tidyr 3
+## 1638 Getting and Cleaning Data Tidying Data with tidyr 6
+## 1639 Getting and Cleaning Data Tidying Data with tidyr 8
+## 1640 Getting and Cleaning Data Tidying Data with tidyr 11
+## 1641 Getting and Cleaning Data Manipulating Data with dplyr 30
+## 1642 R Programming Logic 33
+## 1643 Getting and Cleaning Data Tidying Data with tidyr 18
+## 1644 Getting and Cleaning Data Tidying Data with tidyr 18
+## 1645 R Programming Subsetting Vectors 38
+## 1646 R Programming Subsetting Vectors 40
+## 1647 R Programming Subsetting Vectors 41
+## 1648 R Programming Subsetting Vectors 42
+## 1649 R Programming Logic 4
+## 1650 R Programming Logic 6
+## 1651 R Programming Logic 7
+## 1652 R Programming Logic 9
+## 1653 Getting and Cleaning Data Manipulating Data with dplyr 28
+## 1654 R Programming Logic 32
+## 1655 R Programming Dates and Times 22
+## 1656 R Programming Logic 33
+## 1657 R Programming Logic 33
+## 1658 Getting and Cleaning Data Manipulating Data with dplyr 36
+## 1659 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 1660 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 1661 R Programming Logic 20
+## 1662 R Programming Logic 21
+## 1663 R Programming Logic 23
+## 1664 R Programming Logic 27
+## 1665 R Programming Logic 28
+## 1666 R Programming Logic 30
+## 1667 R Programming Dates and Times 20
+## 1668 R Programming Subsetting Vectors 11
+## 1669 R Programming Dates and Times 23
+## 1670 R Programming Dates and Times 23
+## 1671 R Programming Logic 35
+## 1672 R Programming Logic 36
+## 1673 R Programming Logic 37
+## 1674 R Programming Dates and Times 29
+## 1675 R Programming Dates and Times 30
+## 1676 Getting and Cleaning Data Manipulating Data with dplyr 57
+## 1677 Getting and Cleaning Data Manipulating Data with dplyr 61
+## 1678 R Programming Looking at Data 28
+## 1679 Getting and Cleaning Data Manipulating Data with dplyr 27
+## 1680 R Programming Dates and Times 24
+## 1681 Getting and Cleaning Data Tidying Data with tidyr 19
+## 1682 R Programming Subsetting Vectors 13
+## 1683 R Programming Subsetting Vectors 14
+## 1684 R Programming Looking at Data 22
+## 1685 R Programming Looking at Data 26
+## 1686 R Programming Looking at Data 17
+## 1687 R Programming Looking at Data 20
+## 1688 Getting and Cleaning Data Manipulating Data with dplyr 45
+## 1689 R Programming Subsetting Vectors 15
+## 1690 R Programming Looking at Data 27
+## 1691 Getting and Cleaning Data Manipulating Data with dplyr 44
+## 1692 Getting and Cleaning Data Manipulating Data with dplyr 46
+## 1693 Getting and Cleaning Data Manipulating Data with dplyr 39
+## 1694 R Programming Dates and Times 27
+## 1695 R Programming Missing Values 23
+## 1696 R Programming Subsetting Vectors 3
+## 1697 R Programming Dates and Times 28
+## 1698 Getting and Cleaning Data Manipulating Data with dplyr 40
+## 1699 Getting and Cleaning Data Manipulating Data with dplyr 41
+## 1700 Getting and Cleaning Data Tidying Data with tidyr 24
+## 1701 R Programming Subsetting Vectors 17
+## 1702 Getting and Cleaning Data Manipulating Data with dplyr 47
+## 1703 R Programming Subsetting Vectors 17
+## 1704 R Programming Dates and Times 28
+## 1705 R Programming Subsetting Vectors 5
+## 1706 Getting and Cleaning Data Manipulating Data with dplyr 55
+## 1707 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 1708 Getting and Cleaning Data Tidying Data with tidyr 24
+## 1709 Getting and Cleaning Data Manipulating Data with dplyr 53
+## 1710 Getting and Cleaning Data Tidying Data with tidyr 20
+## 1711 Getting and Cleaning Data Tidying Data with tidyr 20
+## 1712 Getting and Cleaning Data Manipulating Data with dplyr 48
+## 1713 Getting and Cleaning Data Manipulating Data with dplyr 49
+## 1714 R Programming Subsetting Vectors 17
+## 1715 Getting and Cleaning Data Tidying Data with tidyr 21
+## 1716 Getting and Cleaning Data Manipulating Data with dplyr 55
+## 1717 R Programming Subsetting Vectors 21
+## 1718 Getting and Cleaning Data Manipulating Data with dplyr 50
+## 1719 R Programming Basic Building Blocks 40
+## 1720 R Programming Matrices and Data Frames 33
+## 1721 R Programming Basic Building Blocks 12
+## 1722 R Programming Matrices and Data Frames 10
+## 1723 R Programming Matrices and Data Frames 5
+## 1724 R Programming Basic Building Blocks 31
+## 1725 R Programming Matrices and Data Frames 9
+## 1726 R Programming Matrices and Data Frames 14
+## 1727 R Programming Matrices and Data Frames 7
+## 1728 R Programming Matrices and Data Frames 33
+## 1729 R Programming Basic Building Blocks 39
+## 1730 R Programming Basic Building Blocks 36
+## 1731 R Programming Matrices and Data Frames 26
+## 1732 R Programming Matrices and Data Frames 4
+## 1733 R Programming Matrices and Data Frames 30
+## 1734 R Programming Matrices and Data Frames 33
+## 1735 R Programming Basic Building Blocks 33
+## 1736 R Programming Basic Building Blocks 11
+## 1737 R Programming Matrices and Data Frames 3
+## 1738 R Programming Basic Building Blocks 3
+## 1739 R Programming Basic Building Blocks 25
+## 1740 R Programming Basic Building Blocks 41
+## 1741 R Programming Basic Building Blocks 16
+## 1742 R Programming Basic Building Blocks 38
+## 1743 R Programming Matrices and Data Frames 21
+## 1744 R Programming Matrices and Data Frames 13
+## 1745 R Programming Matrices and Data Frames 22
+## 1746 R Programming Basic Building Blocks 27
+## 1747 R Programming Basic Building Blocks 10
+## 1748 R Programming Matrices and Data Frames 16
+## 1749 R Programming Matrices and Data Frames 6
+## 1750 R Programming Matrices and Data Frames 17
+## 1751 R Programming Matrices and Data Frames 17
+## 1752 R Programming Matrices and Data Frames 10
+## 1753 R Programming Basic Building Blocks 14
+## 1754 R Programming Basic Building Blocks 15
+## 1755 R Programming Matrices and Data Frames 35
+## 1756 R Programming Matrices and Data Frames 22
+## 1757 R Programming Matrices and Data Frames 21
+## 1758 R Programming Matrices and Data Frames 37
+## 1759 R Programming Matrices and Data Frames 27
+## 1760 R Programming Basic Building Blocks 26
+## 1761 R Programming Basic Building Blocks 8
+## 1762 R Programming Basic Building Blocks 22
+## 1763 R Programming Matrices and Data Frames 3
+## 1764 R Programming Matrices and Data Frames 34
+## 1765 R Programming Matrices and Data Frames 18
+## 1766 R Programming Matrices and Data Frames 12
+## 1767 R Programming Matrices and Data Frames 33
+## 1768 R Programming Basic Building Blocks 17
+## 1769 R Programming Basic Building Blocks 18
+## 1770 R Programming Basic Building Blocks 21
+## 1771 R Programming Matrices and Data Frames 38
+## 1772 R Programming Matrices and Data Frames 39
+## 1773 R Programming Basic Building Blocks 23
+## 1774 R Programming Matrices and Data Frames 17
+## 1775 R Programming Matrices and Data Frames 17
+## 1776 R Programming Matrices and Data Frames 17
+## 1777 R Programming Matrices and Data Frames 17
+## 1778 R Programming Vectors 29
+## 1779 R Programming Basic Building Blocks 39
+## 1780 R Programming Vectors 30
+## 1781 R Programming Basic Building Blocks 14
+## 1782 R Programming Basic Building Blocks 14
+## 1783 R Programming Basic Building Blocks 12
+## 1784 R Programming Basic Building Blocks 33
+## 1785 R Programming Basic Building Blocks 36
+## 1786 R Programming Vectors 25
+## 1787 R Programming Workspace and Files 25
+## 1788 R Programming Basic Building Blocks 3
+## 1789 R Programming Vectors 28
+## 1790 R Programming Basic Building Blocks 40
+## 1791 R Programming Basic Building Blocks 8
+## 1792 R Programming Workspace and Files 34
+## 1793 R Programming Workspace and Files 40
+## 1794 R Programming Vectors 25
+## 1795 R Programming Basic Building Blocks 11
+## 1796 R Programming Workspace and Files 42
+## 1797 R Programming Workspace and Files 23
+## 1798 R Programming Workspace and Files 27
+## 1799 R Programming Basic Building Blocks 38
+## 1800 R Programming Workspace and Files 8
+## 1801 R Programming Basic Building Blocks 41
+## 1802 R Programming Basic Building Blocks 10
+## 1803 R Programming Basic Building Blocks 31
+## 1804 R Programming Basic Building Blocks 27
+## 1805 R Programming Vectors 23
+## 1806 R Programming Workspace and Files 34
+## 1807 R Programming Workspace and Files 41
+## 1808 R Programming Basic Building Blocks 17
+## 1809 R Programming Workspace and Files 21
+## 1810 R Programming Vectors 32
+## 1811 R Programming Vectors 32
+## 1812 R Programming Workspace and Files 5
+## 1813 R Programming Workspace and Files 6
+## 1814 R Programming Workspace and Files 31
+## 1815 R Programming Workspace and Files 32
+## 1816 R Programming Workspace and Files 33
+## 1817 R Programming Workspace and Files 11
+## 1818 R Programming Vectors 39
+## 1819 R Programming Workspace and Files 14
+## 1820 R Programming Workspace and Files 35
+## 1821 R Programming Basic Building Blocks 16
+## 1822 R Programming Basic Building Blocks 15
+## 1823 R Programming Workspace and Files 22
+## 1824 R Programming Workspace and Files 22
+## 1825 R Programming Vectors 5
+## 1826 R Programming Workspace and Files 29
+## 1827 R Programming Vectors 33
+## 1828 R Programming Workspace and Files 9
+## 1829 R Programming Workspace and Files 10
+## 1830 R Programming Workspace and Files 32
+## 1831 R Programming Missing Values 20
+## 1832 R Programming Vectors 22
+## 1833 R Programming Vectors 7
+## 1834 R Programming Vectors 11
+## 1835 R Programming Workspace and Files 17
+## 1836 R Programming Vectors 18
+## 1837 R Programming Workspace and Files 19
+## 1838 R Programming Basic Building Blocks 18
+## 1839 R Programming Basic Building Blocks 21
+## 1840 R Programming Missing Values 19
+## 1841 R Programming Vectors 6
+## 1842 R Programming Vectors 7
+## 1843 R Programming Vectors 35
+## 1844 R Programming Basic Building Blocks 26
+## 1845 R Programming Missing Values 8
+## 1846 R Programming Vectors 40
+## 1847 R Programming Vectors 8
+## 1848 R Programming Missing Values 23
+## 1849 R Programming Vectors 32
+## 1850 R Programming Vectors 17
+## 1851 R Programming Missing Values 10
+## 1852 R Programming Vectors 32
+## 1853 R Programming Workspace and Files 15
+## 1854 R Programming Missing Values 18
+## 1855 R Programming Missing Values 20
+## 1856 R Programming Vectors 6
+## 1857 R Programming Missing Values 12
+## 1858 R Programming Missing Values 3
+## 1859 R Programming Missing Values 4
+## 1860 R Programming Workspace and Files 15
+## 1861 R Programming Basic Building Blocks 25
+## 1862 R Programming Missing Values 17
+## 1863 R Programming Basic Building Blocks 22
+## 1864 R Programming Missing Values 9
+## 1865 R Programming Missing Values 21
+## 1866 R Programming Missing Values 22
+## 1867 R Programming Vectors 41
+## 1868 R Programming Basic Building Blocks 23
+## 1869 R Programming Vectors 19
+## 1870 R Programming Vectors 18
+## 1871 R Programming Vectors 18
+## 1872 R Programming Missing Values 6
+## 1873 R Programming Vectors 22
+## 1874 R Programming Missing Values 7
+## 1875 NA
+## 1876 R Programming Subsetting Vectors 21
+## 1877 R Programming Matrices and Data Frames 3
+## 1878 R Programming Functions 5
+## 1879 R Programming Functions 34
+## 1880 R Programming Functions 8
+## 1881 R Programming Functions 3
+## 1882 R Programming Subsetting Vectors 17
+## 1883 R Programming Subsetting Vectors 22
+## 1884 R Programming Basic Building Blocks NA
+## 1885 R Programming Functions 8
+## 1886 R Programming Basic Building Blocks 18
+## 1887 R Programming Matrices and Data Frames 13
+## 1888 NA
+## 1889 R Programming Basic Building Blocks 23
+## 1890 R Programming Matrices and Data Frames 17
+## 1891 R Programming Basic Building Blocks 17
+## 1892 R Programming Workspace and Files 11
+## 1893 R Programming Matrices and Data Frames 16
+## 1894 R Programming Matrices and Data Frames 6
+## 1895 R Programming Matrices and Data Frames 3
+## 1896 R Programming Matrices and Data Frames 4
+## 1897 R Programming Matrices and Data Frames 5
+## 1898 R Programming Basic Building Blocks 21
+## 1899 R Programming Workspace and Files 22
+## 1900 R Programming Matrices and Data Frames 13
+## 1901 R Programming Basic Building Blocks 22
+## 1902 R Programming Dates and Times 4
+## 1903 R Programming Matrices and Data Frames 14
+## 1904 R Programming Subsetting Vectors 23
+## 1905 R Programming Subsetting Vectors 15
+## 1906 R Programming Functions 9
+## 1907 R Programming Logic 4
+## 1908 R Programming Matrices and Data Frames 7
+## 1909 R Programming Subsetting Vectors 26
+## 1910 R NA
+## 1911 R Programming Basic Building Blocks 17
+## 1912 R Programming Matrices and Data Frames 12
+## 1913 R Programming Workspace and Files 10
+## 1914 R Programming Dates and Times 3
+## 1915 R Programming Logic 32
+## 1916 R Programming Logic 14
+## 1917 R Programming Dates and Times 8
+## 1918 R Programming Dates and Times 8
+## 1919 R Programming Basic Building Blocks 12
+## 1920 R Programming Subsetting Vectors 27
+## 1921 R Programming Logic 6
+## 1922 R Programming Logic 7
+## 1923 R Programming Matrices and Data Frames 21
+## 1924 R Programming Workspace and Files 23
+## 1925 R Programming Matrices and Data Frames 18
+## 1926 R Programming Subsetting Vectors 14
+## 1927 R Programming Logic 30
+## 1928 R Programming Functions 32
+## 1929 R Programming Dates and Times 17
+## 1930 R Programming Dates and Times 5
+## 1931 R Programming Workspace and Files 15
+## 1932 R Programming Vectors 19
+## 1933 R Programming Basic Building Blocks 10
+## 1934 R P NA
+## 1935 R Programming Functions 11
+## 1936 R Programming Functions 13
+## 1937 R Programming Matrices and Data Frames 17
+## 1938 R Programming Matrices and Data Frames 10
+## 1939 R Programming Logic 12
+## 1940 R Programming Workspace and Files 22
+## 1941 R Programming Logic 13
+## 1942 R Programming Vectors 8
+## 1943 R Programming Workspace and Files 14
+## 1944 R Programming Dates and Times 7
+## 1945 R Programming Basic Building Blocks 3
+## 1946 R Programming Dates and Times 9
+## 1947 R Programming Vectors 25
+## 1948 R Programming Matrices and Data Frames 18
+## 1949 R Programming Vectors 5
+## 1950 R Programming Matrices and Data Frames 9
+## 1951 R Programming Basic Building Blocks 15
+## 1952 R Programming Basic Building Blocks 16
+## 1953 R Programming Logic 10
+## 1954 R Programming Dates and Times 16
+## 1955 R Programming Missing Values 19
+## 1956 R Programming Vectors 11
+## 1957 R Programming Vectors 17
+## 1958 R Programming Vectors 18
+## 1959 R Programming Basic Building Blocks 8
+## 1960 R Programming Matrices and Data Frames 7
+## 1961 R Programming Basic Building Blocks 11
+## 1962 NA
+## 1963 R Programming Vectors 6
+## 1964 R Programming Vectors 6
+## 1965 R Programming Logic 9
+## 1966 R Programming Workspace and Files 9
+## 1967 R Programming Functions 28
+## 1968 R Programming Vectors 7
+## 1969 R Programming Missing Values 20
+## 1970 R Programming Dates and Times 18
+## 1971 R Programming Dates and Times 19
+## 1972 R Programming Functions 19
+## 1973 R Programming Vectors 22
+## 1974 R Programming Vectors 23
+## 1975 R Programming Matrices and Data Frames 10
+## 1976 R Programming Basic Building Blocks 14
+## 1977 R Programming Basic Building Blocks 14
+## 1978 R Programming Matrices and Data Frames 14
+## 1979 R Programming Matrices and Data Frames 16
+## 1980 R Programming Functions 14
+## 1981 R Programming Workspace and Files 8
+## 1982 R Programming Functions 16
+## 1983 R Programming Functions 16
+## 1984 R Programming Functions 16
+## 1985 R Programming Workspace and Files 15
+## 1986 R Programming Matrices and Data Frames 6
+## 1987 R Programming Subsetting Vectors 5
+## 1988 R Programming Vectors 25
+## 1989 R Programming Vectors 25
+## 1990 R Programming Vectors 28
+## 1991 R Programming Vectors 28
+## 1992 R Programming Vectors 29
+## 1993 R Programming Vectors 30
+## 1994 R Programming Workspace and Files 21
+## 1995 R Programming Logic 27
+## 1996 R Programming Logic 28
+## 1997 R Programming Dates and Times 16
+## 1998 R Programming Functions 17
+## 1999 R Programming Matrices and Data Frames 3
+## 2000 R Programming Matrices and Data Frames 4
+## 2001 R Programming Matrices and Data Frames 9
+## 2002 R Programming Subsetting Vectors 8
+## 2003 R Programming Matrices and Data Frames 12
+## 2004 R Programming Matrices and Data Frames 13
+## 2005 R Programming Subsetting Vectors 11
+## 2006 R Programming Subsetting Vectors 13
+## 2007 R Programming Logic 21
+## 2008 R Programming Logic 23
+## 2009 R Programming Vectors 7
+## 2010 R Programming Dates and Times 15
+## 2011 NA
+## 2012 R Programming Matrices and Data Frames 3
+## 2013 R Programming Missing Values 22
+## 2014 R Programming Functions 21
+## 2015 R Programming Logic 15
+## 2016 R Programming Logic 17
+## 2017 R Programming Dates and Times 11
+## 2018 R Programming Workspace and Files 5
+## 2019 R Programming Workspace and Files 6
+## 2020 R Programming Subsetting Vectors 10
+## 2021 R Programming Functions 27
+## 2022 R Programming Dates and Times 14
+## 2023 R Programming Functions 8
+## 2024 R Programming Functions 11
+## 2025 R Programming Missing Values 17
+## 2026 R Programming Missing Values 21
+## 2027 R Programming Matrices and Data Frames 5
+## 2028 R Programming Functions 17
+## 2029 R Programming Logic 15
+## 2030 R Programming Workspace and Files 17
+## 2031 R Programming Workspace and Files 17
+## 2032 R Programming Workspace and Files 19
+## 2033 R Programming Functions 28
+## 2034 R Programming Dates and Times 12
+## 2035 R Programming Dates and Times 13
+## 2036 R Programming Functions 3
+## 2037 R Programming Functions 9
+## 2038 R Programming Missing Values 12
+## 2039 R Programming Missing Values 10
+## 2040 R Programming Missing Values 23
+## 2041 R Programming Subsetting Vectors 3
+## 2042 R Programming Functions 16
+## 2043 R Programming Functions 25
+## 2044 R Programming Logic 18
+## 2045 R Programming Logic 20
+## 2046 R Programming Functions 21
+## 2047 R Programming Functions 23
+## 2048 R Programming Functions 25
+## 2049 R Programming Missing Values 8
+## 2050 R Programming Functions 5
+## 2051 R Programming Functions 16
+## 2052 R Programming Functions 23
+## 2053 R Programming Functions 13
+## 2054 R Programming Functions 14
+## 2055 R Programming Missing Values 6
+## 2056 R Programming Missing Values 7
+## 2057 R Programming Subsetting Vectors 8
+## 2058 R Programming Subsetting Vectors 9
+## 2059 R Programming Missing Values 8
+## 2060 R Programming Missing Values 18
+## 2061 R Programming Missing Values 9
+## 2062 R Programming Missing Values 17
+## 2063 R Programming Functions 27
+## 2064 R Programming Functions 19
+## 2065 R Programming Missing Values 4
+## 2066 R Programming Missing Values 3
+## 2067 R Programming Missing Values 3
+## 2068 R Programming Vectors 41
+## 2069 R Programming Dates and Times 29
+## 2070 R Programming Functions 40
+## 2071 R Programming Dates and Times 28
+## 2072 R Programming Functions 40
+## 2073 R Programming Functions 40
+## 2074 R Programming Dates and Times 28
+## 2075 R Programming Functions 11
+## 2076 R Programming Functions 42
+## 2077 R Programming Functions 40
+## 2078 R Programming Dates and Times 27
+## 2079 R Programming Dates and Times 37
+## 2080 R Programming Functions 9
+## 2081 R Programming Functions 40
+## 2082 R Programming Vectors 40
+## 2083 R Programming Dates and Times 24
+## 2084 R Programming Dates and Times 30
+## 2085 R Programming Functions 16
+## 2086 R Programming Logic 36
+## 2087 R Programming Dates and Times 32
+## 2088 R Programming Dates and Times 33
+## 2089 R Programming Dates and Times 35
+## 2090 R Programming Functions 41
+## 2091 R Programming Vectors 39
+## 2092 R Programming Vectors 35
+## 2093 R Programming Functions 28
+## 2094 R Programming Functions 38
+## 2095 R Programming Functions 8
+## 2096 R Programming Functions 40
+## 2097 R Programming Functions 14
+## 2098 R Programming Workspace and Files 17
+## 2099 R Programming Workspace and Files 19
+## 2100 R Programming Functions 16
+## 2101 R Programming Logic 39
+## 2102 R Programming Functions 16
+## 2103 R Programming Vectors 7
+## 2104 R Programming Functions 42
+## 2105 R Programming Dates and Times 38
+## 2106 R Programming Dates and Times 23
+## 2107 R Programming Functions 42
+## 2108 R Programming Functions 43
+## 2109 R Programming Functions 13
+## 2110 R Programming Functions 34
+## 2111 R Programming Functions 34
+## 2112 R Programming Functions 34
+## 2113 R Programming Vectors 29
+## 2114 R Programming Functions 51
+## 2115 R Programming Vectors 5
+## 2116 R Programming Functions 16
+## 2117 R Programming Functions 16
+## 2118 R Programming Functions 23
+## 2119 R Programming Dates and Times 39
+## 2120 R Programming Functions 27
+## 2121 R Programming Functions 28
+## 2122 R Programming Workspace and Files 10
+## 2123 R Programming Workspace and Files 11
+## 2124 R Programming Workspace and Files 14
+## 2125 R Programming Functions 16
+## 2126 R Programming Functions 16
+## 2127 R Programming Dates and Times 16
+## 2128 R Programming Vectors 30
+## 2129 R Programming Vectors 6
+## 2130 R Programming Functions 19
+## 2131 R Programming Vectors 33
+## 2132 R Programming Vectors 33
+## 2133 R Programming Functions 36
+## 2134 R Programming Functions 5
+## 2135 R Programming Workspace and Files 9
+## 2136 R Programming Functions 34
+## 2137 R Programming Dates and Times 14
+## 2138 R Programming Dates and Times 15
+## 2139 R Programming Vectors 28
+## 2140 R Programming Workspace and Files 17
+## 2141 R Programming Logic 38
+## 2142 R Programming Functions 40
+## 2143 R Programming Functions 40
+## 2144 R Programming Functions 40
+## 2145 R Programming Functions 16
+## 2146 R Programming Functions 16
+## 2147 R Programming Functions 16
+## 2148 R Programming Functions 16
+## 2149 R Programming Logic 35
+## 2150 R Programming Subsetting Vectors 23
+## 2151 R Programming Subsetting Vectors 26
+## 2152 R Programming Workspace and Files 15
+## 2153 R Programming Functions 50
+## 2154 R Programming Functions 16
+## 2155 R Programming Logic 51
+## 2156 R Programming Functions 17
+## 2157 R Programming Functions 52
+## 2158 R Programming Functions 21
+## 2159 R Programming Functions 25
+## 2160 R Programming Dates and Times 5
+## 2161 R Programming Functions 28
+## 2162 R Programming Functions 28
+## 2163 R Programming Functions 32
+## 2164 R Programming Vectors 19
+## 2165 R Programming Vectors 22
+## 2166 R Programming Dates and Times 15
+## 2167 R Programming Vectors 25
+## 2168 R Programming Dates and Times 17
+## 2169 R Programming Vectors 30
+## 2170 R Programming Vectors 32
+## 2171 R Programming Dates and Times 20
+## 2172 R Programming Dates and Times 22
+## 2173 R Programming Functions 3
+## 2174 R Programming Workspace and Files 8
+## 2175 R Programming Logic 33
+## 2176 R Programming Subsetting Vectors 23
+## 2177 R Programming Basic Building Blocks 23
+## 2178 R Programming Basic Building Blocks 25
+## 2179 R Programming Logic 36
+## 2180 R Programming Logic 37
+## 2181 R Programming Basic Building Blocks 31
+## 2182 R Programming Basic Building Blocks 33
+## 2183 R Programming Logic 41
+## 2184 R Programming Logic 41
+## 2185 R Programming Missing Values 7
+## 2186 R Programming Functions 42
+## 2187 R Programming Workspace and Files 25
+## 2188 R Programming Workspace and Files 27
+## 2189 R Programming Functions 16
+## 2190 R Programming Functions 16
+## 2191 R Programming Functions 16
+## 2192 R Programming Functions 48
+## 2193 R Programming Functions 16
+## 2194 R Programming Workspace and Files 33
+## 2195 R Programming Workspace and Files 34
+## 2196 R Programming Workspace and Files 34
+## 2197 R Programming Missing Values 22
+## 2198 R Programming Logic 53
+## 2199 R Programming Dates and Times 4
+## 2200 R Programming Basic Building Blocks 3
+## 2201 R Programming Vectors 8
+## 2202 R Programming Vectors 17
+## 2203 R Programming Vectors 18
+## 2204 R Programming Dates and Times 11
+## 2205 R Programming Dates and Times 12
+## 2206 R Programming Vectors 23
+## 2207 R Programming Basic Building Blocks 15
+## 2208 R Programming Functions 34
+## 2209 R Programming Dates and Times 18
+## 2210 R Programming Dates and Times 19
+## 2211 R Programming Functions 34
+## 2212 R Programming Functions 35
+## 2213 R Programming Basic Building Blocks 18
+## 2214 R Programming Logic 32
+## 2215 R Programming Logic 28
+## 2216 R Programming Logic 30
+## 2217 R Programming Subsetting Vectors 21
+## 2218 R Programming Subsetting Vectors 22
+## 2219 R Programming Basic Building Blocks 26
+## 2220 R Programming Basic Building Blocks 27
+## 2221 R Programming Logic 49
+## 2222 R Programming Subsetting Vectors 27
+## 2223 R Programming Basic Building Blocks 36
+## 2224 R Programming Workspace and Files 19
+## 2225 R Programming Logic 41
+## 2226 R Programming Logic 41
+## 2227 R Programming Logic 41
+## 2228 R Programming Logic 42
+## 2229 R Programming Workspace and Files 29
+## 2230 R Programming Functions 47
+## 2231 R Programming Functions 47
+## 2232 R Programming Functions 47
+## 2233 R Programming Workspace and Files 32
+## 2234 R Programming Subsetting Vectors 9
+## 2235 R Programming Logic 49
+## 2236 R Programming Logic 50
+## 2237 R Programming Logic 7
+## 2238 R Programming Missing Values 23
+## 2239 R Programming Logic 54
+## 2240 R Programming Logic 55
+## 2241 R Programming Basic Building Blocks 8
+## 2242 R Programming Vectors 11
+## 2243 R Programming Dates and Times 9
+## 2244 R Programming Basic Building Blocks 11
+## 2245 R Programming Basic Building Blocks 12
+## 2246 R Programming Dates and Times 13
+## 2247 R Programming Logic 47
+## 2248 R Programming Basic Building Blocks 14
+## 2249 R Programming Workspace and Files 5
+## 2250 R Programming Workspace and Files 6
+## 2251 R Programming Basic Building Blocks 16
+## 2252 R Programming Basic Building Blocks 17
+## 2253 R Programming Logic 20
+## 2254 R Programming Basic Building Blocks 21
+## 2255 R Programming Basic Building Blocks 22
+## 2256 R Programming Basic Building Blocks 23
+## 2257 R Programming Logic 44
+## 2258 R Programming Logic 46
+## 2259 R Programming Subsetting Vectors 22
+## 2260 R Programming Subsetting Vectors 8
+## 2261 R Programming Missing Values 19
+## 2262 R Programming Missing Values 20
+## 2263 R Programming Subsetting Vectors 29
+## 2264 R Programming Basic Building Blocks 38
+## 2265 R Programming Workspace and Files 21
+## 2266 R Programming Workspace and Files 21
+## 2267 R Programming Workspace and Files 22
+## 2268 R Programming Workspace and Files 22
+## 2269 R Programming Logic 43
+## 2270 R Programming Dates and Times 8
+## 2271 R Programming Subsetting Vectors 8
+## 2272 R Programming Logic 47
+## 2273 R Programming Workspace and Files 31
+## 2274 R Programming Logic 15
+## 2275 R Programming Logic 17
+## 2276 R Programming Missing Values 21
+## 2277 R Programming Logic 4
+## 2278 R Programming Logic 9
+## 2279 R Programming Workspace and Files 35
+## 2280 R Programming Workspace and Files 40
+## 2281 R Programming Dates and Times 3
+## 2282 R Programming Dates and Times 7
+## 2283 R Programming Logic 27
+## 2284 R Programming Missing Values 10
+## 2285 R Programming Subsetting Vectors 8
+## 2286 R Programming Logic 15
+## 2287 R Programming Workspace and Files 32
+## 2288 R Programming Missing Values 17
+## 2289 R Programming Vectors 28
+## 2290 R Programming Subsetting Vectors 13
+## 2291 R Programming Logic 18
+## 2292 R Programming Subsetting Vectors 13
+## 2293 R Programming Subsetting Vectors 14
+## 2294 R Programming Logic 21
+## 2295 R Programming Logic 23
+## 2296 R Programming Workspace and Files 23
+## 2297 R Programming Basic Building Blocks 10
+## 2298 R Programming Workspace and Files 29
+## 2299 R Programming Subsetting Vectors 34
+## 2300 R Programming Logic 15
+## 2301 R Programming Missing Values 12
+## 2302 R Programming Missing Values 18
+## 2303 R Programming Subsetting Vectors 42
+## 2304 R Programming Subsetting Vectors 30
+## 2305 R Programming Subsetting Vectors 31
+## 2306 R Programming Missing Values 4
+## 2307 R Programming Missing Values 6
+## 2308 R Programming Basic Building Blocks 41
+## 2309 R Programming Workspace and Files 42
+## 2310 R Programming Subsetting Vectors 21
+## 2311 R Programming Logic 14
+## 2312 R Programming Logic 12
+## 2313 R Programming Subsetting Vectors 36
+## 2314 R Programming Logic 6
+## 2315 R Programming Subsetting Vectors 40
+## 2316 R Programming Basic Building Blocks 14
+## 2317 R Programming Subsetting Vectors 11
+## 2318 R Programming Subsetting Vectors 17
+## 2319 R Programming Logic 18
+## 2320 R Programming Subsetting Vectors 3
+## 2321 R Programming Workspace and Files 41
+## 2322 R Programming Logic 13
+## 2323 R Programming Missing Values 8
+## 2324 R Programming Missing Values 9
+## 2325 R Programming Subsetting Vectors 33
+## 2326 R Programming Subsetting Vectors 10
+## 2327 R Programming Logic 17
+## 2328 R Programming Subsetting Vectors 37
+## 2329 R Programming Subsetting Vectors 41
+## 2330 R Programming Subsetting Vectors 15
+## 2331 R Programming Subsetting Vectors 32
+## 2332 R Programming Subsetting Vectors 8
+## 2333 R Programming Logic 18
+## 2334 R Programming Subsetting Vectors 38
+## 2335 R Programming Basic Building Blocks 40
+## 2336 R Programming Subsetting Vectors 5
+## 2337 R Programming Subsetting Vectors 8
+## 2338 R Programming Basic Building Blocks 39
+## 2339 R Programming Logic 10
+## 2340 R Programming Subsetting Vectors 32
+## 2341 R Programming Matrices and Data Frames 3
+## 2342 R Programming Matrices and Data Frames 3
+## 2343 R Programming Matrices and Data Frames 4
+## 2344 R Programming Matrices and Data Frames 34
+## 2345 R Programming Matrices and Data Frames 3
+## 2346 R Programming Matrices and Data Frames 34
+## 2347 R Programming Matrices and Data Frames 39
+## 2348 R Programming Matrices and Data Frames 35
+## 2349 R Programming Matrices and Data Frames 3
+## 2350 R Programming Matrices and Data Frames 38
+## 2351 R Programming Matrices and Data Frames 27
+## 2352 R Programming Matrices and Data Frames 9
+## 2353 R Programming Matrices and Data Frames 37
+## 2354 R Programming Matrices and Data Frames 33
+## 2355 R Programming Matrices and Data Frames 13
+## 2356 R Programming Matrices and Data Frames 14
+## 2357 R Programming Matrices and Data Frames 10
+## 2358 R Programming Matrices and Data Frames 12
+## 2359 R Programming Matrices and Data Frames 6
+## 2360 R Programming Matrices and Data Frames 7
+## 2361 R Programming Matrices and Data Frames 16
+## 2362 R Programming Matrices and Data Frames 5
+## 2363 R Programming Matrices and Data Frames 30
+## 2364 R Programming Matrices and Data Frames 26
+## 2365 R Programming Matrices and Data Frames 21
+## 2366 R Programming Matrices and Data Frames 22
+## 2367 R Programming Matrices and Data Frames 17
+## 2368 R Programming Matrices and Data Frames 18
+## 2369 R Programming Matrices and Data Frames 26
+## 2370 NA
+## 2371 R Programming Basic Building Blocks 10
+## 2372 R Programming Basic Building Blocks 25
+## 2373 R Programming Basic Building Blocks 8
+## 2374 R Programming Basic Building Blocks 23
+## 2375 R Programming Basic Building Blocks 3
+## 2376 R Programming Basic Building Blocks 14
+## 2377 R Programming Basic Building Blocks 15
+## 2378 R Programming Basic Building Blocks 23
+## 2379 R Programming Basic Building Blocks 22
+## 2380 R Programming Basic Building Blocks 18
+## 2381 R Programming Basic Building Blocks 11
+## 2382 R Programming Basic Building Blocks 21
+## 2383 R Programming Basic Building Blocks 17
+## 2384 R Programming Basic Building Blocks 12
+## 2385 R Programming Basic Building Blocks 16
+## 2386 R Programming Basic Building Blocks 25
+## 2387 R Programming Basic Building Blocks 22
+## 2388 R Programming Missing Values 12
+## 2389 R Programming Vectors 30
+## 2390 R Programming Vectors 29
+## 2391 R Programming Dates and Times 39
+## 2392 R Programming Basic Building Blocks 14
+## 2393 R Programming Logic 36
+## 2394 R Programming Basic Building Blocks 12
+## 2395 R Programming Basic Building Blocks 21
+## 2396 R Programming Basic Building Blocks 21
+## 2397 R Programming Logic 21
+## 2398 R Programming Logic 15
+## 2399 R Programming Vectors 25
+## 2400 R Programming Logic 18
+## 2401 R Programming Basic Building Blocks 23
+## 2402 R Programming Basic Building Blocks 11
+## 2403 R Programming Dates and Times 8
+## 2404 R Programming Vectors 30
+## 2405 R Programming Basic Building Blocks 15
+## 2406 R Programming Logic 14
+## 2407 R Programming Basic Building Blocks 18
+## 2408 R Programming Logic 12
+## 2409 R Programming Logic 13
+## 2410 R Programming Logic 15
+## 2411 R Programming Logic 17
+## 2412 R Programming Matrices and Data Frames 34
+## 2413 R Programming Dates and Times 38
+## 2414 R Programming Logic 20
+## 2415 R Programming Dates and Times 7
+## 2416 R Programming Missing Values 9
+## 2417 R Programming Missing Values 10
+## 2418 R Programming Dates and Times 23
+## 2419 R Programming Vectors 17
+## 2420 R Programming Basic Building Blocks 16
+## 2421 R Programming Basic Building Blocks 17
+## 2422 R Programming Vectors 18
+## 2423 R Programming Dates and Times 3
+## 2424 R Programming Vectors 23
+## 2425 R Programming Dates and Times 33
+## 2426 R Programming Dates and Times 4
+## 2427 R Programming Vectors 28
+## 2428 R Programming Vectors 6
+## 2429 R Programming Vectors 7
+## 2430 R Programming Vectors 7
+## 2431 R Programming Vectors 8
+## 2432 R Programming Vectors 11
+## 2433 R Programming Logic 54
+## 2434 R Programming Logic 55
+## 2435 R Programming Logic 39
+## 2436 R Programming Vectors 19
+## 2437 R Programming Vectors 22
+## 2438 R Programming Subsetting Vectors 13
+## 2439 R Programming Dates and Times 35
+## 2440 R Programming Dates and Times 37
+## 2441 R Programming Dates and Times 5
+## 2442 R Programming Subsetting Vectors 21
+## 2443 R Programming Subsetting Vectors 22
+## 2444 R Programming Dates and Times 9
+## 2445 R Programming Logic 23
+## 2446 R Programming Logic 27
+## 2447 R Programming Vectors 35
+## 2448 R Programming Vectors 18
+## 2449 R Programming Logic 10
+## 2450 R Programming Subsetting Vectors 11
+## 2451 R Programming Missing Values 3
+## 2452 R Programming Subsetting Vectors 14
+## 2453 R Programming Matrices and Data Frames 34
+## 2454 R Programming Logic 33
+## 2455 R Programming Missing Values 8
+## 2456 R Programming Dates and Times 22
+## 2457 R Programming Logic 35
+## 2458 R Programming Basic Building Blocks 41
+## 2459 R Programming Logic 36
+## 2460 R Programming Logic 37
+## 2461 R Programming Logic 38
+## 2462 R Programming Logic 38
+## 2463 R Programming Vectors 41
+## 2464 R Programming Dates and Times 32
+## 2465 R Programming Logic 42
+## 2466 R Programming Logic 43
+## 2467 R Programming Logic 44
+## 2468 R Programming Vectors 5
+## 2469 R Programming Logic 49
+## 2470 R Programming Logic 50
+## 2471 R Programming Logic 51
+## 2472 R Programming Logic 53
+## 2473 R Programming Logic 4
+## 2474 R Programming Logic 6
+## 2475 R Programming Logic 7
+## 2476 R Programming Logic 9
+## 2477 R Programming Matrices and Data Frames 22
+## 2478 R Programming Matrices and Data Frames 26
+## 2479 R Programming Matrices and Data Frames 27
+## 2480 R Programming Subsetting Vectors 15
+## 2481 R Programming Subsetting Vectors 17
+## 2482 R Programming Missing Values 7
+## 2483 R Programming Basic Building Blocks 39
+## 2484 R Programming Subsetting Vectors 23
+## 2485 R Programming Subsetting Vectors 26
+## 2486 R Programming Vectors 32
+## 2487 R Programming Logic 28
+## 2488 R Programming Logic 30
+## 2489 R Programming Logic 32
+## 2490 R Programming Logic 32
+## 2491 R Programming Logic 32
+## 2492 R Programming Logic 32
+## 2493 R Programming Logic 32
+## 2494 R Programming Missing Values 6
+## 2495 R Programming Logic 46
+## 2496 R Programming Logic 47
+## 2497 R Programming Basic Building Blocks 40
+## 2498 R Programming Subsetting Vectors 42
+## 2499 R Programming Matrices and Data Frames 3
+## 2500 R Programming Missing Values 17
+## 2501 R Programming Missing Values 17
+## 2502 R Programming Missing Values 17
+## 2503 R Programming Dates and Times 27
+## 2504 R Programming Logic 41
+## 2505 R Programming Missing Values 20
+## 2506 R Programming Missing Values 21
+## 2507 R Programming Missing Values 22
+## 2508 R Programming Matrices and Data Frames 33
+## 2509 R Programming Dates and Times 19
+## 2510 R Programming Basic Building Blocks 3
+## 2511 R Programming Basic Building Blocks 8
+## 2512 R Programming Basic Building Blocks 10
+## 2513 R Programming Subsetting Vectors 8
+## 2514 R Programming Subsetting Vectors 8
+## 2515 R Programming Subsetting Vectors 9
+## 2516 R Programming Subsetting Vectors 10
+## 2517 R Programming Vectors 40
+## 2518 R Programming Basic Building Blocks 33
+## 2519 R Programming Basic Building Blocks 36
+## 2520 R Programming Matrices and Data Frames 30
+## 2521 R Programming Dates and Times 18
+## 2522 R Programming Dates and Times 30
+## 2523 R Programming Dates and Times 20
+## 2524 R Programming Matrices and Data Frames 35
+## 2525 R Programming Matrices and Data Frames 37
+## 2526 R Programming Dates and Times 11
+## 2527 R Programming Vectors 33
+## 2528 R Programming Basic Building Blocks 27
+## 2529 R Programming Vectors 39
+## 2530 R Programming Missing Values 18
+## 2531 R Programming Missing Values 19
+## 2532 R Programming Dates and Times 28
+## 2533 R Programming Missing Values 4
+## 2534 R Programming Dates and Times 29
+## 2535 R Programming Subsetting Vectors 36
+## 2536 R Programming Matrices and Data Frames 13
+## 2537 R Programming Basic Building Blocks 38
+## 2538 R Programming Subsetting Vectors 41
+## 2539 R Programming Matrices and Data Frames 17
+## 2540 R Programming Dates and Times 23
+## 2541 R Programming Dates and Times 24
+## 2542 R Programming Dates and Times 27
+## 2543 R Programming Matrices and Data Frames 21
+## 2544 R Programming Dates and Times 15
+## 2545 R Programming Dates and Times 16
+## 2546 R Programming Dates and Times 28
+## 2547 R Programming Dates and Times 17
+## 2548 R Programming Matrices and Data Frames 10
+## 2549 R Programming Subsetting Vectors 37
+## 2550 R Programming Subsetting Vectors 5
+## 2551 R Programming Subsetting Vectors 3
+## 2552 R Programming Matrices and Data Frames 14
+## 2553 R Programming Subsetting Vectors 27
+## 2554 R Programming Matrices and Data Frames 18
+## 2555 R Programming Matrices and Data Frames 21
+## 2556 R Programming Dates and Times 14
+## 2557 R Programming Dates and Times 27
+## 2558 R Programming Matrices and Data Frames 6
+## 2559 R Programming Dates and Times 16
+## 2560 R Programming Matrices and Data Frames 9
+## 2561 R Programming Subsetting Vectors 34
+## 2562 R Programming Matrices and Data Frames 12
+## 2563 R Programming Basic Building Blocks 36
+## 2564 R Programming Subsetting Vectors 40
+## 2565 R Programming Matrices and Data Frames 4
+## 2566 R Programming Matrices and Data Frames 16
+## 2567 R Programming Dates and Times 12
+## 2568 R Programming Dates and Times 13
+## 2569 R Programming Subsetting Vectors 33
+## 2570 R Programming Basic Building Blocks 26
+## 2571 R Programming Subsetting Vectors 31
+## 2572 R Programming Matrices and Data Frames 7
+## 2573 R Programming Missing Values 23
+## 2574 R Programming Basic Building Blocks 25
+## 2575 R Programming Subsetting Vectors 36
+## 2576 R Programming Matrices and Data Frames 38
+## 2577 R Programming Matrices and Data Frames 3
+## 2578 R Programming Subsetting Vectors 32
+## 2579 R Programming Subsetting Vectors 29
+## 2580 R Programming Matrices and Data Frames 5
+## 2581 R Programming Basic Building Blocks 31
+## 2582 R Programming Subsetting Vectors 38
+## 2583 R Programming Subsetting Vectors 30
+## 2584 R Programming Matrices and Data Frames 39
+## 2585 NA
+## 2586 Exploratory_Data_Analysis Graphics_Devices_in_R 15
+## 2587 Exploratory_Data_Analysis Graphics_Devices_in_R 7
+## 2588 Exploratory_Data_Analysis Graphics_Devices_in_R 27
+## 2589 Exploratory_Data_Analysis Graphics_Devices_in_R 30
+## 2590 Exploratory_Data_Analysis Graphics_Devices_in_R 25
+## 2591 Exploratory_Data_Analysis Graphics_Devices_in_R 26
+## 2592 Exploratory_Data_Analysis Graphics_Devices_in_R 10
+## 2593 Exploratory_Data_Analysis Graphics_Devices_in_R 10
+## 2594 Getting and Cleaning Data Grouping and Chaining with dplyr 16
+## 2595 Getting and Cleaning Data Grouping and Chaining w NA
+## 2596 Exploratory_Data_Analysis Graphics_Devices_in_R 14
+## 2597 Exploratory_Data_Analysis Graphics_Devices_in_R 13
+## 2598 Exploratory_Data_Analysis Base_Plotting_System 12
+## 2599 Exploratory_Data_Analysis Base_Plotting_System 12
+## 2600 Exploratory_Data_Analysis Base_Plotting_System 13
+## 2601 Exploratory_Data_Analysis Clustering_Example 5
+## 2602 Exploratory_Data_Analysis Clustering_Example 8
+## 2603 Exploratory_Data_Analysis Graphics_Devices_in_R 31
+## 2604 Exploratory_Data_Analysis K_Means_Clustering 16
+## 2605 Getting and Cleaning Data Tidying Data with tidyr 19
+## 2606 Getting and Cleaning Data Tidying Data with tidyr 20
+## 2607 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 2608 Exploratory_Data_Analysis Graphics_Devices_in_R 11
+## 2609 Exploratory_Data_Analysis Graphics_Devices_in_R 12
+## 2610 Exploratory_Data_Analysis Base_Plotting_System 12
+## 2611 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 2612 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 2613 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 2614 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 2615 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 2616 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 2617 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 2618 Exploratory_Data_Analysis K_Means_Clustering 17
+## 2619 Exploratory_Data_Analysis K_Means_Clustering 18
+## 2620 Ex NA
+## 2621 Exploratory_Data_Analysis Base_Plotting_System 6
+## 2622 Exploratory_Data_Analysis Base_Plotting_System 11
+## 2623 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 2624 R Programming Looking at Data 20
+## 2625 R Programming Looking at Data 22
+## 2626 R Programming Looking at Data 26
+## 2627 R Programming Looking at Data 27
+## 2628 Exploratory_Data_Analysis Base_Plotting_System 14
+## 2629 Exploratory_Data_Analysis Base_Plotting_System 15
+## 2630 Exploratory_Data_Analysis Base_Plotting_System 15
+## 2631 R Programming Looking at Data 10
+## 2632 R Programming Looking at Data 11
+## 2633 R Programming Looking at Data 13
+## 2634 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 3
+## 2635 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 2636 R Programming Looking at Data 17
+## 2637 Exploratory_Data_Analysis Clustering_Example 13
+## 2638 Exploratory_Data_Analysis Clustering_Example 14
+## 2639 Exploratory_Data_Analysis Clustering_Example 16
+## 2640 Exploratory_Data_Analysis Clustering_Example 17
+## 2641 Exploratory_Data_Analysis Clustering_Example 18
+## 2642 Exploratory_Data_Analysis Clustering_Example 19
+## 2643 E NA
+## 2644 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 2645 Getting and Cleaning Data Tidying Data with tidyr 18
+## 2646 Getting and Cleaning Data Tidying Data with tidyr 18
+## 2647 Getting and Cleaning Data Tidying Data with tidyr 12
+## 2648 R Programming Looking at Data 16
+## 2649 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 7
+## 2650 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 11
+## 2651 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 14
+## 2652 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 2653 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 2654 R Programming Looking at Data 4
+## 2655 R Programming Looking at Data 6
+## 2656 R Programming Looking at Data 8
+## 2657 R Programming Looking at Data 9
+## 2658 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 34
+## 2659 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 35
+## 2660 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 35
+## 2661 R Programming Looking at Data 15
+## 2662 Exploratory_Data_Analysis Base_Plotting_System 6
+## 2663 Exploratory_Data_Analysis Clustering_Example 12
+## 2664 Exploratory_Data_Analysis Exploratory_Graphs 17
+## 2665 Exploratory_Data_Analysis Exploratory_Graphs 19
+## 2666 Exploratory_Data_Analysis Exploratory_Graphs 22
+## 2667 Exploratory_Data_Analysis Exploratory_Graphs 23
+## 2668 R Programming Looking NA
+## 2669 Exploratory_Data_Analysis Exploratory_Graphs 3
+## 2670 Exploratory_Data_Analysis Exploratory_Graphs 5
+## 2671 Exploratory_Data_Analysis Base_Plotting_System 16
+## 2672 Exploratory_Data_Analysis Clustering_Example 9
+## 2673 Exploratory_Data_Analysis Clustering_Example 9
+## 2674 Getting and Cleaning Data Tidying Data with tidyr 12
+## 2675 Exploratory_Data_Analysis Clustering_Example 11
+## 2676 Getting and Cleaning Data Tidying Data with tidyr 20
+## 2677 Getting and Cleaning Data Tidying Data NA
+## 2678 Exploratory_Data_Analysis Exploratory_Graphs 17
+## 2679 Exploratory_Data_Analysis K_Means_Clustering 8
+## 2680 R Programming Looking at Data 3
+## 2681 NA
+## 2682 Exploratory_Data_Analysis K_Means_Clustering 13
+## 2683 Exploratory_Data_Analysis K_Means_Clustering 15
+## 2684 Exploratory_Data_Analysis Hierarchica NA
+## 2685 Getting and Cleaning Data Tidying Data with tidyr 15
+## 2686 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 2687 Exploratory_Data_Analysis Base_Plotting_System 18
+## 2688 Exploratory_Data_Analysis Clustering_Example 10
+## 2689 Exploratory_Data_Analysis Exploratory_Graphs 15
+## 2690 Exploratory_Data_Analysis Exploratory_Graphs 16
+## 2691 Exploratory_Data_Analysis Hierarchical_Clustering 20
+## 2692 Exploratory_Data_Analysis Hierarchical_Clustering 20
+## 2693 Exploratory_Data_Analysis K_Means_Clustering 8
+## 2694 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 25
+## 2695 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 32
+## 2696 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 33
+## 2697 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 34
+## 2698 Exploratory_Data_Analysis Exploratory_Graphs 8
+## 2699 Exploratory_Data_Analysis Base_Plotting_System 16
+## 2700 Getting and Cleaning Data Grouping and Chaining with dplyr 11
+## 2701 Exploratory_Data_Analysis Hierarchical_Clustering 18
+## 2702 Exploratory_Data_Analysis Hierarchical_Clustering 20
+## 2703 Exploratory_Data_Analysis Hierarchical_Clustering 20
+## 2704 Exploratory_Data_Analysis Exploratory_Graphs 14
+## 2705 Exploratory_Data_Analysis K_Means_Clustering 8
+## 2706 Exploratory_Data_Analysis Hierarchical_Clustering 20
+## 2707 Exploratory_Data_Analysis K_Means_Clustering 9
+## 2708 Exploratory_Data_Analysis K_Means_Clustering 9
+## 2709 Exploratory_Data_Analysis K_Means_Clustering 12
+## 2710 Exploratory_Data_Analysis Hierarchical_Clustering 28
+## 2711 Getting and Cleaning Data Grouping and Chaining with dplyr 10
+## 2712 Getting and Cleaning Data Grouping and Chaining with dplyr 10
+## 2713 Exploratory_Data_Analysis Hierarchical_Clustering 8
+## 2714 Getting and Cleaning Data Tidying Data with tidyr 11
+## 2715 Exploratory_Data_Analysis Exploratory_Graphs 10
+## 2716 Exploratory_Data_Analysis Exploratory_Graphs 12
+## 2717 Exploratory_Data_Analysis Hierarchical_Clustering 24
+## 2718 Exploratory_Data_Analysis Hierarchical_Clustering 26
+## 2719 Exploratory_Data_Analysis K_Means_Clustering 8
+## 2720 Exploratory_Data_Analysis Principles_of_Analytic_Graphs 21
+## 2721 Getting and Cleaning Data Tidying Data with tidyr 6
+## 2722 Getting and Cleaning Data Tidying Data with tidyr 8
+## 2723 Exploratory_Data_Analysis Hierarchical_Clustering 27
+## 2724 Getting and Cleaning Data Grouping and Chaining with dplyr 9
+## 2725 Exploratory_Data_Analysis Hierarchical_Clustering 22
+## 2726 Getting and Cleaning Data Grouping and Chaining with dplyr 5
+## 2727 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 2728 Getting and Cleaning Data Grouping and Chaining with dplyr 7
+## 2729 Getting and Cleaning Data Grouping and Chaining with dplyr 8
+## 2730 Getting and Cleaning Data Tidying Data with tidyr 3
+## 2731 Exploratory_Data_Analysis K_Means_Clustering 8
+## 2732 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 2733 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 2734 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 2735 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 2736 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 2737 Getting and Cleaning Data Manipulatin NA
+## 2738 R Programming Dates and Times 14
+## 2739 R Programming Dates and Times 15
+## 2740 R Programming Dates and Times 3
+## 2741 R Programming Dates and Times 3
+## 2742 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 2743 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 2744 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 2745 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 2746 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 2747 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 2748 Getting and Cleaning Data Manipulating Data with dplyr 18
+## 2749 R Programming Dates and Times 12
+## 2750 R Programming Dates and Times 13
+## 2751 R Programming Dates and Times 4
+## 2752 R Programming Dates and Times 5
+## 2753 R Programming Dates and Times 16
+## 2754 R Programming Dates and Times 16
+## 2755 R Programming Dates and Times 8
+## 2756 R Programming Dates and Times 9
+## 2757 R Programming Dates and Times 7
+## 2758 R Programming Dates and Times 7
+## 2759 R Programming Dates and Times 11
+## 2760 R NA
+## 2761 R Programming Dates and Times 17
+## 2762 R Programming Basic Building Blocks 21
+## 2763 R Programming Basic Building Blocks 10
+## 2764 R Programming Basic Building Blocks 21
+## 2765 R Programming Basic Building Blocks 36
+## 2766 R Programming Basic Building Blocks 14
+## 2767 R Programming Basic Building Blocks 18
+## 2768 R Programming Basic Building Blocks 22
+## 2769 R Programming Basic Building Blocks 8
+## 2770 R Programming Basic Building Blocks 17
+## 2771 R Programming Basic Building Blocks 12
+## 2772 R Programming Basic Building Blocks 31
+## 2773 R Programming Basic Building Blocks 38
+## 2774 R Programming Basic Building Blocks 33
+## 2775 R Programming Basic Building Blocks 17
+## 2776 R Programming Basic Building Blocks 11
+## 2777 R Programming Basic Building Blocks 3
+## 2778 R Programming Basic Building Blocks 41
+## 2779 R Programming Basic Building Blocks 23
+## 2780 R Programming Basic Building Blocks 16
+## 2781 R Programming Basic Building Blocks 27
+## 2782 R Programming Basic Building Blocks 40
+## 2783 R Programming Basic Building Blocks 15
+## 2784 R Programming Basic Building Blocks 26
+## 2785 R Programming Basic Building Blocks 15
+## 2786 R Programming Basic Building Blocks 25
+## 2787 R Programming Basic Building Blocks 39
+## 2788 R Programming Basic Building Blocks 25
+## 2789 R Programming Basic Building Blocks 36
+## 2790 R Programming Basic Building Blocks 21
+## 2791 R Programming Basic Building Blocks 3
+## 2792 R Programming Basic Building Blocks 22
+## 2793 R Programming Basic Building Blocks 17
+## 2794 R Programming Basic Building Blocks 33
+## 2795 R Programming Basic Building Blocks 41
+## 2796 R Programming Basic Building Blocks 23
+## 2797 R Programming Basic Building Blocks 31
+## 2798 R Programming Basic Building Blocks 12
+## 2799 R Programming Basic Building Blocks 14
+## 2800 R Programming Basic Building Blocks 40
+## 2801 R Programming Basic Building Blocks 16
+## 2802 R Programming Basic Building Blocks 38
+## 2803 R Programming Basic Building Blocks 18
+## 2804 R Programming Basic Building Blocks 39
+## 2805 R Programming Basic Building Blocks 27
+## 2806 R Programming Basic Building Blocks 8
+## 2807 R Programming Basic Building Blocks 10
+## 2808 R Programming Basic Building Blocks 15
+## 2809 R Programming Basic Building Blocks 26
+## 2810 R Programming Basic Building Blocks 11
+## 2811 R Programming Matrices and Data Frames 16
+## 2812 R Programming Matrices and Data Frames 17
+## 2813 R Programming Matrices and Data Frames 18
+## 2814 R Programming Matrices and Data Frames 38
+## 2815 R Programming Matrices and Data Frames 21
+## 2816 R Programming Matrices and Data Frames 18
+## 2817 R Programming Matrices and Data Frames 18
+## 2818 R Programming Matrices and Data Frames 33
+## 2819 R Programming Matrices and Data Frames 34
+## 2820 R Programming Matrices and Data Frames 34
+## 2821 R Programming Matrices and Data Frames 35
+## 2822 R Programming Matrices and Data Frames 37
+## 2823 R Programming Matrices and Data Frames 3
+## 2824 R Programming Matrices and Data Frames 39
+## 2825 R Programming Matrices and Data Frames 21
+## 2826 R Programming Matrices and Data Frames 21
+## 2827 R Programming Matrices and Data Frames 22
+## 2828 R Programming Matrices and Data Frames 26
+## 2829 R Programming Matrices and Data Frames 27
+## 2830 R Programming Matrices and Data Frames 30
+## 2831 R Programming Matrices and Data Frames 13
+## 2832 R Programming Matrices and Data Frames 14
+## 2833 R Programming Matrices and Data Frames 16
+## 2834 R Programming Matrices and Data Frames 4
+## 2835 R Programming Matrices and Data Frames 5
+## 2836 R Programming Matrices and Data Frames 6
+## 2837 R Programming Matrices and Data Frames 7
+## 2838 R Programming Matrices and Data Frames 9
+## 2839 R Programming Matrices and Data Frames 10
+## 2840 R Programming Matrices and Data Frames 12
+## 2841 R Programming Basic Building Blocks 3
+## 2842 R Programming Basic Building Blocks 8
+## 2843 R Programming Basic Building Blocks 10
+## 2844 R Programming Basic Building Blocks 11
+## 2845 R Programming Basic Building Blocks 11
+## 2846 R Programming Basic Building Blocks 12
+## 2847 R Programming Basic Building Blocks 14
+## 2848 R Programming Basic Building Blocks 14
+## 2849 R Programming Basic Building Blocks 14
+## 2850 R Programming Basic Building Blocks 14
+## 2851 R Programming Basic Building Blocks 15
+## 2852 R Programming Basic Building Blocks 15
+## 2853 R Programming Basic Building Blocks 16
+## 2854 R Programming Basic Building Blocks 17
+## 2855 R Programming Basic Building Blocks 17
+## 2856 R Programming Basic Building Blocks 18
+## 2857 R Programming Basic Building Blocks 21
+## 2858 R Programming Basic Building Blocks 21
+## 2859 R Programming Basic Building Blocks 21
+## 2860 R Programming Basic Building Blocks 22
+## 2861 R Programming Basic Building Blocks 22
+## 2862 R Programming Basic Building Blocks 23
+## 2863 R Programming Basic Building Blocks 23
+## 2864 R Programming Basic Building Blocks 25
+## 2865 R Programming Basic Building Blocks 25
+## 2866 R Programming Basic Building Blocks 26
+## 2867 R Programming Basic Building Blocks 27
+## 2868 R Programming Basic Building Blocks 31
+## 2869 R Programming Basic Building Blocks 33
+## 2870 R Programming Basic Building Blocks 36
+## 2871 R Programming Basic Building Blocks 38
+## 2872 R Programming Basic Building Blocks 39
+## 2873 R Programming Basic Building Blocks 40
+## 2874 R Programming Basic Building Blocks 41
+## 2875 R Programming Workspace and Files 5
+## 2876 R Programming Workspace and Files 6
+## 2877 R Programming Workspace and Files 8
+## 2878 R Programming Workspace and Files 9
+## 2879 R Programming Workspace and Files 10
+## 2880 R Programming Workspace and Files 11
+## 2881 R Programming Workspace and Files 14
+## 2882 R Programming Workspace and Files 15
+## 2883 R Programming Workspace and Files 15
+## 2884 R Programming Workspace and Files 17
+## 2885 R Programming Workspace and Files 19
+## 2886 R Programming Workspace and Files 21
+## 2887 R Programming Workspace and Files 22
+## 2888 R Programming Workspace and Files 22
+## 2889 R Programming Workspace and Files 23
+## 2890 R Programming Workspace and Files 23
+## 2891 R Programming Workspace and Files 23
+## 2892 R Programming Workspace and Files 25
+## 2893 R Programming Workspace and Files 27
+## 2894 R Programming Workspace and Files 27
+## 2895 R Programming Workspace and Files 29
+## 2896 R Programming Workspace and Files 31
+## 2897 R Programming Workspace and Files 31
+## 2898 R Programming Workspace and Files 32
+## 2899 R Programming Workspace and Files 33
+## 2900 R Programming Workspace and Files 34
+## 2901 R Programming Workspace and Files 34
+## 2902 R Programming Workspace and Files 35
+## 2903 R Programming Workspace and Files 40
+## 2904 R Programming Workspace and Files 41
+## 2905 R Programming Workspace and Files 42
+## 2906 R Programming Vectors 5
+## 2907 R Programming Vectors 6
+## 2908 R Programming Vectors 6
+## 2909 R Programming Vectors 7
+## 2910 R Programming Vectors 8
+## 2911 R Programming Vectors 11
+## 2912 R Programming Vectors 17
+## 2913 R Programming Vectors 17
+## 2914 R Programming Vectors 17
+## 2915 R Programming Vectors 18
+## 2916 R Programming Vectors 18
+## 2917 R Programming Vectors 19
+## 2918 R Programming Vectors 22
+## 2919 R Programming Vectors 23
+## 2920 R Programming Vectors 25
+## 2921 R Programming Vectors 25
+## 2922 R Programming Vectors 28
+## 2923 R Programming Vectors 29
+## 2924 R Programming Vectors 30
+## 2925 R Programming Vectors 32
+## 2926 R Programming Vectors 32
+## 2927 R Programming Vectors 33
+## 2928 R Programming Vectors 33
+## 2929 R Programming Vectors 35
+## 2930 R Programming Vectors 39
+## 2931 R Programming Vectors 40
+## 2932 R Programming Vectors 41
+## 2933 R Programming Matrices and Data Frames 30
+## 2934 R Programming Matrices and Data Frames 33
+## 2935 R Programming Matrices and Data Frames 34
+## 2936 R Programming Matrices and Data Frames 34
+## 2937 R Programming Matrices and Data Frames 35
+## 2938 R Programming Matrices and Data Frames 37
+## 2939 R Programming Matrices and Data Frames 38
+## 2940 R Programming Matrices and Data Frames 39
+## 2941 R Programming Dates and Times 3
+## 2942 R Programming Dates and Times 4
+## 2943 R Programming Dates and Times 5
+## 2944 R Programming Dates and Times 5
+## 2945 R Programming Dates and Times 7
+## 2946 R Programming Dates and Times 8
+## 2947 R Programming Dates and Times 8
+## 2948 R Programming Dates and Times 9
+## 2949 R Programming Dates and Times 11
+## 2950 R Programming Dates and Times 12
+## 2951 R Programming Dates and Times 13
+## 2952 R Programming Dates and Times 14
+## 2953 R Programming Dates and Times 15
+## 2954 R Programming Dates and Times 16
+## 2955 R Programming Dates and Times 17
+## 2956 R Programming Missing Values 3
+## 2957 R Programming Missing Values 3
+## 2958 R Programming Missing Values 4
+## 2959 R Programming Missing Values 6
+## 2960 R Programming Missing Values 7
+## 2961 R Programming Missing Values 8
+## 2962 R Programming Missing Values 9
+## 2963 R Programming Missing Values 10
+## 2964 R Programming Missing Values 12
+## 2965 R Programming Missing Values 17
+## 2966 R Programming Missing Values 17
+## 2967 R Programming Missing Values 18
+## 2968 R Programming Missing Values 19
+## 2969 R Programming Missing Values 20
+## 2970 R Programming Missing Values 21
+## 2971 R Programming Missing Values 22
+## 2972 R Programming Missing Values 23
+## 2973 R Programming Subsetting Vectors 3
+## 2974 R Programming Subsetting Vectors 5
+## 2975 R Programming Subsetting Vectors 8
+## 2976 R Programming Subsetting Vectors 9
+## 2977 R Programming Subsetting Vectors 10
+## 2978 R Programming Subsetting Vectors 11
+## 2979 R Programming Subsetting Vectors 13
+## 2980 R Programming Subsetting Vectors 13
+## 2981 R Programming Subsetting Vectors 14
+## 2982 R Programming Subsetting Vectors 15
+## 2983 R Programming Subsetting Vectors 17
+## 2984 R Programming Subsetting Vectors 21
+## 2985 R Programming Subsetting Vectors 21
+## 2986 R Programming Subsetting Vectors 22
+## 2987 R Programming Subsetting Vectors 23
+## 2988 R Programming Subsetting Vectors 26
+## 2989 R Programming Subsetting Vectors 27
+## 2990 R Programming Subsetting Vectors 29
+## 2991 R Programming Subsetting Vectors 30
+## 2992 R Programming Subsetting Vectors 31
+## 2993 R Programming Subsetting Vectors 32
+## 2994 R Programming Subsetting Vectors 32
+## 2995 R Programming Subsetting Vectors 33
+## 2996 R Programming Subsetting Vectors 34
+## 2997 R Programming Subsetting Vectors 36
+## 2998 R Programming Subsetting Vectors 36
+## 2999 R Programming Subsetting Vectors 37
+## 3000 R Programming Subsetting Vectors 38
+## 3001 R Programming Subsetting Vectors 40
+## 3002 R Programming Subsetting Vectors 41
+## 3003 R Programming Subsetting Vectors 42
+## 3004 R Programming Logic 4
+## 3005 R Programming Logic 6
+## 3006 R Programming Logic 7
+## 3007 R Programming Logic 9
+## 3008 R Programming Logic 10
+## 3009 R Programming Logic 12
+## 3010 R Programming Logic 13
+## 3011 R Programming Logic 14
+## 3012 R Programming Logic 15
+## 3013 R Programming Logic 15
+## 3014 R Programming Logic 15
+## 3015 R Programming Logic 15
+## 3016 R Programming Logic 17
+## 3017 R Programming Logic 17
+## 3018 R Programming Logic 17
+## 3019 R Programming Logic 18
+## 3020 R Programming Logic 18
+## 3021 R Programming Logic 20
+## 3022 R Programming Logic 21
+## 3023 R Programming Logic 23
+## 3024 R Programming Logic 27
+## 3025 R Programming Logic 28
+## 3026 R Programming Logic 30
+## 3027 R Programming Logic 32
+## 3028 R Programming Logic 32
+## 3029 R Programming Logic 33
+## 3030 R Programming Logic 33
+## 3031 R Programming Logic 35
+## 3032 R Programming Logic 36
+## 3033 R Programming Logic 36
+## 3034 R Programming Logic 36
+## 3035 R Programming Logic 37
+## 3036 R Programming Logic 38
+## 3037 R Programming Logic 39
+## 3038 R Programming Logic 41
+## 3039 R Programming Logic 41
+## 3040 R Programming Logic 41
+## 3041 R Programming Logic 41
+## 3042 R Programming Logic 42
+## 3043 R Programming Logic 43
+## 3044 R Programming Logic 44
+## 3045 R Programming Logic 46
+## 3046 R Programming Logic 47
+## 3047 R Programming Logic 49
+## 3048 R Programming Logic 49
+## 3049 R Programming Logic 50
+## 3050 R Programming Logic 50
+## 3051 R Programming Logic 50
+## 3052 R Programming Logic 50
+## 3053 R Programming Logic 50
+## 3054 R Programming Logic 50
+## 3055 R Programming Logic 50
+## 3056 R Programming Logic 50
+## 3057 R Programming Logic 50
+## 3058 R Programming Logic 51
+## 3059 R Programming Logic 53
+## 3060 R Programming Logic 54
+## 3061 R Programming Logic 55
+## 3062 R Programming Matrices and Data Frames 3
+## 3063 R Programming Matrices and Data Frames 4
+## 3064 R Programming Dates and Times 18
+## 3065 R Programming Dates and Times 19
+## 3066 R Programming Dates and Times 20
+## 3067 R Programming Dates and Times 22
+## 3068 R Programming Dates and Times 23
+## 3069 R Programming Dates and Times 23
+## 3070 R Programming Dates and Times 24
+## 3071 R Programming Dates and Times 27
+## 3072 R Programming Matrices and Data Frames 3
+## 3073 R Programming Matrices and Data Frames 3
+## 3074 R Programming Matrices and Data Frames 3
+## 3075 R Programming Dates and Times 27
+## 3076 R Programming Dates and Times 28
+## 3077 R Programming Dates and Times 28
+## 3078 R Programming Dates and Times 29
+## 3079 R Programming Dates and Times 30
+## 3080 R Programming Dates and Times 32
+## 3081 R Programming Dates and Times 33
+## 3082 R Programming Dates and Times 35
+## 3083 R Programming Dates and Times 37
+## 3084 R Programming Dates and Times 38
+## 3085 R Programming Dates and Times 27
+## 3086 R Programming Dates and Times 27
+## 3087 R Programming Dates and Times 27
+## 3088 R Programming Matrices and Data Frames 16
+## 3089 R Programming Matrices and Data Frames 17
+## 3090 R Programming Matrices and Data Frames 17
+## 3091 R Programming Matrices and Data Frames 5
+## 3092 R Programming Matrices and Data Frames 6
+## 3093 R Programming Matrices and Data Frames 7
+## 3094 R Programming Matrices and Data Frames 9
+## 3095 R Programming Matrices and Data Frames 10
+## 3096 R Programming Matrices and Data Frames 12
+## 3097 R Programming Matrices and Data Frames 13
+## 3098 R Programming Dates and Times 39
+## 3099 R Programming Matrices and Data Frames 14
+## 3100 R Programming Matrices and Data Frames 16
+## 3101 R Programming Matrices and Data Frames 21
+## 3102 R Programming Matrices and Data Frames 22
+## 3103 R Programming Matrices and Data Frames 26
+## 3104 R Programming Matrices and Data Frames 18
+## 3105 R Programming Matrices and Data Frames 30
+## 3106 R Programming Matrices and Data Frames 14
+## 3107 R Programming Matrices and Data Frames 27
+## 3108 R Programming Basic Building Blocks 23
+## 3109 R Programming Basic Building Blocks 18
+## 3110 R Programming Basic Building Blocks 11
+## 3111 R Programming Basic Building Blocks 16
+## 3112 R Programming Basic Building Blocks 15
+## 3113 R Programming Basic Building Blocks 39
+## 3114 R Programming Basic Building Blocks 21
+## 3115 R Programming Basic Building Blocks 17
+## 3116 R Programming Basic Building Blocks 33
+## 3117 R Programming Basic Building Blocks 14
+## 3118 R Programming Basic Building Blocks 40
+## 3119 R Programming Basic Building Blocks 3
+## 3120 R Programming Basic Building Blocks 12
+## 3121 R Programming Basic Building Blocks 25
+## 3122 R Programming Basic Building Blocks 26
+## 3123 R Programming Basic Building Blocks 12
+## 3124 R Programming Basic Building Blocks 22
+## 3125 R Programming Basic Building Blocks 38
+## 3126 R Programming Basic Building Blocks 31
+## 3127 R Programming Basic Building Blocks 36
+## 3128 R Programming Basic Building Blocks 41
+## 3129 R Programming Basic Building Blocks 10
+## 3130 R Programming Basic Building Blocks 8
+## 3131 R Programming Basic Building Blocks 27
+## 3132 R Programming Workspace and Files 6
+## 3133 R Programming Workspace and Files 5
+## 3134 R Programming Workspace and Files 11
+## 3135 R Programming Workspace and Files 8
+## 3136 R Programming Workspace and Files 9
+## 3137 R Programming Workspace and Files 10
+## 3138 R Programming Workspace and Files 17
+## 3139 R Programming Workspace and Files 17
+## 3140 R Programming Workspace and Files 19
+## 3141 R Programming Workspace and Files 21
+## 3142 R Programming Workspace and Files 22
+## 3143 R Programming Workspace and Files 22
+## 3144 R Programming Workspace and Files 23
+## 3145 R Programming Workspace and Files 25
+## 3146 R Programming Workspace and Files 27
+## 3147 R Programming Workspace and Files 29
+## 3148 R Programming Workspace and Files 14
+## 3149 R Programming Workspace and Files 15
+## 3150 R Programming Workspace and Files 15
+## 3151 R Programming Workspace and Files 32
+## 3152 R Programming Workspace and Files 33
+## 3153 R Programming Workspace and Files 34
+## 3154 R Programming Workspace and Files 34
+## 3155 R Programming Workspace and Files 34
+## 3156 R Programming Workspace and Files 35
+## 3157 R Programming Workspace and Files 40
+## 3158 R Programming Workspace and Files 41
+## 3159 R Programming Workspace and Files 42
+## 3160 R Programming Vectors 5
+## 3161 R Programming Workspace and Files 31
+## 3162 R Programming Workspace and Files 31
+## 3163 R Programming Workspace and Files 32
+## 3164 R Programming Vectors 8
+## 3165 R Programming Vectors 11
+## 3166 R Programming Vectors 17
+## 3167 R Programming Vectors 18
+## 3168 R Programming Vectors 19
+## 3169 R Programming Vectors 22
+## 3170 R Programming Vectors 23
+## 3171 R Programming Vectors 25
+## 3172 R Programming Vectors 25
+## 3173 R Programming Vectors 28
+## 3174 R Programming Vectors 28
+## 3175 R Programming Vectors 29
+## 3176 R Programming Vectors 30
+## 3177 R Programming Vectors 30
+## 3178 R Programming Vectors 32
+## 3179 R Programming Vectors 33
+## 3180 R Programming Vectors 35
+## 3181 R Programming Vectors 39
+## 3182 R Programming Vectors 40
+## 3183 R Programming Vectors 41
+## 3184 R Programming Missing Values 3
+## 3185 R Programming Missing Values 4
+## 3186 R Programming Missing Values 6
+## 3187 R Programming Missing Values 7
+## 3188 R Programming Missing Values 8
+## 3189 R Programming Missing Values 9
+## 3190 R Programming Missing Values 10
+## 3191 R Programming Missing Values 12
+## 3192 R Programming Missing Values 17
+## 3193 R Programming Missing Values 18
+## 3194 R Programming Missing Values 19
+## 3195 R Programming Missing Values 20
+## 3196 R Programming Missing Values 20
+## 3197 R Programming Missing Values 20
+## 3198 R Programming Missing Values 21
+## 3199 R Programming Missing Values 22
+## 3200 R Programming Missing Values 23
+## 3201 R Programming Vectors 5
+## 3202 R Programming Vectors 6
+## 3203 R Programming Vectors 7
+## 3204 NA
+## 3205 R Programming Basic Building Blocks 11
+## 3206 R Programming Basic Building Blocks 12
+## 3207 R Programming Basic Building Blocks 14
+## 3208 R Programming Basic Building Blocks 16
+## 3209 R Programming Basic Building Blocks 17
+## 3210 R Programming Basic Building Blocks 3
+## 3211 R Programming Basic Building Blocks 15
+## 3212 R Programming Basic Building Blocks 10
+## 3213 R Programming Logic 41
+## 3214 R Programming Logic 41
+## 3215 R Programming Logic 42
+## 3216 R Programming Logic 43
+## 3217 R Programming Logic 44
+## 3218 R Programming Logic 46
+## 3219 R Programming Logic 47
+## 3220 R Programming Logic 49
+## 3221 R Programming Logic 50
+## 3222 R Programming Logic 51
+## 3223 R Programming Logic 53
+## 3224 R Programming Basic Building Blocks 8
+## 3225 R Programming Logic 41
+## 3226 R Programming Dates and Times 3
+## 3227 R Programming Dates and Times 4
+## 3228 R Programming Dates and Times 5
+## 3229 R Programming Dates and Times 7
+## 3230 R Programming Dates and Times 8
+## 3231 R Programming Dates and Times 9
+## 3232 R Programming Dates and Times 11
+## 3233 R Programming Dates and Times 12
+## 3234 R Programming Basic Building Blocks 18
+## 3235 R Programming Basic Building Blocks 21
+## 3236 R Programming Basic Building Blocks 21
+## 3237 R Programming Logic 54
+## 3238 R Programming Logic 55
+## 3239 R Programming Dates and Times 27
+## 3240 R Programming Dates and Times 27
+## 3241 R Programming Dates and Times 27
+## 3242 R Programming Dates and Times 27
+## 3243 R Programming Dates and Times 28
+## 3244 R Programming Dates and Times 29
+## 3245 R Programming Dates and Times 30
+## 3246 R Programming Dates and Times 32
+## 3247 R Programming Dates and Times 33
+## 3248 R Programming Dates and Times 35
+## 3249 R Programming Dates and Times 37
+## 3250 R Programming Basic Building Blocks 22
+## 3251 R Programming Basic Building Blocks 23
+## 3252 R Programming Functions 3
+## 3253 R Programming Functions 5
+## 3254 R Programming Functions 8
+## 3255 R Programming Functions 9
+## 3256 R Programming Functions 11
+## 3257 R Programming Functions 13
+## 3258 R Programming Functions 14
+## 3259 R Programming Functions 16
+## 3260 R Programming Functions 17
+## 3261 R Programming Functions 19
+## 3262 R Programming Functions 21
+## 3263 R Programming Dates and Times 38
+## 3264 R Programming Dates and Times 39
+## 3265 R Programming Functions 27
+## 3266 R Programming Basic Building Blocks 25
+## 3267 R Programming Basic Building Blocks 26
+## 3268 R Programming Basic Building Blocks 27
+## 3269 R Programming Basic Building Blocks 31
+## 3270 R Programming Basic Building Blocks 33
+## 3271 R Programming Basic Building Blocks 36
+## 3272 R Programming Basic Building Blocks 38
+## 3273 R Programming Basic Building Blocks 39
+## 3274 R Programming Basic Building Blocks 40
+## 3275 R Programming Basic Building Blocks 41
+## 3276 R Programming Functions 23
+## 3277 R Programming Functions 25
+## 3278 R Programming Dates and Times 27
+## 3279 R Programming Subsetting Vectors 31
+## 3280 R Programming Subsetting Vectors 32
+## 3281 R Programming Subsetting Vectors 33
+## 3282 R Programming Subsetting Vectors 34
+## 3283 R Programming Subsetting Vectors 36
+## 3284 R Programming Subsetting Vectors 36
+## 3285 R Programming Subsetting Vectors 36
+## 3286 R Programming Subsetting Vectors 37
+## 3287 R Programming Subsetting Vectors 38
+## 3288 R Programming Subsetting Vectors 40
+## 3289 R Programming Subsetting Vectors 41
+## 3290 R Programming Subsetting Vectors 42
+## 3291 R Programming Logic 4
+## 3292 R Programming Logic 6
+## 3293 R Programming Logic 7
+## 3294 R Programming Logic 9
+## 3295 R Programming Logic 10
+## 3296 R Programming Logic 12
+## 3297 R Programming Logic 13
+## 3298 R Programming Logic 14
+## 3299 R Programming Logic 15
+## 3300 R Programming Logic 15
+## 3301 R Programming Logic 17
+## 3302 R Programming Logic 18
+## 3303 R Programming Logic 20
+## 3304 R Programming Logic 21
+## 3305 R Programming Logic 23
+## 3306 R Programming Logic 27
+## 3307 R Programming Logic 27
+## 3308 R Programming Logic 28
+## 3309 R Programming Logic 30
+## 3310 R Programming Logic 32
+## 3311 R Programming Logic 33
+## 3312 R Programming Logic 35
+## 3313 R Programming Logic 36
+## 3314 R Programming Logic 37
+## 3315 R Programming Logic 38
+## 3316 R Programming Logic 38
+## 3317 R Programming Logic 38
+## 3318 R Programming Logic 39
+## 3319 R Programming Logic 41
+## 3320 R Programming Vectors 5
+## 3321 R Programming Vectors 6
+## 3322 R Programming Vectors 6
+## 3323 R Programming Vectors 7
+## 3324 R Programming Vectors 8
+## 3325 R Programming Vectors 11
+## 3326 R Programming Vectors 17
+## 3327 R Programming Vectors 18
+## 3328 R Programming Vectors 19
+## 3329 R Programming Vectors 22
+## 3330 R Programming Vectors 23
+## 3331 R Programming Vectors 25
+## 3332 R Programming Vectors 28
+## 3333 R Programming Vectors 29
+## 3334 R Programming Vectors 30
+## 3335 R Programming Vectors 32
+## 3336 R Programming Vectors 32
+## 3337 R Programming Vectors 33
+## 3338 R Programming Vectors 35
+## 3339 R Programming Vectors 39
+## 3340 R Programming Vectors 40
+## 3341 R Programming Vectors 41
+## 3342 R Programming Dates and Times 13
+## 3343 R Programming Dates and Times 14
+## 3344 R Programming Dates and Times 15
+## 3345 R Programming Dates and Times 16
+## 3346 R Programming Dates and Times 16
+## 3347 R Programming Dates and Times 17
+## 3348 R Programming Dates and Times 18
+## 3349 R Programming Dates and Times 19
+## 3350 R Programming Dates and Times 20
+## 3351 R Programming Dates and Times 22
+## 3352 R Programming Dates and Times 23
+## 3353 R Programming Dates and Times 24
+## 3354 R Programming Dates and Times 27
+## 3355 R Programming Dates and Times 27
+## 3356 R Programming Dates and Times 27
+## 3357 R Programming Dates and Times 27
+## 3358 R Programming Dates and Times 27
+## 3359 R Programming Workspace and Files 6
+## 3360 R Programming Workspace and Files 6
+## 3361 R Programming Workspace and Files 8
+## 3362 R Programming Workspace and Files 9
+## 3363 R Programming Workspace and Files 10
+## 3364 R Programming Workspace and Files 11
+## 3365 R Programming Workspace and Files 14
+## 3366 R Programming Workspace and Files 14
+## 3367 R Programming Workspace and Files 15
+## 3368 R Programming Workspace and Files 17
+## 3369 R Programming Workspace and Files 19
+## 3370 R Programming Workspace and Files 21
+## 3371 R Programming Workspace and Files 22
+## 3372 R Programming Workspace and Files 23
+## 3373 R Programming Workspace and Files 25
+## 3374 R Programming Workspace and Files 27
+## 3375 R Programming Workspace and Files 27
+## 3376 R Programming Workspace and Files 27
+## 3377 R Programming Workspace and Files 29
+## 3378 R Programming Workspace and Files 29
+## 3379 R Programming Workspace and Files 31
+## 3380 R Programming Workspace and Files 32
+## 3381 R Programming Workspace and Files 33
+## 3382 R Programming Workspace and Files 34
+## 3383 R Programming Workspace and Files 35
+## 3384 R Programming Workspace and Files 40
+## 3385 R Programming Workspace and Files 41
+## 3386 R Programming Workspace and Files 42
+## 3387 R Programming Functions 27
+## 3388 R Programming Functions 27
+## 3389 R Programming Functions 28
+## 3390 R Programming Functions 32
+## 3391 R Programming Functions 34
+## 3392 R Programming Functions 35
+## 3393 R Programming Functions 35
+## 3394 R Programming Functions 36
+## 3395 R Programming Functions 38
+## 3396 R Programming Functions 40
+## 3397 R Programming Functions 41
+## 3398 R Programming Functions 42
+## 3399 R Programming Functions 43
+## 3400 R Programming Functions 47
+## 3401 R Programming Functions 48
+## 3402 R Programming Functions 48
+## 3403 R Programming Functions 48
+## 3404 R Programming Functions 50
+## 3405 R Programming Functions 51
+## 3406 R Programming Functions 52
+## 3407 R Programming Missing Values 9
+## 3408 R Programming Missing Values 9
+## 3409 R Programming Missing Values 10
+## 3410 R Programming Missing Values 12
+## 3411 R Programming Missing Values 17
+## 3412 R Programming Missing Values 18
+## 3413 R Programming Missing Values 19
+## 3414 R Programming Missing Values 20
+## 3415 R Programming Missing Values 20
+## 3416 R Programming Missing Values 20
+## 3417 R Programming Missing Values 21
+## 3418 R Programming Missing Values 22
+## 3419 R Programming Missing Values 23
+## 3420 R Programming Subsetting Vectors 3
+## 3421 R Programming Subsetting Vectors 5
+## 3422 R Programming Subsetting Vectors 8
+## 3423 R Programming Subsetting Vectors 8
+## 3424 R Programming Subsetting Vectors 8
+## 3425 R Programming Subsetting Vectors 8
+## 3426 R Programming Subsetting Vectors 9
+## 3427 R Programming Subsetting Vectors 10
+## 3428 R Programming Subsetting Vectors 10
+## 3429 R Programming Subsetting Vectors 11
+## 3430 R Programming Subsetting Vectors 13
+## 3431 R Programming Subsetting Vectors 14
+## 3432 R Programming Subsetting Vectors 15
+## 3433 R Programming Subsetting Vectors 17
+## 3434 R Programming Subsetting Vectors 21
+## 3435 R Programming Subsetting Vectors 21
+## 3436 R Programming Subsetting Vectors 22
+## 3437 R Programming Subsetting Vectors 23
+## 3438 R Programming Subsetting Vectors 26
+## 3439 R Programming Workspace and Files 5
+## 3440 R Programming Missing Values 3
+## 3441 R Programming Missing Values 3
+## 3442 R Programming Missing Values 4
+## 3443 R Programming Missing Values 4
+## 3444 R Programming Missing Values 6
+## 3445 R Programming Missing Values 7
+## 3446 R Programming Missing Values 8
+## 3447 R Programming Subsetting Vectors 30
+## 3448 R Programming Subsetting Vectors 27
+## 3449 R Programming Subsetting Vectors 29
+## 3450 R Programming Dates and Times 16
+## 3451 Getting and Cleaning Data Tidying Data with tidyr 19
+## 3452 R Programming Dates and Times 5
+## 3453 R Programming Dates and Times 7
+## 3454 R Programming Dates and Times 14
+## 3455 R Programming Dates and Times 15
+## 3456 R Programming Dates and Times 16
+## 3457 Getting and Cleaning Data Tidying Data with tidyr 8
+## 3458 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 3459 Getting and Cleaning Data Tidying Data with tidyr 11
+## 3460 Getting and Cleaning Data Tidying Data with tidyr 6
+## 3461 Getting and Cleaning Data Tidying Data with tidyr 15
+## 3462 R Programming Dates and Times 3
+## 3463 Getting and Cleaning Data Tidying Data with tid NA
+## 3464 R Programming Basic Building Blocks 27
+## 3465 R Programming Dates and Times 13
+## 3466 R Programming Logic 15
+## 3467 R Programming Missing Values 3
+## 3468 R Pro NA
+## 3469 R Programming Missing Values 20
+## 3470 Getting and Cleaning Data Grouping and C NA
+## 3471 R Programming Basic Building Blocks 26
+## 3472 Getting and Cleaning Data Grouping and Chaining with dplyr 7
+## 3473 R Programming Dates and Times 20
+## 3474 Getting and Cleaning Data Tidying Data with tidyr 20
+## 3475 R Programming Subsetting Vectors 13
+## 3476 R Programming Dates and Times 4
+## 3477 R Programming Workspace and Files 29
+## 3478 R Programming Dates and Times 17
+## 3479 R Programming Dates and Times 8
+## 3480 Getting and Cleaning Data Tidying Data with tidyr 6
+## 3481 Getting and Cleaning Data Grouping and Chaining with dplyr 8
+## 3482 R Programming Dates and Times 9
+## 3483 R Programming Dates and Times 11
+## 3484 R Programming Vectors 23
+## 3485 R Programming Subsetting Vectors 9
+## 3486 Getting and Cleaning Data Tidying Data with tidyr 12
+## 3487 Getting and Cleaning Data Grouping and Chaining with dplyr 10
+## 3488 R Programming Logic 32
+## 3489 Getting and Cleaning Data Grouping and Chaining with dplyr 11
+## 3490 Getting and Cleaning Data Tidying Data with tidyr 18
+## 3491 R Programming Missing Values 19
+## 3492 R Programming Matrices and Data Frames 16
+## 3493 Getting and Cleaning Data Grouping and Chaining with dplyr 17
+## 3494 Getting and Cleaning Data Tidying Data with tidyr 6
+## 3495 R Programming Dates and Times 19
+## 3496 Getting and Cleaning Data Grouping and Chaining with dplyr 22
+## 3497 R Programming Dates and Times 12
+## 3498 Getting and Cleaning Data Tidying Data with tidyr 6
+## 3499 Getting and Cleaning Data Grouping and Chaining with dplyr 9
+## 3500 R Programming Subsetting Vectors 11
+## 3501 Getting and Cleaning Data Manipulating Data with dplyr 22
+## 3502 R Programming Lo NA
+## 3503 R Programming Workspace and Files 27
+## 3504 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 3505 Getting and Cleaning Data Grouping and Chaining with dplyr 16
+## 3506 R Programming Logic 12
+## 3507 R Programming Logic 13
+## 3508 R Programming Logic 15
+## 3509 R Programming Logic 17
+## 3510 R Programming Vectors 18
+## 3511 R Programming Vectors 19
+## 3512 R Programming Subsetting Vectors 10
+## 3513 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 3514 R Programming Logic 30
+## 3515 R Programming Vectors 5
+## 3516 R Programming Vectors 6
+## 3517 R Programming Workspace and Files 25
+## 3518 R Programming Looking at Data 13
+## 3519 R Programming Basic Building Blocks 10
+## 3520 R Programming Matrices and Data Frames 16
+## 3521 Getting and Cleaning Data Tidying Data with tidyr 3
+## 3522 R Programming Missing Values 21
+## 3523 R Programming Missing Values 22
+## 3524 Getting and Cleaning Data Tidying Data with tidyr 6
+## 3525 R Programming Basic Building Blocks 25
+## 3526 R Programming Logic 28
+## 3527 R Programming Subsetting Vectors 8
+## 3528 R Programming Workspace and Files 22
+## 3529 R Programming Workspace and Files 23
+## 3530 R Programming Looking at Data 27
+## 3531 R Programming Vectors 6
+## 3532 R Programming Vectors 7
+## 3533 R Programming Vectors 8
+## 3534 R Programming Vectors 11
+## 3535 R Programming Dates and Times 18
+## 3536 R Programming Vectors 17
+## 3537 R Programming Subsetting Vectors 22
+## 3538 Getting and Cleaning Data Grouping and Chaining with dplyr 5
+## 3539 R Programming Subsetting Vectors 5
+## 3540 R Programming Vectors 25
+## 3541 Getting and Cleaning Data Manipulating Data with dplyr 18
+## 3542 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 3543 R Programming Vectors 30
+## 3544 R Programming Vectors 32
+## 3545 R Programming Vectors 33
+## 3546 R Programming Vectors 35
+## 3547 R Programming Vectors 39
+## 3548 R Programming Logic 14
+## 3549 R Programming Workspace and Files 8
+## 3550 R Programming Logic 18
+## 3551 R Programming Subsetting Vectors 23
+## 3552 R Programming Vectors 22
+## 3553 R Programming Logic 27
+## 3554 R Programming Workspace and Files 21
+## 3555 R Programming Workspace and Files 19
+## 3556 R Programming Missing Values 10
+## 3557 R Programming Missing Values 18
+## 3558 R Programming Missing Values 17
+## 3559 R Programming Looking at Data 11
+## 3560 R Programming Basic Building Blocks 11
+## 3561 R Programming Missing Values 20
+## 3562 R Programming Matrices and Data Frames 17
+## 3563 R Programming Matrices and Data Frames 18
+## 3564 R Programming Missing Values 23
+## 3565 R Programming Subsetting Vectors 3
+## 3566 R Programming Basic Building Blocks 21
+## 3567 R Programming Basic Building Blocks 22
+## 3568 R Programming Basic Building Blocks 23
+## 3569 R Programming Looking at Data 28
+## 3570 R Programming Looking at Data 26
+## 3571 R Programming Logic 6
+## 3572 R Programming Logic 7
+## 3573 R Programming Subsetting Vectors 14
+## 3574 R Programming Subsetting Vectors 15
+## 3575 Getting and Cleaning Data Grouping and Chaining with dplyr 21
+## 3576 R Programming Subsetting Vectors 21
+## 3577 R Programming Workspace and Files 9
+## 3578 R Programming Workspace and Files 10
+## 3579 R Programming Subsetting Vectors 26
+## 3580 R Programming Subsetting Vectors 27
+## 3581 R Programming Vectors 28
+## 3582 R Programming Vectors 29
+## 3583 R Programming Logic 4
+## 3584 R Programming Missing Values 12
+## 3585 R Programming Looking at Data 10
+## 3586 R Programming Logic 9
+## 3587 R Programming Logic 10
+## 3588 R Programming Workspace and Files 5
+## 3589 R Programming Missing Values 4
+## 3590 R Programming Basic Building Blocks 14
+## 3591 R Programming NA
+## 3592 R Programming Logic 20
+## 3593 R Programming Logic 21
+## 3594 R Programming Logic 23
+## 3595 R Programming Workspace and Files 17
+## 3596 R Programming Looking at Data 8
+## 3597 R Programming Looking at Data 4
+## 3598 R Programming Looking at Data 9
+## 3599 R Programming Matrices and Data Frames 6
+## 3600 R Programming Matrices and Data Frames 10
+## 3601 R Programming Basic Building Blocks 12
+## 3602 R Programming Looking at Data 15
+## 3603 R Programming Workspace and Files 6
+## 3604 R Programming Matrices and Data Frames 13
+## 3605 R Programming Basic Building Blocks 18
+## 3606 R Programming Basic Building Blocks 17
+## 3607 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 3608 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 3609 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 3610 R Programming Looking at Data 22
+## 3611 R Programming Matrices and Data Frames 3
+## 3612 R Programming Matrices and Data Frames 5
+## 3613 R Programming Matrices and Data Frames 4
+## 3614 R Programming Matrices and Data Frames 7
+## 3615 R Programming Subsetting Vectors 17
+## 3616 R Programming Basic Building Blocks 3
+## 3617 R Programming Subsetting Vectors 29
+## 3618 R Programming Missing Values 6
+## 3619 R Programming Workspace and Files 11
+## 3620 R Programming Workspace and Files 14
+## 3621 R Programming Looking at Data 6
+## 3622 R Programming Subsetti NA
+## 3623 R Programming Missing Values 8
+## 3624 R Programming Looking at Data 20
+## 3625 R Programming Matrices and Data Frames 9
+## 3626 R Programming Matrices and Data Frames 3
+## 3627 R Programming Basic Building Blocks 15
+## 3628 R Programming Matrices and Data Frames 12
+## 3629 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 3630 R Programming Workspace and Files 15
+## 3631 R Programming Missing Values 9
+## 3632 R Programming Basic Building Blocks 16
+## 3633 R Programming Looking at Data 3
+## 3634 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 3635 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 3636 R Programming Looking at Data 17
+## 3637 R Programming Matrices and Data Frames 14
+## 3638 R Programming Looking at Data 16
+## 3639 R Programming Basic Building Blocks 8
+## 3640 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 3641 R Programming Missing Values 7
+## 3642 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 3643 R Programming Looking at Data 3
+## 3644 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 3645 R Programming Functions 11
+## 3646 R Programming Functions 28
+## 3647 R Programming Fu NA
+## 3648 R Programming Functions 3
+## 3649 R Programming Functions 25
+## 3650 R Programming Functions 32
+## 3651 R Programming Functions 5
+## 3652 R Programming Functions 8
+## 3653 R Programming Functions 13
+## 3654 R Programming Functions 21
+## 3655 R Programming Functions 16
+## 3656 R Programming Functions 27
+## 3657 R Programming Functions 34
+## 3658 R Programming Functions 23
+## 3659 R Programming Functions 14
+## 3660 R Programming Functions 9
+## 3661 R Programming Functions 8
+## 3662 R Programming Functions 19
+## 3663 R Programming Functions 17
+## 3664 R Programming Vectors 19
+## 3665 R Programming Vectors 18
+## 3666 R Programming Vectors 32
+## 3667 R Programming Vectors 22
+## 3668 R Programming Missing Values 3
+## 3669 R Programming Missing Values 4
+## 3670 R Programming Missing Values 6
+## 3671 R Programming Missing Values 7
+## 3672 R Programming Missing Values 8
+## 3673 R Programming Vectors 23
+## 3674 R Programming Vectors 25
+## 3675 R Programming Vectors 28
+## 3676 R Programming Vectors 29
+## 3677 R Programming Vectors 30
+## 3678 R Programming Vectors 32
+## 3679 R Programming Missing Values 20
+## 3680 R Programming Missing Values 21
+## 3681 R Programming Vectors 33
+## 3682 R Programming Vectors 35
+## 3683 R Programming Vectors 39
+## 3684 R Programming Vectors 40
+## 3685 R Programming Vectors 41
+## 3686 R Programming Missing Values 9
+## 3687 R Programming Missing Values 10
+## 3688 R Programming Missing Values 12
+## 3689 R Programming Missing Values 17
+## 3690 R Programming Missing Values 18
+## 3691 R Programming Missing Values 19
+## 3692 R Programming Subsetting Vectors 34
+## 3693 R Programming Subsetting Vectors 36
+## 3694 R Programming Subsetting Vectors 37
+## 3695 R Programming Subsetting Vectors 38
+## 3696 R Programming Subsetting Vectors 40
+## 3697 R Programming Subsetting Vectors 41
+## 3698 R Programming Subsetting Vectors 42
+## 3699 R Programming Logic 4
+## 3700 R Programming Logic 6
+## 3701 R Programming Logic 7
+## 3702 R Programming Logic 9
+## 3703 R Programming Logic 10
+## 3704 R Programming Logic 12
+## 3705 R Programming Logic 13
+## 3706 R Programming Logic 14
+## 3707 R Programming Logic 15
+## 3708 R Programming Missing Values 22
+## 3709 R Programming Missing Values 23
+## 3710 R Programming Subsetting Vectors 3
+## 3711 R Programming Subsetting Vectors 5
+## 3712 R Programming Subsetting Vectors 8
+## 3713 R Programming Subsetting Vectors 8
+## 3714 R Programming Subsetting Vectors 9
+## 3715 R Programming Subsetting Vectors 10
+## 3716 R Programming Subsetting Vectors 11
+## 3717 R Programming Subsetting Vectors 13
+## 3718 R Programming Subsetting Vectors 13
+## 3719 R Programming Subsetting Vectors 14
+## 3720 R Programming Subsetting Vectors 15
+## 3721 R Programming Subsetting Vectors 17
+## 3722 R Programming Subsetting Vectors 21
+## 3723 R Programming Subsetting Vectors 22
+## 3724 R Programming Subsetting Vectors 23
+## 3725 R Programming Subsetting Vectors 26
+## 3726 R Programming Subsetting Vectors 27
+## 3727 R Programming Subsetting Vectors 29
+## 3728 R Programming Subsetting Vectors 30
+## 3729 R Programming Subsetting Vectors 31
+## 3730 R Programming Subsetting Vectors 32
+## 3731 R Programming Subsetting Vectors 33
+## 3732 R Programming Logic 53
+## 3733 R Programming Logic 54
+## 3734 R Programming Logic 55
+## 3735 R Programming Dates and Times 3
+## 3736 R Programming Dates and Times 4
+## 3737 R Programming Dates and Times 5
+## 3738 R Programming Dates and Times 7
+## 3739 R Programming Dates and Times 8
+## 3740 R Programming Dates and Times 9
+## 3741 R Programming Dates and Times 11
+## 3742 R Programming Dates and Times 12
+## 3743 R Programming Dates and Times 13
+## 3744 R Programming Dates and Times 14
+## 3745 R Programming Dates and Times 15
+## 3746 R Programming Dates and Times 16
+## 3747 R Programming Dates and Times 17
+## 3748 R Programming Dates and Times 18
+## 3749 R Programming Dates and Times 19
+## 3750 R Programming Dates and Times 20
+## 3751 R Programming Dates and Times 22
+## 3752 R Programming Dates and Times 23
+## 3753 R Programming Dates and Times 24
+## 3754 R Programming Dates and Times 27
+## 3755 R Programming Dates and Times 28
+## 3756 R Programming Dates and Times 29
+## 3757 R Programming Dates and Times 30
+## 3758 R Programming Dates and Times 32
+## 3759 R Programming Dates and Times 33
+## 3760 R Programming Dates and Times 35
+## 3761 R Programming Dates and Times 37
+## 3762 R Programming Dates and Times 38
+## 3763 R Programming Dates and Times 39
+## 3764 R Programming Functions 3
+## 3765 R Programming Functions 5
+## 3766 R Programming Functions 5
+## 3767 R Programming Functions 8
+## 3768 R Programming Functions 9
+## 3769 R Programming Functions 11
+## 3770 R Programming Functions 13
+## 3771 R Programming Functions 14
+## 3772 R Programming Functions 16
+## 3773 R Programming Functions 16
+## 3774 R Programming Functions 16
+## 3775 R Programming Functions 17
+## 3776 R Programming Functions 19
+## 3777 R Programming Functions 21
+## 3778 R Programming Functions 23
+## 3779 R Programming Functions 25
+## 3780 R Programming Functions 27
+## 3781 R Programming Functions 28
+## 3782 R Programming Functions 32
+## 3783 R Programming Functions 34
+## 3784 R Programming Functions 34
+## 3785 R Programming Functions 35
+## 3786 R Programming Functions 35
+## 3787 R Programming Functions 36
+## 3788 R Programming Functions 38
+## 3789 R Programming Functions 40
+## 3790 R Programming Functions 41
+## 3791 R Programming Functions 42
+## 3792 R Programming Functions 42
+## 3793 R Programming Functions 42
+## 3794 R Programming Functions 42
+## 3795 R Programming Functions 43
+## 3796 R Programming Functions 47
+## 3797 R Programming Functions 47
+## 3798 R Programming Functions 47
+## 3799 R Programming Functions 48
+## 3800 R Programming Functions 50
+## 3801 R Programming Functions 51
+## 3802 R Programming Functions 52
+## 3803 R Programming Matrices and Data Frames 3
+## 3804 R Programming Matrices and Data Frames 3
+## 3805 R Programming Matrices and Data Frames 4
+## 3806 R Programming Matrices and Data Frames 5
+## 3807 R Programming Matrices and Data Frames 6
+## 3808 R Programming Matrices and Data Frames 7
+## 3809 R Programming Matrices and Data Frames 9
+## 3810 R Programming Matrices and Data Frames 10
+## 3811 R Programming Matrices and Data Frames 12
+## 3812 R Programming Matrices and Data Frames 13
+## 3813 R Programming Matrices and Data Frames 14
+## 3814 R Programming Matrices and Data Frames 16
+## 3815 R Programming Matrices and Data Frames 17
+## 3816 R Programming Matrices and Data Frames 18
+## 3817 R Programming Matrices and Data Frames 21
+## 3818 R Programming Matrices and Data Frames 22
+## 3819 R Programming Matrices and Data Frames 26
+## 3820 R Programming Matrices and Data Frames 27
+## 3821 R Programming Matrices and Data Frames 30
+## 3822 R Programming Matrices and Data Frames 33
+## 3823 R Programming Matrices and Data Frames 34
+## 3824 R Programming Matrices and Data Frames 34
+## 3825 R Programming Matrices and Data Frames 35
+## 3826 R Programming Matrices and Data Frames 37
+## 3827 R Programming Matrices and Data Frames 38
+## 3828 R Programming Matrices and Data Frames 39
+## 3829 R Programming Logic 17
+## 3830 R Programming Logic 18
+## 3831 R Programming Logic 20
+## 3832 R Programming Logic 21
+## 3833 R Programming Logic 23
+## 3834 R Programming Logic 27
+## 3835 R Programming Logic 28
+## 3836 R Programming Logic 30
+## 3837 R Programming Logic 32
+## 3838 R Programming Logic 33
+## 3839 R Programming Logic 35
+## 3840 R Programming Logic 36
+## 3841 R Programming Logic 37
+## 3842 R Programming Logic 38
+## 3843 R Programming Logic 39
+## 3844 R Programming Logic 41
+## 3845 R Programming Logic 42
+## 3846 R Programming Logic 43
+## 3847 R Programming Logic 44
+## 3848 R Programming Logic 46
+## 3849 R Programming Logic 47
+## 3850 R Programming Logic 49
+## 3851 R Programming Logic 50
+## 3852 R Programming Logic 51
+## 3853 R Programming Vectors 5
+## 3854 R Programming Vectors 5
+## 3855 R Programming Vectors 6
+## 3856 R Programming Vectors 7
+## 3857 R Programming Vectors 7
+## 3858 R Programming Vectors 8
+## 3859 R Programming Vectors 11
+## 3860 R Programming Vectors 17
+## 3861 Exploratory_Data_Analysis Plotting_Systems 5
+## 3862 Exploratory_Data_Analysis Plotting_Systems 7
+## 3863 Exploratory_Data_Analysis Plotting_Systems 7
+## 3864 Exploratory_Data_Analysis Plotting_Systems 9
+## 3865 Exploratory_Data_Analysis Plotting_Systems 11
+## 3866 Exploratory_Data_Analysis Plotting_Systems 16
+## 3867 Exploratory_Data_Analysis Plotting_Systems 17
+## 3868 Exploratory_Data_Analysis Plotting_Systems 19
+## 3869 Exploratory_Data_Analysis Plotting_Systems 19
+## 3870 Exploratory_Data_Analysis Plotting_Systems 20
+## 3871 Exploratory_Data_Analysis Plotting_Systems 21
+## 3872 Exploratory_Data_Analysis Plotting_Systems 25
+## 3873 Exploratory_Data_Analysis Plotting_Systems 26
+## 3874 Exploratory_Data_Analysis Plotting_Systems 27
+## 3875 Exploratory_Data_Analysis Plotting_Systems 28
+## 3876 Exploratory_Data_Analysis Plotting_Systems 31
+## 3877 Exploratory_Data_Analysis Plotting_Systems 32
+## 3878 Exploratory_Data_Analysis Plotting_Systems 33
+## 3879 Exploratory_Data_Analysis Plotting_Systems 34
+## 3880 Exploratory_Data_Analysis Plotting_Systems 35
+## 3881 Exploratory_Data_Analysis Plotting_Systems 36
+## 3882 Exploratory_Data_Analysis Plotting_Systems 38
+## 3883 Exploratory_Data_Analysis Plotting_Systems 39
+## 3884 Exploratory_Data_Analysis Plotting_Systems 40
+## 3885 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 3886 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 3887 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 3888 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 3889 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 3890 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 3891 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 3892 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 3893 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 3894 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 3895 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 3896 Getting and Cleaning Data Manipulating Data with dplyr 18
+## 3897 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 3898 Getting and Cleaning Data Manipulating Data with dplyr 22
+## 3899 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 3900 Getting and Cleaning Data Manipulating Data with dplyr 24
+## 3901 Getting and Cleaning Data Manipulating Data with dplyr 25
+## 3902 Getting and Cleaning Data Manipulating Data with dplyr 26
+## 3903 Getting and Cleaning Data Manipulating Data with dplyr 27
+## 3904 Getting and Cleaning Data Manipulating Data with dplyr 28
+## 3905 Getting and Cleaning Data Manipulating Data with dplyr 30
+## 3906 Getting and Cleaning Data Manipulating Data with dplyr 33
+## 3907 Getting and Cleaning Data Manipulating Data with dplyr 34
+## 3908 Getting and Cleaning Data Manipulating Data with dplyr 35
+## 3909 Getting and Cleaning Data Manipulating Data with dplyr 36
+## 3910 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 3911 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 3912 Getting and Cleaning Data Manipulating Data with dplyr 39
+## 3913 Getting and Cleaning Data Manipulating Data with dplyr 40
+## 3914 Getting and Cleaning Data Manipulating Data with dplyr 41
+## 3915 Getting and Cleaning Data Manipulating Data with dplyr 44
+## 3916 Getting and Cleaning Data Manipulating Data with dplyr 45
+## 3917 Getting and Cleaning Data Manipulating Data with dplyr 46
+## 3918 Getting and Cleaning Data Manipulating Data with dplyr 47
+## 3919 Getting and Cleaning Data Manipulating Data with dplyr 48
+## 3920 Getting and Cleaning Data Manipulating Data with dplyr 49
+## 3921 Getting and Cleaning Data Manipulating Data with dplyr 50
+## 3922 Getting and Cleaning Data Manipulating Data with dplyr 53
+## 3923 Getting and Cleaning Data Manipulating Data with dplyr 55
+## 3924 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 3925 Getting and Cleaning Data Manipulating Data with dplyr 57
+## 3926 Getting and Cleaning Data Manipulating Data with dplyr 61
+## 3927 Getting and Cleaning Data Manipulating Data with dplyr 62
+## 3928 Getting and Cleaning Data Manipulating Data with dplyr 63
+## 3929 Exploratory_Data_Analysis Base_Plotting_System 54
+## 3930 Exploratory_Data_Analysis Base_Plotting_System 56
+## 3931 Exploratory_Data_Analysis Base_Plotting_System 58
+## 3932 Exploratory_Data_Analysis Base_Plotting_System 60
+## 3933 Exploratory_Data_Analysis Base_Plotting_System 60
+## 3934 Exploratory_Data_Analysis Base_Plotting_System 60
+## 3935 Exploratory_Data_Analysis Base_Plotting_System 62
+## 3936 Exploratory_Data_Analysis Base_Plotting_System 64
+## 3937 Exploratory_Data_Analysis Base_Plotting_System 67
+## 3938 Exploratory_Data_Analysis Base_Plotting_System 68
+## 3939 Exploratory_Data_Analysis Base_Plotting_System 69
+## 3940 Getting and Cleaning Data Grouping and Chaining with dplyr 34
+## 3941 Getting and Cleaning Data Grouping and Chaining with dplyr 35
+## 3942 Getting and Cleaning Data Grouping and Chaining with dplyr 39
+## 3943 Getting and Cleaning Data Grouping and Chaining with dplyr 42
+## 3944 Getting and Cleaning Data Grouping and Chaining with dplyr 43
+## 3945 Getting and Cleaning Data Grouping and Chaining with dplyr 45
+## 3946 Getting and Cleaning Data Grouping and Chaining with dplyr 48
+## 3947 Getting and Cleaning Data Grouping and Chaining with dplyr 49
+## 3948 Getting and Cleaning Data Grouping and Chaining with dplyr 49
+## 3949 Getting and Cleaning Data Grouping and Chaining with dplyr 49
+## 3950 Getting and Cleaning Data Grouping and Chaining with dplyr 50
+## 3951 Getting and Cleaning Data Grouping and Chaining with dplyr 51
+## 3952 Getting and Cleaning Data Grouping and Chaining with dplyr 53
+## 3953 Getting and Cleaning Data Grouping and Chaining with dplyr 54
+## 3954 Getting and Cleaning Data Grouping and Chaining with dplyr 55
+## 3955 R Programming Looking at Data 3
+## 3956 R Programming Looking at Data 3
+## 3957 R Programming Looking at Data 4
+## 3958 R Programming Looking at Data 6
+## 3959 Getting and Cleaning Data Grouping and Chaining with dplyr 5
+## 3960 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 3961 Getting and Cleaning Data Grouping and Chaining with dplyr 7
+## 3962 Getting and Cleaning Data Grouping and Chaining with dplyr 8
+## 3963 Getting and Cleaning Data Grouping and Chaining with dplyr 9
+## 3964 Getting and Cleaning Data Grouping and Chaining with dplyr 10
+## 3965 Getting and Cleaning Data Grouping and Chaining with dplyr 11
+## 3966 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 3967 Getting and Cleaning Data Grouping and Chaining with dplyr 16
+## 3968 Getting and Cleaning Data Grouping and Chaining with dplyr 17
+## 3969 Getting and Cleaning Data Grouping and Chaining with dplyr 21
+## 3970 Getting and Cleaning Data Grouping and Chaining with dplyr 22
+## 3971 Getting and Cleaning Data Grouping and Chaining with dplyr 23
+## 3972 Getting and Cleaning Data Grouping and Chaining with dplyr 25
+## 3973 Getting and Cleaning Data Grouping and Chaining with dplyr 26
+## 3974 Getting and Cleaning Data Grouping and Chaining with dplyr 26
+## 3975 Getting and Cleaning Data Grouping and Chaining with dplyr 27
+## 3976 Getting and Cleaning Data Grouping and Chaining with dplyr 31
+## 3977 Getting and Cleaning Data Grouping and Chaining with dplyr 32
+## 3978 Getting and Cleaning Data Grouping and Chaining with dplyr 33
+## 3979 Getting and Cleaning Data Grouping and Chaining with dplyr 34
+## 3980 Exploratory_Data_Analysis Base_Plotting_System 18
+## 3981 Exploratory_Data_Analysis Base_Plotting_System 19
+## 3982 Exploratory_Data_Analysis Base_Plotting_System 20
+## 3983 Exploratory_Data_Analysis Base_Plotting_System 20
+## 3984 Exploratory_Data_Analysis Base_Plotting_System 22
+## 3985 Exploratory_Data_Analysis Base_Plotting_System 23
+## 3986 Exploratory_Data_Analysis Base_Plotting_System 23
+## 3987 Exploratory_Data_Analysis Base_Plotting_System 24
+## 3988 Exploratory_Data_Analysis Base_Plotting_System 25
+## 3989 Exploratory_Data_Analysis Base_Plotting_System 26
+## 3990 Exploratory_Data_Analysis Base_Plotting_System 27
+## 3991 Exploratory_Data_Analysis Base_Plotting_System 28
+## 3992 Exploratory_Data_Analysis Base_Plotting_System 30
+## 3993 Exploratory_Data_Analysis Base_Plotting_System 31
+## 3994 Exploratory_Data_Analysis Base_Plotting_System 32
+## 3995 Exploratory_Data_Analysis Base_Plotting_System 33
+## 3996 Exploratory_Data_Analysis Base_Plotting_System 36
+## 3997 Exploratory_Data_Analysis Base_Plotting_System 40
+## 3998 Exploratory_Data_Analysis Base_Plotting_System 43
+## 3999 R Programming Looking at Data 8
+## 4000 R Programming Looking at Data 9
+## 4001 R Programming Looking at Data 10
+## 4002 R Programming Looking at Data 11
+## 4003 R Programming Looking at Data 13
+## 4004 R Programming Looking at Data 15
+## 4005 R Programming Looking at Data 16
+## 4006 R Programming Looking at Data 17
+## 4007 R Programming Looking at Data 20
+## 4008 R Programming Looking at Data 20
+## 4009 R Programming Looking at Data 22
+## 4010 R Programming Looking at Data 26
+## 4011 R Programming Looking at Data 27
+## 4012 R Programming Looking at Data 28
+## 4013 Exploratory_Data_Analysis Base_Plotting_System 6
+## 4014 Exploratory_Data_Analysis Base_Plotting_System 11
+## 4015 Exploratory_Data_Analysis Base_Plotting_System 12
+## 4016 Exploratory_Data_Analysis Base_Plotting_System 13
+## 4017 Exploratory_Data_Analysis Base_Plotting_System 14
+## 4018 Exploratory_Data_Analysis Base_Plotting_System 15
+## 4019 Exploratory_Data_Analysis Base_Plotting_System 16
+## 4020 Exploratory_Data_Analysis Clustering_Example 12
+## 4021 Exploratory_Data_Analysis Clustering_Example 13
+## 4022 Exploratory_Data_Analysis Clustering_Example 14
+## 4023 Exploratory_Data_Analysis Clustering_Example 16
+## 4024 Exploratory_Data_Analysis Clustering_Example 17
+## 4025 Exploratory_Data_Analysis Clustering_Example 18
+## 4026 Exploratory_Data_Analysis Clustering_Example 19
+## 4027 Exploratory_Data_Analysis Clustering_Example 21
+## 4028 Exploratory_Data_Analysis Clustering_Example 23
+## 4029 Exploratory_Data_Analysis Clustering_Example 24
+## 4030 Exploratory_Data_Analysis Clustering_Example 25
+## 4031 Exploratory_Data_Analysis Clustering_Example 28
+## 4032 Exploratory_Data_Analysis Clustering_Example 29
+## 4033 Exploratory_Data_Analysis Clustering_Example 30
+## 4034 Exploratory_Data_Analysis Clustering_Example 31
+## 4035 Exploratory_Data_Analysis Clustering_Example 33
+## 4036 Exploratory_Data_Analysis Clustering_Example 34
+## 4037 Exploratory_Data_Analysis Clustering_Example 34
+## 4038 Exploratory_Data_Analysis Clustering_Example 35
+## 4039 Exploratory_Data_Analysis Base_Plotting_System 43
+## 4040 Exploratory_Data_Analysis Base_Plotting_System 44
+## 4041 Exploratory_Data_Analysis Base_Plotting_System 45
+## 4042 Exploratory_Data_Analysis Base_Plotting_System 45
+## 4043 Exploratory_Data_Analysis Base_Plotting_System 46
+## 4044 Exploratory_Data_Analysis Base_Plotting_System 47
+## 4045 Exploratory_Data_Analysis Base_Plotting_System 48
+## 4046 Exploratory_Data_Analysis Base_Plotting_System 49
+## 4047 Exploratory_Data_Analysis Base_Plotting_System 50
+## 4048 Exploratory_Data_Analysis Base_Plotting_System 51
+## 4049 Exploratory_Data_Analysis Base_Plotting_System 52
+## 4050 Exploratory_Data_Analysis Clustering_Example 55
+## 4051 Exploratory_Data_Analysis Clustering_Example 5
+## 4052 Exploratory_Data_Analysis Clustering_Example 8
+## 4053 Exploratory_Data_Analysis Clustering_Example 8
+## 4054 Exploratory_Data_Analysis Clustering_Example 9
+## 4055 Exploratory_Data_Analysis Clustering_Example 10
+## 4056 Exploratory_Data_Analysis Clustering_Example 10
+## 4057 Exploratory_Data_Analysis Clustering_Example 10
+## 4058 Exploratory_Data_Analysis Clustering_Example 11
+## 4059 Exploratory_Data_Analysis Clustering_Example 11
+## 4060 Exploratory_Data_Analysis Clustering_Example 48
+## 4061 Exploratory_Data_Analysis Clustering_Example 50
+## 4062 Exploratory_Data_Analysis Clustering_Example 51
+## 4063 Exploratory_Data_Analysis Clustering_Example 53
+## 4064 Exploratory_Data_Analysis Clustering_Example 41
+## 4065 Exploratory_Data_Analysis Clustering_Example 56
+## 4066 Exploratory_Data_Analysis Clustering_Example 40
+## 4067 Exploratory_Data_Analysis Clustering_Example 40
+## 4068 Exploratory_Data_Analysis Clustering_Example 47
+## 4069 Exploratory_Data_Analysis Clustering_Example 42
+## 4070 Exploratory_Data_Analysis Clustering_Example 43
+## 4071 Exploratory_Data_Analysis Clustering_Example 45
+## 4072 Exploratory_Data_Analysis Clustering_Example 59
+## 4073 Exploratory_Data_Analysis Clustering_Example 60
+## 4074 Exploratory_Data_Analysis Clustering_Example 65
+## 4075 Exploratory_Data_Analysis Clustering_Example 57
+## 4076 Exploratory_Data_Analysis Clustering_Example 67
+## 4077 Exploratory_Data_Analysis Clustering_Example 66
+## 4078 R Programming Basic Building Blocks 15
+## 4079 R Programming Basic Building Blocks 12
+## 4080 R Programming Logic 37
+## 4081 R Programming Functions 38
+## 4082 R Programming Dates and Times 27
+## 4083 R Programming Basic Building Blocks 14
+## 4084 R Programming Functions 40
+## 4085 R Programming Logic 38
+## 4086 R Programming Basic Building Blocks 11
+## 4087 R Programming Dates and Times 27
+## 4088 R Programming Dates and Times 27
+## 4089 R Programming Dates and Times 27
+## 4090 R Programming Functions 36
+## 4091 R Programming Basic Building Blocks 10
+## 4092 R Programming Basic Building Blocks 16
+## 4093 R Programming Workspace and Files 15
+## 4094 R Programming Logic 39
+## 4095 R Programming Subsetting Vectors 15
+## 4096 R Programming Basic Building Blocks 8
+## 4097 R Programming Dates and Times 38
+## 4098 R Programming Subsetting Vectors 13
+## 4099 R Programming Workspace and Files 22
+## 4100 R Programming Workspace and Files 14
+## 4101 R Programming Functions 8
+## 4102 R Programming Dates and Times 39
+## 4103 R Programming Subsetting Vectors 14
+## 4104 R Programming Dates and Times 8
+## 4105 R Programming Workspace and Files 17
+## 4106 R Programming Functions 8
+## 4107 R Programming Subsetting Vectors 11
+## 4108 R Programming Workspace and Files 14
+## 4109 R Programming Functions 35
+## 4110 R Programming Functions 13
+## 4111 R Programming Workspace and Files 15
+## 4112 R Programming Workspace and Files 17
+## 4113 R Programming Workspace and Files 11
+## 4114 R Programming Vectors 7
+## 4115 R Programming Functions 13
+## 4116 R Programming Subsetting Vectors 10
+## 4117 R Programming Dates and Times 29
+## 4118 R Programming Dates and Times 30
+## 4119 R Programming Vectors 8
+## 4120 R Programming Dates and Times 28
+## 4121 R Programming Workspace and Files 22
+## 4122 R Programming Dates and Times 37
+## 4123 R Programming Basic Building Blocks 3
+## 4124 R Programming Subsetting Vectors 8
+## 4125 R Programming Subsetting Vectors 9
+## 4126 R Programming Workspace and Files 10
+## 4127 R Programming Functions 8
+## 4128 R Programming Logic 51
+## 4129 R Programming Logic 53
+## 4130 R Programming Logic 54
+## 4131 R Programming Logic 55
+## 4132 R Programming Workspace and Files 19
+## 4133 R Programming Workspace and Files 21
+## 4134 R Programming Dates and Times 7
+## 4135 R Programming Functions 13
+## 4136 R Programming Subsetting Vectors 23
+## 4137 R Programming Subsetting Vectors 26
+## 4138 R Programming Subsetting Vectors 27
+## 4139 R Programming Functions 3
+## 4140 R Programming Vectors 6
+## 4141 R Programming Logic 33
+## 4142 R Programming Logic 35
+## 4143 R Programming Logic 36
+## 4144 R Programming Functions 41
+## 4145 R Programming Dates and Times 32
+## 4146 R Programming Dates and Times 33
+## 4147 R Programming Dates and Times 35
+## 4148 R Programming Functions 35
+## 4149 R Programming Basic Building Blocks 40
+## 4150 R Programming Basic Building Blocks 41
+## 4151 R Programming Subsetting Vectors 42
+## 4152 R Programming Functions 14
+## 4153 R Programming Functions 5
+## 4154 R Programming Functions 8
+## 4155 R Programming Vectors 35
+## 4156 R Programming Vectors 39
+## 4157 R Programming Vectors 40
+## 4158 R Programming Subsetting Vectors 17
+## 4159 R Programming Subsetting Vectors 21
+## 4160 R Programming Subsetting Vectors 21
+## 4161 R Programming Subsetting Vectors 22
+## 4162 R Programming Workspace and Files 5
+## 4163 R Programming Workspace and Files 6
+## 4164 R Programming Workspace and Files 8
+## 4165 R Programming Workspace and Files 9
+## 4166 R Programming Dates and Times 27
+## 4167 R Programming Logic 32
+## 4168 R Programming Dates and Times 24
+## 4169 R Programming Logic 50
+## 4170 R Programming Workspace and Files 27
+## 4171 R Programming Functions 8
+## 4172 R Programming Dates and Times 3
+## 4173 R Programming Dates and Times 4
+## 4174 R Programming Dates and Times 5
+## 4175 R Programming Logic 41
+## 4176 R Programming Logic 42
+## 4177 R Programming Logic 43
+## 4178 R Programming Logic 44
+## 4179 R Programming Logic 46
+## 4180 R Programming Logic 47
+## 4181 R Programming Logic 49
+## 4182 R Programming Functions 17
+## 4183 R Programming Functions 19
+## 4184 R Programming Vectors 11
+## 4185 R Programming Vectors 17
+## 4186 R Programming Vectors 18
+## 4187 R Programming Logic 41
+## 4188 R Programming Workspace and Files 34
+## 4189 R Programming Workspace and Files 34
+## 4190 R Programming Workspace and Files 35
+## 4191 R Programming Workspace and Files 40
+## 4192 R Programming Workspace and Files 41
+## 4193 R Programming Workspace and Files 42
+## 4194 R Programming Logic 9
+## 4195 R Programming Dates and Times 23
+## 4196 R Programming Vectors 33
+## 4197 R Programming Workspace and Files 29
+## 4198 R Programming Workspace and Files 31
+## 4199 R Programming Workspace and Files 32
+## 4200 R Programming Workspace and Files 33
+## 4201 R Programming Logic 20
+## 4202 R Programming Functions 32
+## 4203 R Programming Functions 34
+## 4204 R Programming Functions 34
+## 4205 R Programming Logic 28
+## 4206 R Programming Logic 30
+## 4207 R Programming Vectors 5
+## 4208 R Programming Vectors 32
+## 4209 R Programming Functions 16
+## 4210 R Programming Basic Building Blocks 26
+## 4211 R Programming Basic Building Blocks 27
+## 4212 R Programming Basic Building Blocks 31
+## 4213 R Programming Basic Building Blocks 33
+## 4214 R Programming Vectors 19
+## 4215 R Programming Vectors 22
+## 4216 R Programming Vectors 23
+## 4217 R Programming Vectors 25
+## 4218 R Programming Vectors 28
+## 4219 R Programming Vectors 29
+## 4220 R Programming Vectors 30
+## 4221 R Programming Functions 16
+## 4222 R Programming Basic Building Blocks 23
+## 4223 R Programming Missing Values 17
+## 4224 R Programming Missing Values 18
+## 4225 R Programming Functions 21
+## 4226 R Programming Logic 17
+## 4227 R Programming Functions 9
+## 4228 R Programming Functions 11
+## 4229 R Programming Functions 13
+## 4230 R Programming Missing Values 8
+## 4231 R Programming Missing Values 9
+## 4232 R Programming Missing Values 9
+## 4233 R Programming Missing Values 10
+## 4234 R Programming Dates and Times 22
+## 4235 R Programming Logic 6
+## 4236 R Programming Basic Building Blocks 25
+## 4237 R Programming Workspace and Files 25
+## 4238 R Programming Subsetting Vectors 31
+## 4239 R Programming Subsetting Vectors 32
+## 4240 R Programming Logic 18
+## 4241 R Programming Functions 27
+## 4242 R Programming Logic 21
+## 4243 R Programming Logic 23
+## 4244 R Programming Logic 27
+## 4245 R Programming Subsetting Vectors 8
+## 4246 R Programming Dates and Times 20
+## 4247 R Programming Basic Building Blocks 22
+## 4248 R Programming Functions 51
+## 4249 R Programming Logic 7
+## 4250 R Programming Dates and Times 12
+## 4251 R Programming Logic 10
+## 4252 R Programming Logic 12
+## 4253 R Programming Subsetting Vectors 33
+## 4254 R Programming Functions 42
+## 4255 R Programming Functions 43
+## 4256 R Programming Basic Building Blocks 17
+## 4257 R Programming Basic Building Blocks 17
+## 4258 R Programming Basic Building Blocks 18
+## 4259 R Programming Basic Building Blocks 21
+## 4260 R Programming Logic 4
+## 4261 R Programming Dates and Times 13
+## 4262 R Programming Functions 52
+## 4263 R Programming Workspace and Files 23
+## 4264 R Programming Subsetting Vectors 30
+## 4265 R Programming Basic Building Blocks 39
+## 4266 R Programming Functions 23
+## 4267 R Programming Basic Building Blocks 36
+## 4268 R Programming Basic Building Blocks 38
+## 4269 R Programming Functions 50
+## 4270 R Programming Subsetting Vectors 40
+## 4271 R Programming Subsetting Vectors 41
+## 4272 R Programming Missing Values 7
+## 4273 R Programming Subsetting Vectors 29
+## 4274 R Programming Functions 28
+## 4275 R Programming Dates and Times 9
+## 4276 R Programming Dates and Times 11
+## 4277 R Programming Logic 15
+## 4278 R Programming Dates and Times 18
+## 4279 R Programming Dates and Times 14
+## 4280 R Programming Functions 25
+## 4281 R Programming Dates and Times 19
+## 4282 R Programming Subsetting Vectors 34
+## 4283 R Programming Subsetting Vectors 3
+## 4284 R Programming Subsetting Vectors 5
+## 4285 R Programming Logic 13
+## 4286 R Programming Functions 48
+## 4287 R Programming Vectors 41
+## 4288 R Programming Missing Values 12
+## 4289 R Programming Functions 47
+## 4290 R Programming Missing Values 4
+## 4291 R Programming Logic 14
+## 4292 R Programming Missing Values 3
+## 4293 R Programming Missing Values 21
+## 4294 R Programming Subsetting Vectors 36
+## 4295 R Programming Missing Values 6
+## 4296 R Programming Dates and Times 16
+## 4297 R Programming Missing Values 20
+## 4298 R Programming Dates and Times 17
+## 4299 R Programming Missing Values 22
+## 4300 R Programming Missing Values 19
+## 4301 R Programming Subsetting Vectors 38
+## 4302 R Programming Missing Values 20
+## 4303 R Programming Missing Values 23
+## 4304 R Programming Dates and Times 16
+## 4305 R Programming Subsetting Vectors 37
+## 4306 R Programming Dates and Times 15
+## 4307 R Programming Workspace and Files 32
+## 4308 R Programming Workspace and Files 29
+## 4309 R Programming Logic 23
+## 4310 R Programming Missing Values 10
+## 4311 R Programming Logic 20
+## 4312 R Programming Subsetting Vectors 22
+## 4313 R Programming Workspace and Files 31
+## 4314 R Programming Workspace and Files 34
+## 4315 R Programming Missing Values 9
+## 4316 R Programming Workspace and Files 27
+## 4317 R Programming Workspace and Files 27
+## 4318 R Programming Logic 21
+## 4319 R Programming Dates and Times 14
+## 4320 R Programming Logic 17
+## 4321 R Programming Missing Values 12
+## 4322 R Programming Logic 18
+## 4323 R Programming Functions 32
+## 4324 R Programming Subsetting Vectors 42
+## 4325 R Programming Vectors 39
+## 4326 R Programming Subsetting Vectors 5
+## 4327 R Programming Basic Building Blocks 25
+## 4328 R Programming Subsetting Vectors 8
+## 4329 R Programming Subsetting Vectors 9
+## 4330 R Programming Workspace and Files 23
+## 4331 R Programming Workspace and Files 25
+## 4332 R Programming Logic 15
+## 4333 R Programming Workspace and Files 6
+## 4334 R Programming Subsetting Vectors 15
+## 4335 R Programming Workspace and Files 33
+## 4336 R Programming Subsetting Vectors 21
+## 4337 R Programming Basic Building Blocks 38
+## 4338 R Programming Basic Building Blocks 39
+## 4339 R Programming Workspace and Files 34
+## 4340 R Programming Subsetting Vectors 3
+## 4341 R Programming Logic 9
+## 4342 R Programming Basic Building Blocks 26
+## 4343 R Programming Subsetting Vectors 10
+## 4344 R Programming Subsetting Vectors 11
+## 4345 R Programming Basic Building Blocks 31
+## 4346 R Programming Basic Building Blocks 31
+## 4347 R Programming Subsetting Vectors 14
+## 4348 R Programming Subsetting Vectors 17
+## 4349 R Programming Dates and Times 13
+## 4350 R Programming Vectors 7
+## 4351 R Programming Vectors 8
+## 4352 R Programming Basic Building Blocks 40
+## 4353 R Programming Logic 27
+## 4354 R Programming Workspace and Files 35
+## 4355 R Programming Workspace and Files 40
+## 4356 R Programming Basic Building Blocks 26
+## 4357 R Programming Basic Building Blocks 27
+## 4358 R Programming Functions 3
+## 4359 R Programming Functions 5
+## 4360 R Programming Subsetting Vectors 13
+## 4361 R Programming Dates and Times 12
+## 4362 R Programming Basic Building Blocks 36
+## 4363 R Programming Subsetting Vectors 41
+## 4364 R Programming Functions 11
+## 4365 R Programming Functions 13
+## 4366 R Programming Vectors 40
+## 4367 R Programming Vectors 41
+## 4368 R Programming Functions 16
+## 4369 R Programming Workspace and Files 19
+## 4370 R Programming Workspace and Files 21
+## 4371 R Programming Workspace and Files 22
+## 4372 R Programming Workspace and Files 22
+## 4373 R Programming Functions 8
+## 4374 R Programming Basic Building Blocks 33
+## 4375 R Programming Vectors 7
+## 4376 R Programming Functions 28
+## 4377 R Programming Dates and Times 11
+## 4378 R Programming Dates and Times 9
+## 4379 R Programming Vectors 11
+## 4380 R Programming Basic Building Blocks 41
+## 4381 R Programming Logic 28
+## 4382 R Programming Logic 30
+## 4383 R Programming Workspace and Files 41
+## 4384 R Programming Workspace and Files 42
+## 4385 R Programming Vectors 5
+## 4386 R Programming Workspace and Files 22
+## 4387 R Programming Workspace and Files 8
+## 4388 R Programming Subsetting Vectors 40
+## 4389 R Programming Vectors 6
+## 4390 R Programming Logic 41
+## 4391 R Programming Logic 41
+## 4392 R Programming Vectors 35
+## 4393 R Programming Logic 42
+## 4394 R Programming Vectors 17
+## 4395 R Programming Vectors 18
+## 4396 R Programming Logic 43
+## 4397 R Programming Vectors 19
+## 4398 R Programming Vectors 23
+## 4399 R Programming Vectors 25
+## 4400 R Programming Workspace and Files 23
+## 4401 R Programming Logic 15
+## 4402 R Programming Functions 8
+## 4403 R Programming Functions 9
+## 4404 R Programming Vectors 33
+## 4405 R Programming Dates and Times 8
+## 4406 R Programming Basic Building Blocks 18
+## 4407 R Programming Basic Building Blocks 21
+## 4408 R Programming Basic Building Blocks 22
+## 4409 R Programming Basic Building Blocks 23
+## 4410 R Programming Logic 10
+## 4411 R Programming Logic 12
+## 4412 R Programming Logic 13
+## 4413 R Programming Vectors 28
+## 4414 R Programming Functions 8
+## 4415 R Programming Functions 27
+## 4416 R Programming Missing Values 7
+## 4417 R Programming Missing Values 8
+## 4418 R Programming Logic 39
+## 4419 R Programming Logic 41
+## 4420 R Programming Functions 34
+## 4421 R Programming Subsetting Vectors 23
+## 4422 R Programming Missing Values 17
+## 4423 R Programming Logic 32
+## 4424 R Programming Logic 32
+## 4425 R Programming Logic 33
+## 4426 R Programming Logic 14
+## 4427 R Programming Logic 15
+## 4428 R Programming Vectors 6
+## 4429 R Programming Logic 37
+## 4430 R Programming Logic 38
+## 4431 R Programming Workspace and Files 9
+## 4432 R Programming Workspace and Files 10
+## 4433 R Programming Subsetting Vectors 33
+## 4434 R Programming Subsetting Vectors 33
+## 4435 R Programming Subsetting Vectors 33
+## 4436 R Programming Vectors 18
+## 4437 R Programming Subsetting Vectors 34
+## 4438 R Programming Subsetting Vectors 36
+## 4439 R Programming Subsetting Vectors 36
+## 4440 R Programming Workspace and Files 5
+## 4441 R Programming Subsetting Vectors 37
+## 4442 R Programming Subsetting Vectors 38
+## 4443 R Programming Vectors 28
+## 4444 R Programming Dates and Times 8
+## 4445 R Programming Subsetting Vectors 32
+## 4446 R Programming Logic 4
+## 4447 R Programming Logic 6
+## 4448 R Programming Logic 7
+## 4449 R Programming Workspace and Files 15
+## 4450 R Programming Functions 17
+## 4451 R Programming Functions 19
+## 4452 R Programming Functions 21
+## 4453 R Programming Functions 23
+## 4454 R Programming Functions 25
+## 4455 R Programming Missing Values 6
+## 4456 R Programming Dates and Times 7
+## 4457 R Programming Subsetting Vectors 32
+## 4458 R Programming Vectors 29
+## 4459 R Programming Logic 41
+## 4460 R Programming Subsetting Vectors 32
+## 4461 R Programming Subsetting Vectors 33
+## 4462 R Programming Vectors 8
+## 4463 R Programming Functions 35
+## 4464 R Programming Missing Values 20
+## 4465 R Programming Missing Values 20
+## 4466 R Programming Logic 35
+## 4467 R Programming Vectors 5
+## 4468 R Programming Logic 36
+## 4469 R Programming Subsetting Vectors 31
+## 4470 R Programming Vectors 29
+## 4471 R Programming Vectors 5
+## 4472 R Programming Vectors 30
+## 4473 R Programming Vectors 32
+## 4474 R Programming Functions 14
+## 4475 R Programming Functions 16
+## 4476 R Programming Subsetting Vectors 33
+## 4477 R Programming Basic Building Blocks 8
+## 4478 R Programming Logic 44
+## 4479 R Programming Logic 46
+## 4480 R Programming Vectors 22
+## 4481 R Programming Vectors 23
+## 4482 R Programming Vectors 25
+## 4483 R Programming Subsetting Vectors 30
+## 4484 R Programming Logic 50
+## 4485 R Programming Vectors 6
+## 4486 R Programming Vectors 6
+## 4487 R Programming Vectors 7
+## 4488 R Programming Vectors 7
+## 4489 R Programming Vectors 39
+## 4490 R Programming Vectors 11
+## 4491 R Programming Workspace and Files 17
+## 4492 R Programming Vectors 41
+## 4493 R Programming Missing Values 3
+## 4494 R Programming Missing Values 4
+## 4495 R Programming Dates and Times 5
+## 4496 R Programming Basic Building Blocks 14
+## 4497 R Programming Vectors 5
+## 4498 R Programming Vectors 30
+## 4499 R Programming Vectors 32
+## 4500 R Programming Basic Building Blocks 17
+## 4501 R Programming Workspace and Files 11
+## 4502 R Programming Functions 48
+## 4503 R Programming Workspace and Files 15
+## 4504 R Programming Dates and Times 15
+## 4505 R Programming Missing Values 18
+## 4506 R Programming Missing Values 21
+## 4507 R Programming Missing Values 22
+## 4508 R Programming Subsetting Vectors 29
+## 4509 R Programming Missing Values 23
+## 4510 R Programming Logic 49
+## 4511 R Programming Functions 40
+## 4512 R Programming Functions 41
+## 4513 R Programming Functions 42
+## 4514 R Programming Functions 43
+## 4515 R Programming Workspace and Files 14
+## 4516 R Programming Dates and Times 24
+## 4517 R Programming Vectors 17
+## 4518 R Programming Vectors 19
+## 4519 R Programming Vectors 22
+## 4520 R Programming Basic Building Blocks 11
+## 4521 R Programming Basic Building Blocks 12
+## 4522 R Programming Subsetting Vectors 37
+## 4523 R Programming Subsetting Vectors 27
+## 4524 R Programming Dates and Times 38
+## 4525 R Programming Logic 51
+## 4526 R Programming Logic 53
+## 4527 R Programming Logic 54
+## 4528 R Programming Functions 47
+## 4529 R Programming Vectors 33
+## 4530 R Programming Functions 50
+## 4531 R Programming Vectors 40
+## 4532 R Programming Basic Building Blocks 3
+## 4533 R Programming Dates and Times 3
+## 4534 R Programming Dates and Times 4
+## 4535 R Programming Functions 35
+## 4536 R Programming Logic 47
+## 4537 R Programming Functions 38
+## 4538 R Programming Dates and Times 19
+## 4539 R Programming Dates and Times 20
+## 4540 R Programming Dates and Times 22
+## 4541 R Programming Logic 55
+## 4542 R Programming Dates and Times 23
+## 4543 R Programming Vectors 35
+## 4544 R Programming Functions 51
+## 4545 R Programming Dates and Times 27
+## 4546 R Programming Missing Values 19
+## 4547 R Programming Subsetting Vectors 26
+## 4548 R Programming Dates and Times 32
+## 4549 R Programming Dates and Times 17
+## 4550 R Programming Dates and Times 37
+## 4551 R Programming Dates and Times 18
+## 4552 R Programming Basic Building Blocks 15
+## 4553 R Programming Basic Building Blocks 16
+## 4554 R Programming Dates and Times 23
+## 4555 R Programming Dates and Times 35
+## 4556 R Programming Basic Building Blocks 10
+## 4557 R Programming Dates and Times 27
+## 4558 R Programming Dates and Times 30
+## 4559 R Programming Functions 36
+## 4560 R Programming Dates and Times 17
+## 4561 R Programming Dates and Times 29
+## 4562 R Programming Basic Building Blocks 17
+## 4563 R Programming Functions 52
+## 4564 R Programming Dates and Times 16
+## 4565 R Programming Dates and Times 28
+## 4566 R Programming Dates and Times 33
+## 4567 R Programming Dates and Times 39
+## 4568 R Programming Logic 47
+## 4569 R Programming Basic Building Blocks 26
+## 4570 R Programming Logic 46
+## 4571 R Programming Logic 50
+## 4572 R Programming Basic Building Blocks 25
+## 4573 R Programming Logic 51
+## 4574 R Programming Logic 49
+## 4575 R Programming Logic 44
+## 4576 R Programming Workspace and Files 17
+## 4577 R Programming Logic 55
+## 4578 R Programming Workspace and Files 21
+## 4579 R Programming Workspace and Files 17
+## 4580 R Programming Workspace and Files 11
+## 4581 R Programming Workspace and Files 14
+## 4582 R Programming Vectors 39
+## 4583 R Programming Basic Building Blocks 27
+## 4584 R Programming Logic 42
+## 4585 R Programming Logic 43
+## 4586 R Programming Workspace and Files 19
+## 4587 R Programming Vectors 41
+## 4588 R Programming Logic 53
+## 4589 R Programming Logic 54
+## 4590 R Programming Basic Building Blocks 33
+## 4591 R Programming Dates and Times 3
+## 4592 R Programming Dates and Times 39
+## 4593 R Programming Workspace and Files 10
+## 4594 R Programming Vectors 33
+## 4595 R Programming Vectors 35
+## 4596 R Programming Workspace and Files 15
+## 4597 R Programming Basic Building Blocks 21
+## 4598 R Programming Basic Building Blocks 22
+## 4599 R Programming Vectors 40
+## 4600 R Programming Subsetting Vectors 32
+## 4601 R Programming Missing Values 3
+## 4602 R Programming Basic Building Blocks 31
+## 4603 R Programming Basic Building Blocks 12
+## 4604 R Programming Basic Building Blocks 36
+## 4605 R Programming Dates and Times 38
+## 4606 R Programming Dates and Times 4
+## 4607 R Programming Dates and Times 35
+## 4608 R Programming Vectors 33
+## 4609 R Programming Basic Building Blocks 23
+## 4610 R Programming Dates and Times 5
+## 4611 R Programming Dates and Times 7
+## 4612 R Programming Logic 41
+## 4613 R Programming Dates and Times 9
+## 4614 R Programming Subsetting Vectors 33
+## 4615 R Programming Subsetting Vectors 34
+## 4616 R Programming Missing Values 4
+## 4617 R Programming Workspace and Files 22
+## 4618 R Programming Basic Building Blocks 38
+## 4619 R Programming Dates and Times 37
+## 4620 R Programming Basic Building Blocks 39
+## 4621 R Programming Dates and Times 4
+## 4622 R Programming Workspace and Files 9
+## 4623 R Programming Basic Building Blocks 18
+## 4624 R Programming Workspace and Files 8
+## 4625 R Programming Dates and Times 8
+## 4626 R Programming Logic 39
+## 4627 R Programming Dates and Times 12
+## 4628 R Programming Dates and Times 27
+## 4629 R Programming Dates and Times 13
+## 4630 R Programming Basic Building Blocks 11
+## 4631 R Programming Missing Values 6
+## 4632 R Programming Workspace and Files 22
+## 4633 R Programming Dates and Times 33
+## 4634 R Programming Vectors 32
+## 4635 R Programming Basic Building Blocks 17
+## 4636 R Programming Basic Building Blocks 41
+## 4637 R Programming Logic 4
+## 4638 R Programming Logic 38
+## 4639 R Programming Logic 7
+## 4640 R Programming Logic 9
+## 4641 R Programming Dates and Times 11
+## 4642 R Programming Basic Building Blocks 8
+## 4643 R Programming Subsetting Vectors 36
+## 4644 R Programming Subsetting Vectors 36
+## 4645 R Programming Subsetting Vectors 37
+## 4646 R Programming Subsetting Vectors 38
+## 4647 R Programming Subsetting Vectors 40
+## 4648 R Programming Basic Building Blocks 40
+## 4649 R Programming Dates and Times 18
+## 4650 R Programming Dates and Times 19
+## 4651 R Programming Logic 6
+## 4652 R Programming Dates and Times 22
+## 4653 R Programming Subsetting Vectors 31
+## 4654 R Programming Workspace and Files 29
+## 4655 R Programming Workspace and Files 31
+## 4656 R Programming Basic Building Blocks 10
+## 4657 R Programming Dates and Times 27
+## 4658 R Programming Logic 33
+## 4659 R Programming Basic Building Blocks 14
+## 4660 R Programming Basic Building Blocks 15
+## 4661 R Programming Basic Building Blocks 16
+## 4662 R Programming Vectors 30
+## 4663 R Programming Workspace and Files 6
+## 4664 R Programming Logic 37
+## 4665 R Programming Subsetting Vectors 30
+## 4666 R Programming Workspace and Files 27
+## 4667 R Programming Vectors 18
+## 4668 R Programming Dates and Times 24
+## 4669 R Programming Logic 10
+## 4670 R Programming Logic 12
+## 4671 R Programming Dates and Times 14
+## 4672 R Programming Subsetting Vectors 36
+## 4673 R Programming Subsetting Vectors 36
+## 4674 R Programming Missing Values 6
+## 4675 R Programming Missing Values 7
+## 4676 R Programming Workspace and Files 23
+## 4677 R Programming Workspace and Files 25
+## 4678 R Programming Workspace and Files 27
+## 4679 R Programming Vectors 17
+## 4680 R Programming Missing Values 9
+## 4681 R Programming Missing Values 10
+## 4682 R Programming Vectors 22
+## 4683 R Programming Vectors 22
+## 4684 R Programming Logic 32
+## 4685 R Programming Logic 15
+## 4686 R Programming Dates and Times 15
+## 4687 R Programming Dates and Times 16
+## 4688 R Programming Dates and Times 16
+## 4689 R Programming Dates and Times 17
+## 4690 R Programming Vectors 8
+## 4691 R Programming Dates and Times 20
+## 4692 R Programming Subsetting Vectors 42
+## 4693 R Programming Subsetting Vectors 8
+## 4694 R Programming Subsetting Vectors 9
+## 4695 R Programming Missing Values 12
+## 4696 R Programming Missing Values 17
+## 4697 R Programming Workspace and Files 32
+## 4698 R Programming Dates and Times 28
+## 4699 R Programming Dates and Times 29
+## 4700 R Programming Dates and Times 30
+## 4701 R Programming Dates and Times 32
+## 4702 R Programming Logic 35
+## 4703 R Programming Logic 36
+## 4704 R Programming Subsetting Vectors 29
+## 4705 R Programming Vectors 11
+## 4706 R Programming Missing Values 9
+## 4707 R Programming Subsetting Vectors 5
+## 4708 R Programming Dates and Times 23
+## 4709 R Programming Basic Building Blocks 3
+## 4710 R Programming Logic 30
+## 4711 R Programming Logic 13
+## 4712 R Programming Logic 14
+## 4713 R Programming Logic 17
+## 4714 R Programming Logic 17
+## 4715 R Programming Logic 18
+## 4716 R Programming Logic 20
+## 4717 R Programming Subsetting Vectors 41
+## 4718 R Programming Missing Values 8
+## 4719 R Programming Logic 23
+## 4720 R Programming Vectors 7
+## 4721 R Programming Subsetting Vectors 3
+## 4722 R Programming Vectors 25
+## 4723 R Programming Logic 27
+## 4724 R Programming Subsetting Vectors 15
+## 4725 R Programming Logic 32
+## 4726 R Programming Logic 21
+## 4727 R Programming Logic 33
+## 4728 R Programming Logic 33
+## 4729 R Programming Vectors 30
+## 4730 R Programming Missing Values 23
+## 4731 R Programming Vectors 6
+## 4732 R Programming Workspace and Files 42
+## 4733 R Programming Missing Values 22
+## 4734 R Programming Workspace and Files 33
+## 4735 R Programming Workspace and Files 34
+## 4736 R Programming Workspace and Files 34
+## 4737 R Programming Vectors 19
+## 4738 R Programming Workspace and Files 40
+## 4739 R Programming Workspace and Files 5
+## 4740 R Programming Subsetting Vectors 27
+## 4741 R Programming Workspace and Files 35
+## 4742 R Programming Subsetting Vectors 10
+## 4743 R Programming Subsetting Vectors 13
+## 4744 R Programming Vectors 23
+## 4745 R Programming Subsetting Vectors 23
+## 4746 R Programming Vectors 28
+## 4747 R Programming Vectors 29
+## 4748 R Programming Vectors 5
+## 4749 R Programming Missing Values 18
+## 4750 R Programming Missing Values 21
+## 4751 R Programming Missing Values 19
+## 4752 R Programming Logic 28
+## 4753 R Programming Workspace and Files 41
+## 4754 R Programming Subsetting Vectors 14
+## 4755 R Programming Subsetting Vectors 21
+## 4756 R Programming Missing Values 20
+## 4757 R Programming Subsetting Vectors 11
+## 4758 R Programming Subsetting Vectors 22
+## 4759 R Programming Subsetting Vectors 26
+## 4760 R Programming Missing Values 20
+## 4761 R Programming Subsetting Vectors 17
+## 4762 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 4763 R Programming Matrices and Data Frames 3
+## 4764 Getting and Cleaning Data Manipulating Data with dplyr 24
+## 4765 Getting and Cleaning Data Manipulating Data with dplyr 25
+## 4766 R Programming Functions 16
+## 4767 Getting and Cleaning Data Tidying Data with tidyr 33
+## 4768 Getting and Cleaning Data Manipulating Data with dplyr 26
+## 4769 Getting and Cleaning Data Manipulating Data with dplyr 26
+## 4770 Getting and Cleaning Data Manipulating Data with dplyr 49
+## 4771 R Programming Matrices and Data Frames 3
+## 4772 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 4773 Getting and Cleaning Data Manipulating Data with dplyr 22
+## 4774 Getting and Cleaning Data Manipulating Data with dplyr 26
+## 4775 R Programming Functions 35
+## 4776 Getting and Cleaning Data Tidying Data with tidyr 33
+## 4777 Getting and Cleaning Data Tidying Data with tidyr 33
+## 4778 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4779 Getting and Cleaning Data Tidying Data with tidyr 29
+## 4780 Getting and Cleaning Data Manipulating Data with dplyr 39
+## 4781 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4782 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 4783 R Programming Functions 34
+## 4784 Getting and Cleaning Data Manipulating Data with dplyr 61
+## 4785 Getting and Cleaning Data Manipulating Data with dplyr 18
+## 4786 Getting and Cleaning Data Manipulating Data with dplyr 57
+## 4787 Getting and Cleaning Data Tidying Data with tidyr 33
+## 4788 Getting and Cleaning Data Manipulating Data with dplyr 62
+## 4789 R Programming Functions 32
+## 4790 R Programming Functions 35
+## 4791 R Programming Matrices and Data Frames 4
+## 4792 R Programming Matrices and Data Frames 5
+## 4793 Getting and Cleaning Data Tidying Data with tidyr 24
+## 4794 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 4795 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 4796 R Programming Matrices and Data Frames 3
+## 4797 Getting and Cleaning Data Tidying Data with tidyr 33
+## 4798 Getting and Cleaning Data Manipulating Data with dplyr 57
+## 4799 R Programming Functions 28
+## 4800 R Programming Functions 34
+## 4801 Getting and Cleaning Data Tidying Data with tidyr 21
+## 4802 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 4803 Getting and Cleaning Data Tidying Data with tidyr 25
+## 4804 Getting and Cleaning Data Manipulating Data with dplyr 49
+## 4805 R Programming Matrices and Data Frames 39
+## 4806 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 4807 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 4808 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 4809 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 4810 Getting and Cleaning Data Tidying Data with tidyr 33
+## 4811 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 4812 Getting and Cleaning Data Manipulating Data with dplyr 34
+## 4813 R Programming Functions 27
+## 4814 Getting and Cleaning Data Manipulating Data with dplyr 36
+## 4815 Getting and Cleaning Data Manipulating Data with dplyr 46
+## 4816 R Programming Matrices and Data Frames 18
+## 4817 R Programming Matrices and Data Frames 21
+## 4818 R Programming Functions 35
+## 4819 Getting and Cleaning Data Manipulating Data with dplyr 50
+## 4820 Getting and Cleaning Data Tidying Data with tidyr 30
+## 4821 Getting and Cleaning Data Tidying Data with tidyr 30
+## 4822 Getting and Cleaning Data Tidying Data with tidyr 32
+## 4823 R Programming Functions 9
+## 4824 Getting and Cleaning Data Manipulating Data with dplyr 33
+## 4825 Getting and Cleaning Data Tidying Data with tidyr 19
+## 4826 Getting and Cleaning Data Manipulating Data with dplyr 35
+## 4827 R Programming Functions 13
+## 4828 Getting and Cleaning Data Manipulating Data with dplyr 35
+## 4829 Getting and Cleaning Data Manipulating Data with dplyr 47
+## 4830 Getting and Cleaning Data Manipulating Data with dplyr 48
+## 4831 Getting and Cleaning Data Manipulating Data with dplyr 40
+## 4832 R Programming Functions 36
+## 4833 Getting and Cleaning Data Manipulating Data with dplyr 27
+## 4834 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4835 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 4836 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 4837 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4838 Getting and Cleaning Data Tidying Data with tidyr 30
+## 4839 Getting and Cleaning Data Tidying Data with tidyr 31
+## 4840 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 4841 Getting and Cleaning Data Tidying Data with tidyr 20
+## 4842 R Programming Matrices and Data Frames 17
+## 4843 Getting and Cleaning Data Tidying Data with tidyr 6
+## 4844 R Programming Matrices and Data Frames 38
+## 4845 R Programming Functions 14
+## 4846 R Programming Functions 16
+## 4847 R Programming Matrices and Data Frames 6
+## 4848 R Programming Functions 17
+## 4849 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4850 Getting and Cleaning Data Tidying Data with tidyr 30
+## 4851 R Programming Matrices and Data Frames 10
+## 4852 R Programming Matrices and Data Frames 12
+## 4853 R Programming Matrices and Data Frames 13
+## 4854 Getting and Cleaning Data Tidying Data with tidyr 42
+## 4855 R Programming Matrices and Data Frames 34
+## 4856 R Programming Matrices and Data Frames 35
+## 4857 Getting and Cleaning Data Tidying Data with tidyr 8
+## 4858 Getting and Cleaning Data Tidying Data with tidyr 11
+## 4859 Getting and Cleaning Data Manipulating Data with dplyr 63
+## 4860 Getting and Cleaning Data Tidying Data with tidyr 15
+## 4861 Getting and Cleaning Data Manipulating Data with dplyr 28
+## 4862 Getting and Cleaning Data Tidying Data with tidyr 30
+## 4863 Getting and Cleaning Data Manipulating Data with dplyr 30
+## 4864 R Programming Functions 3
+## 4865 R Programming Functions 5
+## 4866 R Programming Functions 11
+## 4867 R Programming Functions 8
+## 4868 R Programming Matrices and Data Frames 14
+## 4869 R Programming Matrices and Data Frames 14
+## 4870 R Programming Matrices and Data Frames 37
+## 4871 R Programming Functions 51
+## 4872 Getting and Cleaning Data Tidying Data with tidyr 12
+## 4873 Getting and Cleaning Data Tidying Data with tidyr 53
+## 4874 Getting and Cleaning Data Manipulating Data with dplyr 41
+## 4875 R Programming Matrices and Data Frames 26
+## 4876 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4877 R Programming Functions 21
+## 4878 R Programming Functions 23
+## 4879 R Programming Functions 25
+## 4880 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 4881 Getting and Cleaning Data Manipulating Data with dplyr 45
+## 4882 Getting and Cleaning Data Tidying Data with tidyr 58
+## 4883 R Programming Matrices and Data Frames 16
+## 4884 R Programming Matrices and Data Frames 16
+## 4885 R Programming Functions 52
+## 4886 Getting and Cleaning Data Tidying Data with tidyr 48
+## 4887 R Programming Functions 38
+## 4888 Getting and Cleaning Data Manipulating Data with dplyr 50
+## 4889 R Programming Functions 19
+## 4890 R Programming Functions 42
+## 4891 Getting and Cleaning Data Tidying Data with tidyr 38
+## 4892 Getting and Cleaning Data Tidying Data with tidyr 39
+## 4893 R Programming Matrices and Data Frames 30
+## 4894 Getting and Cleaning Data Manipulating Data with dplyr 44
+## 4895 Getting and Cleaning Data Tidying Data with tidyr 43
+## 4896 R Programming Functions 48
+## 4897 R Programming Functions 50
+## 4898 Getting and Cleaning Data Tidying Data with tidyr 53
+## 4899 Getting and Cleaning Data Tidying Data with tidyr 47
+## 4900 Getting and Cleaning Data Manipulating Data with dplyr 40
+## 4901 R Programming Matrices and Data Frames 7
+## 4902 R Programming Matrices and Data Frames 9
+## 4903 R Programming Matrices and Data Frames 27
+## 4904 Getting and Cleaning Data Manipulating Data with dplyr 41
+## 4905 Getting and Cleaning Data Manipulating Data with dplyr 44
+## 4906 Getting and Cleaning Data Tidying Data with tidyr 3
+## 4907 R Programming Functions 47
+## 4908 R Programming Matrices and Data Frames 34
+## 4909 Getting and Cleaning Data Tidying Data with tidyr 46
+## 4910 R Programming Matrices and Data Frames 22
+## 4911 Getting and Cleaning Data Tidying Data with tidyr 6
+## 4912 R Programming Functions 42
+## 4913 Getting and Cleaning Data Tidying Data with tidyr 52
+## 4914 Getting and Cleaning Data Manipulating Data with dplyr 55
+## 4915 R Programming Functions 40
+## 4916 Getting and Cleaning Data Manipulating Data with dplyr 50
+## 4917 Getting and Cleaning Data Manipulating Data with dplyr 53
+## 4918 R Programming Functions 47
+## 4919 R Programming Functions 47
+## 4920 Getting and Cleaning Data Tidying Data with tidyr 46
+## 4921 R Programming Matrices and Data Frames 33
+## 4922 R Programming Functions 42
+## 4923 Getting and Cleaning Data Tidying Data with tidyr 53
+## 4924 R Programming Functions 47
+## 4925 R Programming Functions 41
+## 4926 Getting and Cleaning Data Tidying Data with tidyr 37
+## 4927 Getting and Cleaning Data Tidying Data with tidyr 54
+## 4928 R Programming Functions 42
+## 4929 R Programming Functions 43
+## 4930 R Programming Functions 42
+## 4931 R Programming Functions 42
+## 4932 R Programming Functions 47
+## 4933 R Programming Functions 42
+## 4934 Getting and Cleaning Data Tidying Data with tidyr 57
+## 4935 Getting and Cleaning Data Tidying Data with tidyr 56
+## 4936 Getting and Cleaning Data Tidying Data with tidyr 53
+## 4937 Getting and Cleaning Data Tidying Data with tidyr 34
+## 4938 R Programming Matrices and Data Frames 7
+## 4939 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 4940 Getting and Cleaning Data Tidying Data with tidyr 29
+## 4941 Getting and Cleaning Data Manipulating Data with dplyr 12
+## 4942 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4943 Getting and Cleaning Data Manipulating Data with dplyr 16
+## 4944 Getting and Cleaning Data Tidying Data with tidyr 30
+## 4945 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4946 R Programming Matrices and Data Frames 3
+## 4947 R Programming Matrices and Data Frames 6
+## 4948 Getting and Cleaning Data Manipulating Data with dplyr 11
+## 4949 Getting and Cleaning Data Manipulating Data with dplyr 63
+## 4950 Getting and Cleaning Data Manipulating Data with dplyr 22
+## 4951 Getting and Cleaning Data Manipulating Data with dplyr 18
+## 4952 R Programming Matrices and Data Frames 22
+## 4953 Getting and Cleaning Data Manipulating Data with dplyr 21
+## 4954 Getting and Cleaning Data Grouping and Chaining with dplyr 32
+## 4955 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4956 Getting and Cleaning Data Manipulating Data with dplyr 8
+## 4957 Getting and Cleaning Data Manipulating Data with dplyr 10
+## 4958 R Programming Matrices and Data Frames 26
+## 4959 Getting and Cleaning Data Grouping and Chaining with dplyr 33
+## 4960 R Programming Matrices and Data Frames 4
+## 4961 R Programming Matrices and Data Frames 5
+## 4962 Getting and Cleaning Data Grouping and Chaining with dplyr 53
+## 4963 R Programming Matrices and Data Frames 27
+## 4964 Getting and Cleaning Data Tidying Data with tidyr 30
+## 4965 Getting and Cleaning Data Grouping and Chaining with dplyr 51
+## 4966 Getting and Cleaning Data Grouping and Chaining with dplyr 35
+## 4967 Getting and Cleaning Data Grouping and Chaining with dplyr 54
+## 4968 Getting and Cleaning Data Grouping and Chaining with dplyr 55
+## 4969 Getting and Cleaning Data Grouping and Chaining with dplyr 34
+## 4970 R Programming Matrices and Data Frames 10
+## 4971 Getting and Cleaning Data Tidying Data with tidyr 56
+## 4972 Getting and Cleaning Data Tidying Data with tidyr 57
+## 4973 R Programming Matrices and Data Frames 9
+## 4974 Getting and Cleaning Data Manipulating Data with dplyr 7
+## 4975 Getting and Cleaning Data Manipulating Data with dplyr 61
+## 4976 Getting and Cleaning Data Manipulating Data with dplyr 62
+## 4977 Getting and Cleaning Data Tidying Data with tidyr 11
+## 4978 Getting and Cleaning Data Tidying Data with tidyr 12
+## 4979 Getting and Cleaning Data Tidying Data with tidyr 15
+## 4980 Getting and Cleaning Data Grouping and Chaining with dplyr 39
+## 4981 Getting and Cleaning Data Grouping and Chaining with dplyr 42
+## 4982 Getting and Cleaning Data Grouping and Chaining with dplyr 43
+## 4983 Getting and Cleaning Data Grouping and Chaining with dplyr 45
+## 4984 Getting and Cleaning Data Tidying Data with tidyr 31
+## 4985 Getting and Cleaning Data Tidying Data with tidyr 32
+## 4986 Getting and Cleaning Data Manipulating Data with dplyr 6
+## 4987 Getting and Cleaning Data Tidying Data with tidyr 21
+## 4988 Getting and Cleaning Data Tidying Data with tidyr 24
+## 4989 Getting and Cleaning Data Tidying Data with tidyr 25
+## 4990 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4991 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4992 Getting and Cleaning Data Tidying Data with tidyr 28
+## 4993 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4994 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4995 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4996 Getting and Cleaning Data Tidying Data with tidyr 18
+## 4997 Getting and Cleaning Data Tidying Data with tidyr 19
+## 4998 Getting and Cleaning Data Tidying Data with tidyr 20
+## 4999 Getting and Cleaning Data Tidying Data with tidyr 21
+## 5000 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 5001 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 5002 Getting and Cleaning Data Tidying Data with tidyr 33
+## 5003 Getting and Cleaning Data Tidying Data with tidyr 34
+## 5004 Getting and Cleaning Data Tidying Data with tidyr 37
+## 5005 Getting and Cleaning Data Tidying Data with tidyr 38
+## 5006 Getting and Cleaning Data Tidying Data with tidyr 28
+## 5007 Getting and Cleaning Data Manipulating Data with dplyr 30
+## 5008 Getting and Cleaning Data Manipulating Data with dplyr 33
+## 5009 Getting and Cleaning Data Manipulating Data with dplyr 34
+## 5010 Getting and Cleaning Data Manipulating Data with dplyr 35
+## 5011 Getting and Cleaning Data Manipulating Data with dplyr 36
+## 5012 Getting and Cleaning Data Manipulating Data with dplyr 37
+## 5013 Getting and Cleaning Data Manipulating Data with dplyr 4
+## 5014 Getting and Cleaning Data Tidying Data with tidyr 3
+## 5015 Getting and Cleaning Data Tidying Data with tidyr 6
+## 5016 Getting and Cleaning Data Tidying Data with tidyr 8
+## 5017 Getting and Cleaning Data Tidying Data with tidyr 53
+## 5018 Getting and Cleaning Data Tidying Data with tidyr 53
+## 5019 Getting and Cleaning Data Tidying Data with tidyr 53
+## 5020 Getting and Cleaning Data Tidying Data with tidyr 53
+## 5021 Getting and Cleaning Data Tidying Data with tidyr 54
+## 5022 Getting and Cleaning Data Grouping and Chaining with dplyr 17
+## 5023 Getting and Cleaning Data Grouping and Chaining with dplyr 21
+## 5024 Getting and Cleaning Data Grouping and Chaining with dplyr 22
+## 5025 Getting and Cleaning Data Tidying Data with tidyr 58
+## 5026 R Programming Matrices and Data Frames 12
+## 5027 R Programming Matrices and Data Frames 13
+## 5028 R Programming Matrices and Data Frames 14
+## 5029 R Programming Matrices and Data Frames 16
+## 5030 R Programming Matrices and Data Frames 17
+## 5031 R Programming Matrices and Data Frames 17
+## 5032 R Programming Matrices and Data Frames 17
+## 5033 R Programming Matrices and Data Frames 18
+## 5034 R Programming Matrices and Data Frames 21
+## 5035 R Programming Looking at Data 3
+## 5036 R Programming Looking at Data 3
+## 5037 R Programming Looking at Data 3
+## 5038 R Programming Matrices and Data Frames 30
+## 5039 R Programming Matrices and Data Frames 33
+## 5040 R Programming Matrices and Data Frames 34
+## 5041 R Programming Matrices and Data Frames 34
+## 5042 R Programming Matrices and Data Frames 35
+## 5043 R Programming Matrices and Data Frames 37
+## 5044 R Programming Matrices and Data Frames 38
+## 5045 R Programming Matrices and Data Frames 39
+## 5046 Getting and Cleaning Data Tidying Data with tidyr 39
+## 5047 Getting and Cleaning Data Tidying Data with tidyr 39
+## 5048 Getting and Cleaning Data Tidying Data with tidyr 39
+## 5049 Getting and Cleaning Data Tidying Data with tidyr 42
+## 5050 Getting and Cleaning Data Tidying Data with tidyr 43
+## 5051 Getting and Cleaning Data Tidying Data with tidyr 46
+## 5052 Getting and Cleaning Data Tidying Data with tidyr 46
+## 5053 Getting and Cleaning Data Tidying Data with tidyr 47
+## 5054 Getting and Cleaning Data Tidying Data with tidyr 48
+## 5055 Getting and Cleaning Data Tidying Data with tidyr 52
+## 5056 Getting and Cleaning Data Tidying Data with tidyr 53
+## 5057 Getting and Cleaning Data Grouping and Chaining with dplyr 9
+## 5058 Getting and Cleaning Data Grouping and Chaining with dplyr 10
+## 5059 Getting and Cleaning Data Grouping and Chaining with dplyr 11
+## 5060 Getting and Cleaning Data Grouping and Chaining with dplyr 14
+## 5061 Getting and Cleaning Data Grouping and Chaining with dplyr 16
+## 5062 Exploratory_Data_Analysis Plotting_Systems 35
+## 5063 Exploratory_Data_Analysis Plotting_Systems 36
+## 5064 Exploratory_Data_Analysis Plotting_Systems 38
+## 5065 Getting and Cleaning Data Grouping and Chaining with dplyr 22
+## 5066 Getting and Cleaning Data Grouping and Chaining with dplyr 23
+## 5067 Getting and Cleaning Data Grouping and Chaining with dplyr 25
+## 5068 Getting and Cleaning Data Grouping and Chaining with dplyr 26
+## 5069 Getting and Cleaning Data Grouping and Chaining with dplyr 27
+## 5070 Getting and Cleaning Data Grouping and Chaining with dplyr 31
+## 5071 Getting and Cleaning Data Manipulating Data with dplyr 25
+## 5072 Getting and Cleaning Data Manipulating Data with dplyr 26
+## 5073 Getting and Cleaning Data Manipulating Data with dplyr 27
+## 5074 Getting and Cleaning Data Manipulating Data with dplyr 28
+## 5075 Exploratory_Data_Analysis Plotting_Systems 16
+## 5076 Exploratory_Data_Analysis Plotting_Systems 17
+## 5077 Exploratory_Data_Analysis Plotting_Systems 19
+## 5078 Exploratory_Data_Analysis Plotting_Systems 19
+## 5079 R Programming Looking at Data 4
+## 5080 Getting and Cleaning Data Grouping and Chaining with dplyr 48
+## 5081 Getting and Cleaning Data Grouping and Chaining with dplyr 49
+## 5082 Getting and Cleaning Data Grouping and Chaining with dplyr 50
+## 5083 Exploratory_Data_Analysis Plotting_Systems 5
+## 5084 Exploratory_Data_Analysis Plotting_Systems 5
+## 5085 Exploratory_Data_Analysis Plotting_Systems 7
+## 5086 Exploratory_Data_Analysis Plotting_Systems 9
+## 5087 Exploratory_Data_Analysis Plotting_Systems 11
+## 5088 Exploratory_Data_Analysis Plotting_Systems 34
+## 5089 Getting and Cleaning Data Manipulating Data with dplyr 46
+## 5090 Getting and Cleaning Data Manipulating Data with dplyr 47
+## 5091 Getting and Cleaning Data Manipulating Data with dplyr 48
+## 5092 Exploratory_Data_Analysis Plotting_Systems 20
+## 5093 Exploratory_Data_Analysis Plotting_Systems 21
+## 5094 Exploratory_Data_Analysis Plotting_Systems 25
+## 5095 Getting and Cleaning Data Manipulating Data with dplyr 5
+## 5096 Exploratory_Data_Analysis Plotting_Systems 28
+## 5097 Exploratory_Data_Analysis Plotting_Systems 31
+## 5098 Exploratory_Data_Analysis Plotting_Systems 32
+## 5099 Exploratory_Data_Analysis Plotting_Systems 33
+## 5100 Exploratory_Data_Analysis Plotting_Systems 34
+## 5101 Getting and Cleaning Data Manipulating Data with dplyr 45
+## 5102 R Programming Looking at Data 16
+## 5103 R Programming Looking at Data 17
+## 5104 R Programming Looking at Data 20
+## 5105 Exploratory_Data_Analysis Plotting_Systems 39
+## 5106 Exploratory_Data_Analysis Plotting_Systems 40
+## 5107 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 5108 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 5109 Getting and Cleaning Data Manipulating Data with dplyr 23
+## 5110 Getting and Cleaning Data Manipulating Data with dplyr 24
+## 5111 Getting and Cleaning Data Manipulating Data with dplyr 40
+## 5112 Getting and Cleaning Data Manipulating Data with dplyr 41
+## 5113 Getting and Cleaning Data Manipulating Data with dplyr 44
+## 5114 R Programming Looking at Data 15
+## 5115 Getting and Cleaning Data Manipulating Data with dplyr 50
+## 5116 R Programming Looking at Data 6
+## 5117 R Programming Looking at Data 8
+## 5118 Getting and Cleaning Data Manipulating Data with dplyr 49
+## 5119 Getting and Cleaning Data Manipulating Data with dplyr 39
+## 5120 Getting and Cleaning Data Manipulating Data with dplyr 57
+## 5121 Getting and Cleaning Data Grouping and Chaining with dplyr 9
+## 5122 R Programming Looking at Data 9
+## 5123 R Programming Looking at Data 22
+## 5124 R Programming Looking at Data 26
+## 5125 Getting and Cleaning Data Manipulating Data with dplyr 53
+## 5126 R Programming Looking at Data 13
+## 5127 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 5128 Getting and Cleaning Data Manipulating Data with dplyr 56
+## 5129 R Programming Looking at Data 10
+## 5130 Getting and Cleaning Data Manipulating Data with dplyr 55
+## 5131 Exploratory_Data_Analysis Plotting_Systems 27
+## 5132 Getting and Cleaning Data Grouping and Chaining with dplyr 5
+## 5133 Getting and Cleaning Data Grouping and Chaining with dplyr 6
+## 5134 R Programming Looking at Data 11
+## 5135 R Programming Looking at Data 28
+## 5136 Exploratory_Data_Analysis Plotting_Systems 26
+## 5137 R Programming Looking at Data 27
+## 5138 Getting and Cleaning Data Grouping and Chaining with dplyr 8
+## 5139 Getting and Cleaning Data Grouping and Chaining with dplyr 7
+## 5140 R Programming Functions 3
+## 5141 R Programming Functions 50
+## 5142 R Programming Logic 4
+## 5143 R Programming Logic 7
+## 5144 R Programming Functions 48
+## 5145 R Programming Functions 8
+## 5146 R Programming Functions 47
+## 5147 R Programming Subsetting Vectors 10
+## 5148 R Programming Logic 6
+## 5149 R Programming Functions 5
+## 5150 R Programming Subsetting Vectors 9
+## 5151 R Programming Subsetting Vectors 13
+## 5152 R Programming Functions 8
+## 5153 R Programming Subsetting Vectors 5
+## 5154 R Programming Functions 9
+## 5155 R Programming Subsetting Vectors 8
+## 5156 R Programming Functions 42
+## 5157 R Programming Subsetting Vectors 10
+## 5158 R Programming Workspace and Files 40
+## 5159 R Programming Subsetting Vectors 11
+## 5160 R Programming Vectors 19
+## 5161 R Programming Subsetting Vectors 3
+## 5162 R Programming Vectors 17
+## 5163 R Programming Functions 40
+## 5164 R Programming Functions 41
+## 5165 R Programming Functions 42
+## 5166 R Programming Basic Building Blocks 22
+## 5167 R Programming Basic Building Blocks 41
+## 5168 R Programming Vectors 18
+## 5169 R Programming Functions 42
+## 5170 R Programming Missing Values 10
+## 5171 R Programming Subsetting Vectors 14
+## 5172 R Programming Subsetting Vectors 21
+## 5173 R Programming Functions 42
+## 5174 R Programming Subsetting Vectors 14
+## 5175 R Programming Missing Values 23
+## 5176 R Programming Vectors 11
+## 5177 R Programming Subsetting Vectors 22
+## 5178 R Programming Subsetting Vectors 23
+## 5179 R Programming Basic Building Blocks 40
+## 5180 R Programming Functions 43
+## 5181 R Programming Functions 42
+## 5182 R Programming Workspace and Files 29
+## 5183 R Programming Functions 43
+## 5184 R Programming Subsetting Vectors 21
+## 5185 R Programming Workspace and Files 35
+## 5186 R Programming Vectors 28
+## 5187 R Programming Vectors 28
+## 5188 R Programming Vectors 29
+## 5189 R Programming Vectors 30
+## 5190 R Programming Workspace and Files 27
+## 5191 R Programming Vectors 33
+## 5192 R Programming Workspace and Files 31
+## 5193 R Programming Workspace and Files 31
+## 5194 R Programming Subsetting Vectors 15
+## 5195 R Programming Functions 13
+## 5196 R Programming Subsetting Vectors 17
+## 5197 R Programming Workspace and Files 34
+## 5198 R Programming Functions 40
+## 5199 R Programming Basic Building Blocks 36
+## 5200 R Programming Basic Building Blocks 38
+## 5201 R Programming Basic Building Blocks 39
+## 5202 R Programming Logic 54
+## 5203 R Programming Logic 55
+## 5204 R Programming Workspace and Files 5
+## 5205 R Programming Workspace and Files 6
+## 5206 R Programming Workspace and Files 8
+## 5207 R Programming Functions 11
+## 5208 R Programming Missing Values 20
+## 5209 R Programming Workspace and Files 14
+## 5210 R Programming Workspace and Files 15
+## 5211 R Programming Functions 51
+## 5212 R Programming Functions 52
+## 5213 R Programming Workspace and Files 19
+## 5214 R Programming Vectors 5
+## 5215 R Programming Vectors 5
+## 5216 R Programming Vectors 6
+## 5217 R Programming Vectors 7
+## 5218 R Programming Vectors 8
+## 5219 R Programming Dates and Times 23
+## 5220 R Programming Workspace and Files 9
+## 5221 R Programming Workspace and Files 11
+## 5222 R Programming Workspace and Files 33
+## 5223 R Programming Workspace and Files 34
+## 5224 R Programming Basic Building Blocks 18
+## 5225 R Programming Basic Building Blocks 21
+## 5226 R Programming Missing Values 6
+## 5227 R Programming Missing Values 7
+## 5228 R Programming Missing Values 8
+## 5229 R Programming Missing Values 9
+## 5230 R Programming Functions 28
+## 5231 R Programming Missing Values 12
+## 5232 R Programming Missing Values 17
+## 5233 R Programming Dates and Times 24
+## 5234 R Programming Workspace and Files 32
+## 5235 R Programming Missing Values 20
+## 5236 R Programming Missing Values 21
+## 5237 R Programming Missing Values 22
+## 5238 R Programming Vectors 41
+## 5239 R Programming Logic 50
+## 5240 R Programming Logic 51
+## 5241 R Programming Logic 53
+## 5242 R Programming Workspace and Files 22
+## 5243 R Programming Workspace and Files 22
+## 5244 R Programming Dates and Times 3
+## 5245 R Programming Dates and Times 4
+## 5246 R Programming Dates and Times 5
+## 5247 R Programming Dates and Times 7
+## 5248 R Programming Workspace and Files 10
+## 5249 R Programming Dates and Times 11
+## 5250 R Programming Logic 9
+## 5251 R Programming Functions 13
+## 5252 R Programming Functions 13
+## 5253 R Programming Functions 13
+## 5254 R Programming Workspace and Files 21
+## 5255 R Programming Workspace and Files 41
+## 5256 R Programming Workspace and Files 42
+## 5257 R Programming Workspace and Files 23
+## 5258 R Programming Workspace and Files 25
+## 5259 R Programming Basic Building Blocks 11
+## 5260 R Programming Basic Building Blocks 12
+## 5261 R Programming Dates and Times 27
+## 5262 R Programming Dates and Times 27
+## 5263 R Programming Dates and Times 27
+## 5264 R Programming Dates and Times 27
+## 5265 R Programming Dates and Times 28
+## 5266 R Programming Dates and Times 29
+## 5267 R Programming Dates and Times 30
+## 5268 R Programming Functions 13
+## 5269 R Programming Functions 13
+## 5270 R Programming Dates and Times 37
+## 5271 R Programming Dates and Times 38
+## 5272 R Programming Dates and Times 39
+## 5273 R Programming Missing Values 18
+## 5274 R Programming Missing Values 19
+## 5275 R Programming Vectors 35
+## 5276 R Programming Functions 36
+## 5277 R Programming Functions 38
+## 5278 R Programming Basic Building Blocks 33
+## 5279 R Programming Logic 49
+## 5280 R Programming Workspace and Files 17
+## 5281 R Programming Logic 37
+## 5282 R Programming Logic 38
+## 5283 R Programming Basic Building Blocks 3
+## 5284 R Programming Basic Building Blocks 8
+## 5285 R Programming Basic Building Blocks 10
+## 5286 R Programming Subsetting Vectors 27
+## 5287 R Programming Subsetting Vectors 29
+## 5288 R Programming Dates and Times 8
+## 5289 R Programming Dates and Times 9
+## 5290 R Programming Dates and Times 12
+## 5291 R Programming Dates and Times 13
+## 5292 R Programming Workspace and Files 17
+## 5293 R Programming Vectors 28
+## 5294 R Programming Logic 12
+## 5295 R Programming Dates and Times 16
+## 5296 R Programming Basic Building Blocks 22
+## 5297 R Programming Basic Building Blocks 22
+## 5298 R Programming Vectors 32
+## 5299 R Programming Basic Building Blocks 22
+## 5300 R Programming Basic Building Blocks 23
+## 5301 R Programming Basic Building Blocks 14
+## 5302 R Programming Basic Building Blocks 15
+## 5303 R Programming Vectors 22
+## 5304 R Programming Vectors 23
+## 5305 R Programming Vectors 25
+## 5306 R Programming Logic 10
+## 5307 R Programming Logic 36
+## 5308 R Programming Subsetting Vectors 36
+## 5309 R Programming Dates and Times 16
+## 5310 R Programming Dates and Times 17
+## 5311 R Programming Dates and Times 18
+## 5312 R Programming Subsetting Vectors 26
+## 5313 R Programming Functions 13
+## 5314 R Programming Vectors 33
+## 5315 R Programming Basic Building Blocks 26
+## 5316 R Programming Vectors 39
+## 5317 R Programming Vectors 40
+## 5318 R Programming Functions 35
+## 5319 R Programming Basic Building Blocks 17
+## 5320 R Programming Subsetting Vectors 33
+## 5321 R Programming Dates and Times 14
+## 5322 R Programming Subsetting Vectors 37
+## 5323 R Programming Dates and Times 32
+## 5324 R Programming Dates and Times 33
+## 5325 R Programming Basic Building Blocks 22
+## 5326 R Programming Subsetting Vectors 42
+## 5327 R Programming Functions 13
+## 5328 R Programming Subsetting Vectors 30
+## 5329 R Programming Subsetting Vectors 31
+## 5330 R Programming Basic Building Blocks 16
+## 5331 R Programming Basic Building Blocks 17
+## 5332 R Programming Logic 47
+## 5333 R Programming Functions 13
+## 5334 R Programming Subsetting Vectors 34
+## 5335 R Programming Logic 13
+## 5336 R Programming Logic 14
+## 5337 R Programming Logic 15
+## 5338 R Programming Logic 17
+## 5339 R Programming Logic 18
+## 5340 R Programming Functions 27
+## 5341 R Programming Basic Building Blocks 25
+## 5342 R Programming Functions 32
+## 5343 R Programming Basic Building Blocks 27
+## 5344 R Programming Basic Building Blocks 31
+## 5345 R Programming Subsetting Vectors 32
+## 5346 R Programming Logic 46
+## 5347 R Programming Functions 14
+## 5348 R Programming Missing Values 3
+## 5349 R Programming Missing Values 4
+## 5350 R Programming Functions 19
+## 5351 R Programming Functions 21
+## 5352 R Programming Dates and Times 35
+## 5353 R Programming Dates and Times 19
+## 5354 R Programming Dates and Times 20
+## 5355 R Programming Functions 13
+## 5356 R Programming Functions 13
+## 5357 R Programming Subsetting Vectors 32
+## 5358 R Programming Functions 35
+## 5359 R Programming Logic 27
+## 5360 R Programming Logic 28
+## 5361 R Programming Functions 16
+## 5362 R Programming Dates and Times 15
+## 5363 R Programming Functions 16
+## 5364 R Programming Functions 17
+## 5365 R Programming Subsetting Vectors 38
+## 5366 R Programming Functions 25
+## 5367 R Programming Logic 41
+## 5368 R Programming Logic 43
+## 5369 R Programming Dates and Times 22
+## 5370 R Programming Functions 34
+## 5371 R Programming Functions 13
+## 5372 R Programming Subsetting Vectors 41
+## 5373 R Programming Logic 20
+## 5374 R Programming Logic 30
+## 5375 R Programming Logic 33
+## 5376 R Programming Logic 44
+## 5377 R Programming Subsetting Vectors 40
+## 5378 R Programming Logic 35
+## 5379 R Programming Functions 23
+## 5380 R Programming Logic 32
+## 5381 R Programming Logic 23
+## 5382 R Programming Logic 42
+## 5383 R Programming Dates and Times 23
+## 5384 R Programming Logic 21
+## 5385 R Programming Logic 39
+## 5386 R Programming Basic Building Blocks 3
+## 5387 R Programming Basic Building Blocks 8
+## 5388 R Programming Basic Building Blocks 41
+## 5389 R Programming Basic Building Blocks 23
+## 5390 R Programming Basic Building Blocks 40
+## 5391 R Programming Basic Building Blocks 10
+## 5392 R Programming Basic Building Blocks 11
+## 5393 R Programming Basic Building Blocks 25
+## 5394 R Programming Basic Building Blocks 26
+## 5395 R Programming Basic Building Blocks 15
+## 5396 R Programming Basic Building Blocks 16
+## 5397 R Programming Basic Building Blocks 17
+## 5398 R Programming Basic Building Blocks 18
+## 5399 R Programming Basic Building Blocks 21
+## 5400 R Programming Basic Building Blocks 22
+## 5401 R Programming Basic Building Blocks 31
+## 5402 R Programming Basic Building Blocks 12
+## 5403 R Programming Basic Building Blocks 14
+## 5404 R Programming Basic Building Blocks 27
+## 5405 R Programming Basic Building Blocks 33
+## 5406 R Programming Basic Building Blocks 36
+## 5407 R Programming Basic Building Blocks 38
+## 5408 R Programming Basic Building Blocks 31
+## 5409 R Programming Basic Building Blocks 39
+## 5410 R Programming Workspace and Files 40
+## 5411 R Programming Logic 41
+## 5412 R Programming Workspace and Files 34
+## 5413 R Programming Workspace and Files 32
+## 5414 R Programming Workspace and Files 32
+## 5415 R Programming Workspace and Files 33
+## 5416 R Programming Workspace and Files 35
+## 5417 R Programming Logic 38
+## 5418 R Programming Logic 38
+## 5419 R Programming Logic 38
+## 5420 R Programming Workspace and Files 34
+## 5421 R Programming Logic 41
+## 5422 R Programming Functions 9
+## 5423 R Programming Logic 42
+## 5424 R Programming Logic 39
+## 5425 R Programming Workspace and Files 31
+## 5426 R Programming Workspace and Files 11
+## 5427 R Programming Workspace and Files 14
+## 5428 R Programming Workspace and Files 15
+## 5429 R Programming Workspace and Files 15
+## 5430 R Programming Workspace and Files 17
+## 5431 R Programming Workspace and Files 19
+## 5432 R Programming Workspace and Files 21
+## 5433 R Programming Workspace and Files 22
+## 5434 R Programming Workspace and Files 22
+## 5435 R Programming Workspace and Files 23
+## 5436 R Programming Workspace and Files 25
+## 5437 R Programming Workspace and Files 27
+## 5438 R Programming Workspace and Files 29
+## 5439 R Programming Functions 27
+## 5440 R Programming Functions 27
+## 5441 R Programming Functions 28
+## 5442 R Programming Functions 28
+## 5443 R Programming Functions 32
+## 5444 R Programming Functions 34
+## 5445 R Programming Functions 34
+## 5446 R Programming Functions 34
+## 5447 R Programming Functions 34
+## 5448 R Programming Workspace and Files 41
+## 5449 R Programming Workspace and Files 42
+## 5450 R Programming Dates and Times 12
+## 5451 R Programming Dates and Times 13
+## 5452 R Programming Dates and Times 14
+## 5453 R Programming Dates and Times 15
+## 5454 R Programming Dates and Times 16
+## 5455 R Programming Dates and Times 16
+## 5456 R Programming Dates and Times 17
+## 5457 R Programming Dates and Times 18
+## 5458 R Programming Dates and Times 19
+## 5459 R Programming Dates and Times 20
+## 5460 R Programming Dates and Times 22
+## 5461 R Programming Dates and Times 23
+## 5462 R Programming Dates and Times 24
+## 5463 R Programming Functions 11
+## 5464 R Programming Functions 13
+## 5465 R Programming Functions 13
+## 5466 R Programming Functions 14
+## 5467 R Programming Functions 16
+## 5468 R Programming Functions 17
+## 5469 R Programming Functions 19
+## 5470 R Programming Functions 21
+## 5471 R Programming Functions 23
+## 5472 R Programming Functions 25
+## 5473 R Programming Functions 27
+## 5474 R Programming Functions 27
+## 5475 R Programming Functions 27
+## 5476 R Programming Functions 27
+## 5477 R Programming Functions 27
+## 5478 R Programming Functions 27
+## 5479 R Programming Logic 30
+## 5480 R Programming Logic 32
+## 5481 R Programming Logic 33
+## 5482 R Programming Logic 35
+## 5483 R Programming Logic 36
+## 5484 R Programming Logic 37
+## 5485 R Programming Subsetting Vectors 27
+## 5486 R Programming Subsetting Vectors 29
+## 5487 R Programming Subsetting Vectors 30
+## 5488 R Programming Subsetting Vectors 30
+## 5489 R Programming Subsetting Vectors 31
+## 5490 R Programming Subsetting Vectors 32
+## 5491 R Programming Subsetting Vectors 33
+## 5492 R Programming Logic 43
+## 5493 R Programming Logic 44
+## 5494 R Programming Logic 46
+## 5495 R Programming Logic 47
+## 5496 R Programming Logic 49
+## 5497 R Programming Logic 49
+## 5498 R Programming Logic 50
+## 5499 R Programming Logic 51
+## 5500 R Programming Logic 53
+## 5501 R Programming Logic 54
+## 5502 R Programming Missing Values 19
+## 5503 R Programming Missing Values 20
+## 5504 R Programming Missing Values 21
+## 5505 R Programming Missing Values 22
+## 5506 R Programming Missing Values 23
+## 5507 R Programming Subsetting Vectors 3
+## 5508 R Programming Subsetting Vectors 5
+## 5509 R Programming Subsetting Vectors 8
+## 5510 R Programming Subsetting Vectors 9
+## 5511 R Programming Subsetting Vectors 10
+## 5512 R Programming Subsetting Vectors 11
+## 5513 R Programming Subsetting Vectors 13
+## 5514 R Programming Subsetting Vectors 14
+## 5515 R Programming Subsetting Vectors 15
+## 5516 R Programming Subsetting Vectors 17
+## 5517 R Programming Subsetting Vectors 21
+## 5518 R Programming Subsetting Vectors 21
+## 5519 R Programming Subsetting Vectors 21
+## 5520 R Programming Subsetting Vectors 21
+## 5521 R Programming Subsetting Vectors 22
+## 5522 R Programming Subsetting Vectors 23
+## 5523 R Programming Subsetting Vectors 23
+## 5524 R Programming Subsetting Vectors 26
+## 5525 R Programming Vectors 33
+## 5526 R Programming Vectors 33
+## 5527 R Programming Vectors 33
+## 5528 R Programming Vectors 33
+## 5529 R Programming Vectors 35
+## 5530 R Programming Vectors 39
+## 5531 R Programming Vectors 40
+## 5532 R Programming Subsetting Vectors 34
+## 5533 R Programming Subsetting Vectors 34
+## 5534 R Programming Subsetting Vectors 36
+## 5535 R Programming Subsetting Vectors 37
+## 5536 R Programming Subsetting Vectors 37
+## 5537 R Programming Subsetting Vectors 38
+## 5538 R Programming Subsetting Vectors 40
+## 5539 R Programming Subsetting Vectors 41
+## 5540 R Programming Subsetting Vectors 42
+## 5541 R Programming Logic 4
+## 5542 R Programming Logic 6
+## 5543 R Programming Logic 6
+## 5544 R Programming Logic 7
+## 5545 R Programming Logic 9
+## 5546 R Programming Logic 10
+## 5547 R Programming Logic 12
+## 5548 R Programming Logic 13
+## 5549 R Programming Logic 14
+## 5550 R Programming Logic 15
+## 5551 R Programming Logic 15
+## 5552 R Programming Logic 15
+## 5553 R Programming Logic 17
+## 5554 R Programming Logic 18
+## 5555 R Programming Logic 20
+## 5556 R Programming Logic 21
+## 5557 R Programming Logic 23
+## 5558 R Programming Logic 27
+## 5559 R Programming Logic 28
+## 5560 R Programming Vectors 30
+## 5561 R Programming Vectors 30
+## 5562 R Programming Vectors 30
+## 5563 R Programming Vectors 32
+## 5564 R Programming Vectors 32
+## 5565 R Programming Dates and Times 3
+## 5566 R Programming Dates and Times 4
+## 5567 R Programming Dates and Times 5
+## 5568 R Programming Dates and Times 7
+## 5569 R Programming Dates and Times 8
+## 5570 R Programming Dates and Times 9
+## 5571 R Programming Dates and Times 9
+## 5572 R Programming Vectors 41
+## 5573 R Programming Missing Values 3
+## 5574 R Programming Missing Values 4
+## 5575 R Programming Missing Values 6
+## 5576 R Programming Missing Values 7
+## 5577 R Programming Missing Values 8
+## 5578 R Programming Missing Values 9
+## 5579 R Programming Missing Values 10
+## 5580 R Programming Missing Values 12
+## 5581 R Programming Missing Values 17
+## 5582 R Programming Missing Values 18
+## 5583 R Programming Workspace and Files 5
+## 5584 R Programming Vectors 5
+## 5585 R Programming Vectors 6
+## 5586 R Programming Vectors 7
+## 5587 R Programming Vectors 8
+## 5588 R Programming Vectors 11
+## 5589 R Programming Vectors 17
+## 5590 R Programming Vectors 18
+## 5591 R Programming Vectors 19
+## 5592 R Programming Vectors 22
+## 5593 R Programming Vectors 22
+## 5594 R Programming Vectors 23
+## 5595 R Programming Vectors 25
+## 5596 R Programming Vectors 28
+## 5597 R Programming Vectors 28
+## 5598 R Programming Vectors 29
+## 5599 R Programming Vectors 30
+## 5600 R Programming Workspace and Files 25
+## 5601 R Programming Workspace and Files 27
+## 5602 R Programming Workspace and Files 29
+## 5603 R Programming Workspace and Files 31
+## 5604 R Programming Workspace and Files 31
+## 5605 R Programming Basic Building Blocks 10
+## 5606 R Programming Basic Building Blocks 11
+## 5607 R Programming Basic Building Blocks 12
+## 5608 R Programming Basic Building Blocks 14
+## 5609 R Programming Basic Building Blocks 15
+## 5610 R Programming Basic Building Blocks 16
+## 5611 R Programming Basic Building Blocks 17
+## 5612 R Programming Dates and Times 11
+## 5613 R Programming Dates and Times 11
+## 5614 R Programming Functions 35
+## 5615 R Programming Functions 35
+## 5616 R Programming Functions 36
+## 5617 R Programming Functions 36
+## 5618 R Programming Functions 38
+## 5619 R Programming Functions 40
+## 5620 R Programming Functions 40
+## 5621 R Programming Functions 41
+## 5622 R Programming Functions 42
+## 5623 R Programming Functions 42
+## 5624 R Programming Workspace and Files 6
+## 5625 R Programming Workspace and Files 8
+## 5626 R Programming Workspace and Files 9
+## 5627 R Programming Workspace and Files 10
+## 5628 R Programming Workspace and Files 11
+## 5629 R Programming Workspace and Files 11
+## 5630 R Programming Workspace and Files 11
+## 5631 R Programming Workspace and Files 11
+## 5632 R Programming Workspace and Files 14
+## 5633 R Programming Workspace and Files 15
+## 5634 R Programming Workspace and Files 17
+## 5635 R Programming Workspace and Files 19
+## 5636 R Programming Workspace and Files 21
+## 5637 R Programming Workspace and Files 22
+## 5638 R Programming Workspace and Files 23
+## 5639 R Programming Workspace and Files 23
+## 5640 R Programming Basic Building Blocks 21
+## 5641 R Programming Basic Building Blocks 22
+## 5642 R Programming Basic Building Blocks 23
+## 5643 R Programming Basic Building Blocks 3
+## 5644 R Programming Basic Building Blocks 8
+## 5645 R Programming Basic Building Blocks 27
+## 5646 R Programming Workspace and Files 32
+## 5647 R Programming Workspace and Files 33
+## 5648 R Programming Workspace and Files 34
+## 5649 R Programming Workspace and Files 34
+## 5650 R Programming Workspace and Files 35
+## 5651 R Programming Workspace and Files 35
+## 5652 R Programming Basic Building Blocks 18
+## 5653 R Programming Functions 43
+## 5654 R Programming Dates and Times 27
+## 5655 R Programming Dates and Times 28
+## 5656 R Programming Basic Building Blocks 25
+## 5657 R Programming Basic Building Blocks 26
+## 5658 R Programming Dates and Times 30
+## 5659 R Programming Basic Building Blocks 31
+## 5660 R Programming Basic Building Blocks 33
+## 5661 R Programming Basic Building Blocks 36
+## 5662 R Programming Basic Building Blocks 38
+## 5663 R Programming Basic Building Blocks 39
+## 5664 R Programming Functions 42
+## 5665 R Programming Functions 42
+## 5666 R Programming Workspace and Files 40
+## 5667 R Programming Workspace and Files 41
+## 5668 R Programming Workspace and Files 42
+## 5669 R Programming Dates and Times 28
+## 5670 R Programming Dates and Times 29
+## 5671 R Programming Workspace and Files 10
+## 5672 R Programming Dates and Times 32
+## 5673 R Programming Dates and Times 33
+## 5674 R Programming Dates and Times 35
+## 5675 R Programming Dates and Times 37
+## 5676 R Programming Dates and Times 38
+## 5677 R Programming Dates and Times 39
+## 5678 R Programming Basic Building Blocks 40
+## 5679 R Programming Logic 55
+## 5680 R Programming Workspace and Files 5
+## 5681 R Programming Workspace and Files 6
+## 5682 R Programming Functions 35
+## 5683 R Programming Workspace and Files 9
+## 5684 R Programming Functions 47
+## 5685 R Programming Functions 48
+## 5686 R Programming Functions 48
+## 5687 R Programming Functions 48
+## 5688 R Programming Functions 48
+## 5689 R Programming Functions 50
+## 5690 R Programming Functions 51
+## 5691 R Programming Functions 52
+## 5692 R Programming Functions 35
+## 5693 R Programming Basic Building Blocks 41
+## 5694 R Programming Functions 3
+## 5695 R Programming Workspace and Files 8
+## 5696 R Programming Functions 5
+## 5697 R Programming Functions 8
+## 5698 R Programming Functions 48
+## 5699 R Programming Functions 47
+## 5700 R Programming Basic Building Blocks 41
+## 5701 R Programming Basic Building Blocks 40
+## 5702 R Programming Basic Building Blocks 14
+## 5703 R Programming Basic Building Blocks 25
+## 5704 R Programming Basic Building Blocks 8
+## 5705 R Programming Basic Building Blocks 3
+## 5706 R Programming Basic Building Blocks 23
+## 5707 R Programming Basic Building Blocks 39
+## 5708 R Programming Basic Building Blocks 11
+## 5709 R Programming Basic Building Blocks 12
+## 5710 R Programming Basic Building Blocks 16
+## 5711 R Programming Basic Building Blocks 22
+## 5712 R Programming Basic Building Blocks 15
+## 5713 R Programming Basic Building Blocks 27
+## 5714 R Programming Basic Building Blocks 31
+## 5715 R Programming Basic Building Blocks 36
+## 5716 R Programming Basic Building Blocks 18
+## 5717 R Programming Basic Building Blocks 38
+## 5718 R Programming Basic Building Blocks 33
+## 5719 R Programming Basic Building Blocks 21
+## 5720 R Programming Basic Building Blocks 11
+## 5721 R Programming Basic Building Blocks 26
+## 5722 R Programming Basic Building Blocks 12
+## 5723 R Programming Basic Building Blocks 17
+## 5724 R Programming Basic Building Blocks 21
+## 5725 R Programming Basic Building Blocks 10
+## correct attempt skipped datetime hash
+## 1 TRUE 1 FALSE 1505668097 30802
+## 2 TRUE 1 FALSE 1505668820 30802
+## 3 TRUE 1 FALSE 1505150483 30802
+## 4 TRUE 1 FALSE 1505668087 30802
+## 5 TRUE 1 FALSE 1505668145 30802
+## 6 TRUE 1 FALSE 1505177316 30802
+## 7 TRUE 1 FALSE 1505668784 30802
+## 8 TRUE 1 FALSE 1505668080 30802
+## 9 TRUE 1 FALSE 1505668039 30802
+## 10 TRUE 1 FALSE 1505668085 30802
+## 11 TRUE 1 FALSE 1505150496 30802
+## 12 TRUE 1 FALSE 1505180408 30802
+## 13 TRUE 1 FALSE 1505150412 30802
+## 14 TRUE 2 FALSE 1505180081 30802
+## 15 TRUE 1 FALSE 1505177807 30802
+## 16 TRUE 1 FALSE 1505505498 30802
+## 17 TRUE 1 FALSE 1505668128 30802
+## 18 TRUE 1 FALSE 1505505368 30802
+## 19 FALSE 1 FALSE 1505180066 30802
+## 20 TRUE 1 FALSE 1505668172 30802
+## 21 TRUE 1 FALSE 1505505439 30802
+## 22 TRUE 1 FALSE 1505668154 30802
+## 23 TRUE 1 FALSE 1505668109 30802
+## 24 TRUE 1 FALSE 1505505353 30802
+## 25 TRUE 1 FALSE 1505668637 30802
+## 26 TRUE 1 FALSE 1505505410 30802
+## 27 TRUE 1 FALSE 1505150407 30802
+## 28 TRUE 1 FALSE 1505180420 30802
+## 29 TRUE 1 FALSE 1505508769 30802
+## 30 TRUE 1 FALSE 1505150503 30802
+## 31 TRUE 1 FALSE 1505177826 30802
+## 32 TRUE 1 FALSE 1505177833 30802
+## 33 TRUE 1 FALSE 1505505552 30802
+## 34 TRUE 1 FALSE 1505668234 30802
+## 35 TRUE 1 FALSE 1505177897 30802
+## 36 TRUE 1 FALSE 1505668329 30802
+## 37 TRUE 1 FALSE 1505668332 30802
+## 38 TRUE 1 FALSE 1505180008 30802
+## 39 TRUE 1 FALSE 1505505481 30802
+## 40 TRUE 1 FALSE 1505505488 30802
+## 41 TRUE 1 FALSE 1505150391 30802
+## 42 TRUE 1 FALSE 1505668506 30802
+## 43 <NA> 1 NA 1505668508 30802
+## 44 TRUE 1 FALSE 1505150536 30802
+## 45 TRUE 1 FALSE 1505505524 30802
+## 46 TRUE 1 FALSE 1505508836 30802
+## 47 TRUE 1 FALSE 1505177848 30802
+## 48 TRUE 1 FALSE 1505505585 30802
+## 49 FALSE 1 FALSE 1505508657 30802
+## 50 TRUE 2 FALSE 1505508687 30802
+## 51 TRUE 1 FALSE 1505505335 30802
+## 52 TRUE 1 FALSE 1505668764 30802
+## 53 TRUE 1 FALSE 1505508738 30802
+## 54 TRUE 1 FALSE 1505668503 30802
+## 55 TRUE 1 FALSE 1505179996 30802
+## 56 TRUE 1 FALSE 1505150315 30802
+## 57 TRUE 1 FALSE 1505508818 30802
+## 58 TRUE 1 FALSE 1505508833 30802
+## 59 TRUE 1 FALSE 1505504577 30802
+## 60 TRUE 2 FALSE 1505508597 30802
+## 61 TRUE 1 FALSE 1505178719 30802
+## 62 TRUE 1 FALSE 1505505616 30802
+## 63 TRUE 1 FALSE 1505178060 30802
+## 64 FALSE 1 FALSE 1505178237 30802
+## 65 TRUE 1 FALSE 1505667996 30802
+## 66 TRUE 1 FALSE 1505508710 30802
+## 67 TRUE 1 FALSE 1505150377 30802
+## 68 TRUE 1 FALSE 1505668479 30802
+## 69 TRUE 1 FALSE 1505504072 30802
+## 70 TRUE 1 FALSE 1505504512 30802
+## 71 TRUE 1 FALSE 1505504524 30802
+## 72 TRUE 1 FALSE 1505505018 30802
+## 73 TRUE 1 FALSE 1505508887 30802
+## 74 FALSE 1 FALSE 1505508561 30802
+## 75 TRUE 1 FALSE 1505508619 30802
+## 76 TRUE 1 FALSE 1505667946 30802
+## 77 TRUE 1 FALSE 1505667952 30802
+## 78 TRUE 1 FALSE 1505667992 30802
+## 79 TRUE 1 FALSE 1505668596 30802
+## 80 TRUE 1 FALSE 1505668387 30802
+## 81 TRUE 1 FALSE 1505508314 30802
+## 82 TRUE 1 FALSE 1505668370 30802
+## 83 TRUE 1 FALSE 1505504063 30802
+## 84 TRUE 1 FALSE 1505178497 30802
+## 85 TRUE 1 FALSE 1505178514 30802
+## 86 TRUE 1 FALSE 1505668950 30802
+## 87 TRUE 1 FALSE 1505150553 30802
+## 88 TRUE 1 FALSE 1505150627 30802
+## 89 TRUE 1 FALSE 1505150760 30802
+## 90 TRUE 1 FALSE 1505505623 30802
+## 91 TRUE 1 FALSE 1505667988 30802
+## 92 TRUE 1 FALSE 1505505244 30802
+## 93 TRUE 1 FALSE 1505179715 30802
+## 94 TRUE 1 FALSE 1505179880 30802
+## 95 TRUE 1 FALSE 1505179388 30802
+## 96 <NA> 1 NA 1505179390 30802
+## 97 <NA> 1 FALSE 1505672301 30802
+## 98 TRUE 1 FALSE 1505508324 30802
+## 99 TRUE 1 FALSE 1505178537 30802
+## 100 TRUE 1 FALSE 1505178902 30802
+## 101 TRUE 1 FALSE 1505504608 30802
+## 102 TRUE 1 FALSE 1505179229 30802
+## 103 TRUE 1 FALSE 1505179346 30802
+## 104 TRUE 1 FALSE 1505505639 30802
+## 105 TRUE 2 FALSE 1505178264 30802
+## 106 TRUE 1 FALSE 1505178420 30802
+## 107 TRUE 1 FALSE 1505668342 30802
+## 108 <NA> 1 FALSE 1505505661 30802
+## 109 TRUE 1 FALSE 1505178443 30802
+## 110 TRUE 1 FALSE 1505178476 30802
+## 111 TRUE 1 FALSE 1505507898 30802
+## 112 TRUE 1 FALSE 1505508376 30802
+## 113 TRUE 1 FALSE 1505508519 30802
+## 114 TRUE 1 FALSE 1505667902 30802
+## 115 TRUE 1 FALSE 1505505062 30802
+## 116 TRUE 1 FALSE 1505505169 30802
+## 117 TRUE 1 FALSE 1505505178 30802
+## 118 TRUE 1 FALSE 1505505199 30802
+## 119 TRUE 1 FALSE 1505179705 30802
+## 120 TRUE 1 FALSE 1505505659 30802
+## 121 TRUE 1 FALSE 1505179385 30802
+## 122 TRUE 1 FALSE 1505504738 30802
+## 123 TRUE 1 FALSE 1505504751 30802
+## 124 TRUE 1 FALSE 1505504765 30802
+## 125 TRUE 1 FALSE 1505507907 30802
+## 126 TRUE 1 FALSE 1505507931 30802
+## 127 TRUE 1 FALSE 1505180457 30802
+## 128 TRUE 1 FALSE 1505508850 30802
+## 129 TRUE 1 FALSE 1505508901 30802
+## 130 TRUE 1 FALSE 1505150771 30802
+## 131 TRUE 1 FALSE 1505150856 30802
+## 132 TRUE 1 FALSE 1505505656 30802
+## 133 TRUE 1 FALSE 1505508174 30802
+## 134 TRUE 2 FALSE 1505151065 30802
+## 135 TRUE 1 FALSE 1505151073 30802
+## 136 TRUE 1 FALSE 1505151209 30802
+## 137 TRUE 1 FALSE 1505507870 30802
+## 138 TRUE 1 FALSE 1505504770 30802
+## 139 <NA> 1 NA 1505504773 30802
+## 140 TRUE 1 FALSE 1505178618 30802
+## 141 TRUE 1 FALSE 1505178691 30802
+## 142 TRUE 1 FALSE 1505507990 30802
+## 143 TRUE 1 FALSE 1505178893 30802
+## 144 TRUE 2 FALSE 1505508127 30802
+## 145 TRUE 1 FALSE 1505508146 30802
+## 146 FALSE 1 FALSE 1505151036 30802
+## 147 TRUE 1 FALSE 1505504715 30802
+## 148 TRUE 1 FALSE 1505504726 30802
+## 149 TRUE 1 FALSE 1505508208 30802
+## 150 TRUE 1 FALSE 1505508246 30802
+## 151 TRUE 1 FALSE 1505669957 30802
+## 152 FALSE 1 FALSE 1505670161 30802
+## 153 TRUE 1 FALSE 1505504860 30802
+## 154 TRUE 1 FALSE 1505505060 30802
+## 155 TRUE 1 FALSE 1505667882 30802
+## 156 TRUE 1 FALSE 1505669377 30802
+## 157 TRUE 1 FALSE 1505179608 30802
+## 158 TRUE 1 FALSE 1505179665 30802
+## 159 TRUE 1 FALSE 1505504652 30802
+## 160 TRUE 1 FALSE 1505669440 30802
+## 161 TRUE 1 FALSE 1505669470 30802
+## 162 TRUE 1 FALSE 1505669494 30802
+## 163 TRUE 1 FALSE 1505669841 30802
+## 164 TRUE 1 FALSE 1505508277 30802
+## 165 TRUE 1 FALSE 1505672296 30802
+## 166 TRUE 2 TRUE 1505670450 30802
+## 167 TRUE 1 FALSE 1505507943 30802
+## 168 TRUE 1 FALSE 1505668971 30802
+## 169 TRUE 1 FALSE 1505507972 30802
+## 170 TRUE 1 FALSE 1505669386 30802
+## 171 TRUE 1 FALSE 1505669412 30802
+## 172 TRUE 1 FALSE 1505508929 30802
+## 173 TRUE 1 FALSE 1505671468 30802
+## 174 TRUE 1 FALSE 1505671634 30802
+## 175 TRUE 1 FALSE 1505671852 30802
+## 176 TRUE 1 FALSE 1505508985 30802
+## 177 TRUE 1 FALSE 1505669919 30802
+## 178 TRUE 1 FALSE 1505180835 30802
+## 179 TRUE 1 FALSE 1505672299 30802
+## 180 TRUE 1 FALSE 1505667847 30802
+## 181 TRUE 1 FALSE 1505507959 30802
+## 182 TRUE 1 FALSE 1505505005 30802
+## 183 TRUE 1 FALSE 1505670813 30802
+## 184 TRUE 1 FALSE 1505504615 30802
+## 185 FALSE 1 FALSE 1505508086 30802
+## 186 TRUE 1 FALSE 1505180585 30802
+## 187 TRUE 1 FALSE 1505180624 30802
+## 188 FALSE 1 FALSE 1505180765 30802
+## 189 TRUE 1 FALSE 1505151244 30802
+## 190 TRUE 1 FALSE 1505672034 30802
+## 191 TRUE 1 FALSE 1505672247 30802
+## 192 <NA> 1 FALSE 1505180838 30802
+## 193 TRUE 1 FALSE 1505180522 30802
+## 194 TRUE 1 FALSE 1505667873 30802
+## 195 FALSE 2 FALSE 1505670677 30802
+## 196 TRUE 1 FALSE 1505180515 30802
+## 197 TRUE 1 FALSE 1505672288 30802
+## 198 TRUE 1 FALSE 1505151347 30802
+## 199 <NA> 1 NA 1505151354 30802
+## 200 TRUE 1 FALSE 1505670847 30802
+## 201 FALSE 3 FALSE 1505670721 30802
+## 202 TRUE 4 FALSE 1505670800 30802
+## 203 TRUE 1 FALSE 1505508987 30802
+## 204 <NA> 1 FALSE 1505508990 30802
+## 205 TRUE 1 FALSE 1505180807 30802
+## 206 TRUE 1 FALSE 1505180831 30802
+## 207 FALSE 1 FALSE 1505670632 30802
+## 208 TRUE 1 FALSE 1505504832 30802
+## 209 TRUE 1 FALSE 1505151281 30802
+## 210 TRUE 1 FALSE 1505151324 30802
+## 211 TRUE 1 FALSE 1505151342 30802
+## 212 TRUE 2 FALSE 1505180782 30802
+## 213 TRUE 1 FALSE 1505508934 30802
+## 214 TRUE 1 FALSE 1505508975 30802
+## 215 TRUE 1 FALSE 1505149531 78719
+## 216 FALSE 1 FALSE 1505221741 78719
+## 217 TRUE 1 FALSE 1505221985 78719
+## 218 FALSE 1 FALSE 1505221692 78719
+## 219 TRUE 2 FALSE 1505221720 78719
+## 220 TRUE 1 FALSE 1505149462 78719
+## 221 TRUE 1 FALSE 1505846961 78719
+## 222 TRUE 1 FALSE 1505846987 78719
+## 223 TRUE 2 FALSE 1505221769 78719
+## 224 TRUE 1 FALSE 1505221667 78719
+## 225 TRUE 2 FALSE 1505854533 78719
+## 226 FALSE 1 FALSE 1505854881 78719
+## 227 TRUE 1 FALSE 1505223714 78719
+## 228 TRUE 1 FALSE 1505223721 78719
+## 229 TRUE 1 FALSE 1505221839 78719
+## 230 TRUE 1 FALSE 1505847754 78719
+## 231 TRUE 1 FALSE 1505847160 78719
+## 232 TRUE 3 FALSE 1505854925 78719
+## 233 TRUE 1 FALSE 1505221630 78719
+## 234 TRUE 1 FALSE 1505846768 78719
+## 235 TRUE 1 FALSE 1505223700 78719
+## 236 TRUE 1 FALSE 1505221564 78719
+## 237 TRUE 1 FALSE 1505330479 78719
+## 238 <NA> 1 NA 1505222150 78719
+## 239 TRUE 1 FALSE 1505222723 78719
+## 240 FALSE 2 FALSE 1505854905 78719
+## 241 TRUE 1 FALSE 1505330518 78719
+## 242 TRUE 1 FALSE 1505847281 78719
+## 243 TRUE 2 FALSE 1505330533 78719
+## 244 TRUE 1 FALSE 1505222013 78719
+## 245 TRUE 1 FALSE 1505221609 78719
+## 246 TRUE 3 FALSE 1505149441 78719
+## 247 TRUE 1 FALSE 1505348999 78719
+## 248 TRUE 1 FALSE 1505223683 78719
+## 249 TRUE 1 FALSE 1505221554 78719
+## 250 TRUE 1 FALSE 1505958769 78719
+## 251 TRUE 1 FALSE 1505957495 78719
+## 252 <NA> 1 FALSE 1505957497 78719
+## 253 FALSE 1 FALSE 1505501263 78719
+## 254 TRUE 1 FALSE 1505222795 78719
+## 255 TRUE 1 FALSE 1505330220 78719
+## 256 TRUE 1 FALSE 1505149005 78719
+## 257 TRUE 1 FALSE 1505848765 78719
+## 258 TRUE 1 FALSE 1505848769 78719
+## 259 FALSE 1 FALSE 1505854506 78719
+## 260 TRUE 1 FALSE 1505854229 78719
+## 261 FALSE 2 FALSE 1505149429 78719
+## 262 TRUE 1 FALSE 1505958715 78719
+## 263 TRUE 1 FALSE 1505958740 78719
+## 264 TRUE 1 FALSE 1505222143 78719
+## 265 TRUE 1 FALSE 1505222145 78719
+## 266 FALSE 1 FALSE 1505851199 78719
+## 267 TRUE 1 FALSE 1505227575 78719
+## 268 FALSE 1 FALSE 1505330525 78719
+## 269 FALSE 1 FALSE 1505350441 78719
+## 270 FALSE 1 FALSE 1505330562 78719
+## 271 TRUE 2 FALSE 1505330582 78719
+## 272 TRUE 1 FALSE 1505223668 78719
+## 273 TRUE 1 FALSE 1505223642 78719
+## 274 TRUE 1 FALSE 1505854040 78719
+## 275 FALSE 1 FALSE 1505222118 78719
+## 276 TRUE 2 FALSE 1505222132 78719
+## 277 FALSE 1 FALSE 1505149375 78719
+## 278 TRUE 1 FALSE 1505348577 78719
+## 279 TRUE 1 FALSE 1505227563 78719
+## 280 TRUE 1 FALSE 1505849721 78719
+## 281 TRUE 1 FALSE 1505349050 78719
+## 282 TRUE 1 FALSE 1505956456 78719
+## 283 FALSE 2 FALSE 1505350633 78719
+## 284 TRUE 1 FALSE 1505854932 78719
+## 285 TRUE 1 FALSE 1505330588 78719
+## 286 TRUE 1 FALSE 1505222094 78719
+## 287 TRUE 1 FALSE 1505223610 78719
+## 288 TRUE 1 FALSE 1505149230 78719
+## 289 TRUE 1 FALSE 1505149334 78719
+## 290 TRUE 1 FALSE 1505848949 78719
+## 291 TRUE 1 FALSE 1505849293 78719
+## 292 TRUE 1 FALSE 1505849350 78719
+## 293 TRUE 1 FALSE 1505330436 78719
+## 294 FALSE 2 FALSE 1505851248 78719
+## 295 TRUE 1 FALSE 1505227625 78719
+## 296 TRUE 1 FALSE 1505223421 78719
+## 297 TRUE 1 FALSE 1505227670 78719
+## 298 TRUE 1 FALSE 1505854934 78719
+## 299 <NA> 1 NA 1505854939 78719
+## 300 FALSE 1 FALSE 1505848835 78719
+## 301 TRUE 2 FALSE 1505848850 78719
+## 302 TRUE 1 FALSE 1505330714 78719
+## 303 TRUE 1 FALSE 1505853977 78719
+## 304 TRUE 1 FALSE 1505348531 78719
+## 305 TRUE 1 FALSE 1505227518 78719
+## 306 TRUE 1 FALSE 1505211690 78719
+## 307 TRUE 1 FALSE 1505330454 78719
+## 308 TRUE 1 FALSE 1505850938 78719
+## 309 TRUE 1 FALSE 1505227649 78719
+## 310 TRUE 1 FALSE 1505222897 78719
+## 311 TRUE 1 FALSE 1505211375 78719
+## 312 TRUE 1 FALSE 1505211409 78719
+## 313 TRUE 1 FALSE 1505211429 78719
+## 314 TRUE 1 FALSE 1505149194 78719
+## 315 TRUE 2 FALSE 1505223574 78719
+## 316 TRUE 1 FALSE 1505211562 78719
+## 317 TRUE 1 FALSE 1505211601 78719
+## 318 TRUE 1 FALSE 1505211626 78719
+## 319 TRUE 1 FALSE 1505956336 78719
+## 320 TRUE 1 FALSE 1505211809 78719
+## 321 TRUE 1 FALSE 1505956441 78719
+## 322 TRUE 1 FALSE 1505223369 78719
+## 323 TRUE 1 FALSE 1505329967 78719
+## 324 TRUE 1 FALSE 1505149079 78719
+## 325 TRUE 1 FALSE 1505149107 78719
+## 326 TRUE 1 FALSE 1505149128 78719
+## 327 TRUE 1 FALSE 1505330596 78719
+## 328 TRUE 1 FALSE 1505330655 78719
+## 329 TRUE 1 FALSE 1505330265 78719
+## 330 TRUE 1 FALSE 1505218430 78719
+## 331 <NA> 1 NA 1505330271 78719
+## 332 TRUE 1 FALSE 1505330423 78719
+## 333 TRUE 1 FALSE 1505958600 78719
+## 334 TRUE 1 FALSE 1505211104 78719
+## 335 FALSE 1 FALSE 1505211192 78719
+## 336 TRUE 2 FALSE 1505501274 78719
+## 337 TRUE 1 FALSE 1505501316 78719
+## 338 TRUE 1 FALSE 1505501323 78719
+## 339 TRUE 1 FALSE 1505149572 78719
+## 340 TRUE 1 FALSE 1505149131 78719
+## 341 TRUE 1 FALSE 1505330252 78719
+## 342 TRUE 1 FALSE 1505149651 78719
+## 343 TRUE 1 FALSE 1505330268 78719
+## 344 TRUE 1 FALSE 1505149765 78719
+## 345 TRUE 1 FALSE 1505149808 78719
+## 346 FALSE 1 FALSE 1505149882 78719
+## 347 FALSE 2 FALSE 1505149900 78719
+## 348 TRUE 1 FALSE 1505211825 78719
+## 349 FALSE 3 FALSE 1505851307 78719
+## 350 TRUE 1 FALSE 1505150019 78719
+## 351 <NA> 1 NA 1505150029 78719
+## 352 TRUE 1 FALSE 1505222908 78719
+## 353 TRUE 1 FALSE 1505149583 78719
+## 354 TRUE 1 FALSE 1505149631 78719
+## 355 TRUE 1 FALSE 1505218270 78719
+## 356 TRUE 1 FALSE 1505149659 78719
+## 357 TRUE 1 FALSE 1505218399 78719
+## 358 TRUE 1 FALSE 1505956039 78719
+## 359 TRUE 1 FALSE 1505956252 78719
+## 360 TRUE 1 FALSE 1505956349 78719
+## 361 TRUE 2 FALSE 1505329912 78719
+## 362 TRUE 1 FALSE 1505329930 78719
+## 363 TRUE 1 FALSE 1505853128 78719
+## 364 TRUE 1 FALSE 1505330065 78719
+## 365 TRUE 1 FALSE 1505330183 78719
+## 366 TRUE 1 FALSE 1505500900 78719
+## 367 TRUE 1 FALSE 1505330232 78719
+## 368 TRUE 1 FALSE 1505223521 78719
+## 369 FALSE 1 FALSE 1505223549 78719
+## 370 FALSE 1 FALSE 1505348411 78719
+## 371 TRUE 2 FALSE 1505348494 78719
+## 372 TRUE 1 FALSE 1505958637 78719
+## 373 TRUE 1 FALSE 1505211045 78719
+## 374 <NA> 1 NA 1505219128 78719
+## 375 TRUE 1 FALSE 1505501221 78719
+## 376 TRUE 2 FALSE 1505211213 78719
+## 377 TRUE 1 FALSE 1505958974 78719
+## 378 TRUE 1 FALSE 1505959019 78719
+## 379 TRUE 3 FALSE 1505351365 78719
+## 380 TRUE 1 FALSE 1505351491 78719
+## 381 FALSE 1 FALSE 1505352409 78719
+## 382 TRUE 2 FALSE 1505352624 78719
+## 383 FALSE 1 FALSE 1505352674 78719
+## 384 TRUE 2 FALSE 1505352687 78719
+## 385 TRUE 1 FALSE 1505352699 78719
+## 386 TRUE 1 FALSE 1505352701 78719
+## 387 <NA> 1 NA 1505352703 78719
+## 388 FALSE 3 FALSE 1505149923 78719
+## 389 TRUE 1 FALSE 1505150014 78719
+## 390 <NA> 1 NA 1505211832 78719
+## 391 TRUE 1 FALSE 1505218072 78719
+## 392 TRUE 1 FALSE 1505218155 78719
+## 393 TRUE 1 FALSE 1505218209 78719
+## 394 TRUE 1 FALSE 1505218216 78719
+## 395 TRUE 1 FALSE 1505222936 78719
+## 396 TRUE 1 FALSE 1505218390 78719
+## 397 TRUE 1 FALSE 1505223089 78719
+## 398 TRUE 1 FALSE 1505223104 78719
+## 399 TRUE 1 FALSE 1505223144 78719
+## 400 FALSE 1 FALSE 1505329901 78719
+## 401 TRUE 2 FALSE 1505223293 78719
+## 402 TRUE 1 FALSE 1505223332 78719
+## 403 TRUE 1 FALSE 1505495400 78719
+## 404 TRUE 1 FALSE 1505853279 78719
+## 405 TRUE 1 FALSE 1505223449 78719
+## 406 TRUE 1 FALSE 1505223480 78719
+## 407 TRUE 1 FALSE 1505223491 78719
+## 408 TRUE 1 FALSE 1505210978 78719
+## 409 TRUE 1 FALSE 1505210983 78719
+## 410 TRUE 1 FALSE 1505211003 78719
+## 411 TRUE 1 FALSE 1505211009 78719
+## 412 TRUE 1 FALSE 1505211026 78719
+## 413 TRUE 1 FALSE 1505219124 78719
+## 414 TRUE 1 FALSE 1505496128 78719
+## 415 TRUE 1 FALSE 1505496201 78719
+## 416 TRUE 1 FALSE 1505496331 78719
+## 417 TRUE 1 FALSE 1505211244 78719
+## 418 TRUE 1 FALSE 1505211267 78719
+## 419 TRUE 1 FALSE 1505211334 78719
+## 420 TRUE 1 FALSE 1506086651 78719
+## 421 TRUE 1 FALSE 1506086720 78719
+## 422 TRUE 1 FALSE 1506086943 78719
+## 423 TRUE 1 FALSE 1505211462 78719
+## 424 TRUE 1 FALSE 1505211518 78719
+## 425 TRUE 1 FALSE 1506087674 78719
+## 426 TRUE 1 FALSE 1506087894 78719
+## 427 FALSE 1 FALSE 1506087987 78719
+## 428 TRUE 2 FALSE 1506088429 78719
+## 429 TRUE 4 FALSE 1505149950 78719
+## 430 TRUE 1 FALSE 1505150007 78719
+## 431 TRUE 1 FALSE 1505330845 78719
+## 432 TRUE 1 FALSE 1505330919 78719
+## 433 FALSE 4 FALSE 1505851379 78719
+## 434 TRUE 1 FALSE 1505222932 78719
+## 435 TRUE 1 FALSE 1505955836 78719
+## 436 TRUE 1 FALSE 1505223072 78719
+## 437 TRUE 1 FALSE 1505955920 78719
+## 438 TRUE 1 FALSE 1505956019 78719
+## 439 TRUE 1 FALSE 1506091101 78719
+## 440 FALSE 1 FALSE 1505223254 78719
+## 441 TRUE 1 FALSE 1505218536 78719
+## 442 TRUE 1 FALSE 1505218543 78719
+## 443 TRUE 1 FALSE 1505218604 78719
+## 444 TRUE 1 FALSE 1505218681 78719
+## 445 TRUE 1 FALSE 1505218688 78719
+## 446 FALSE 1 FALSE 1505218711 78719
+## 447 TRUE 2 FALSE 1505218717 78719
+## 448 TRUE 1 FALSE 1505218785 78719
+## 449 FALSE 1 FALSE 1505218881 78719
+## 450 TRUE 2 FALSE 1505218937 78719
+## 451 TRUE 1 FALSE 1505219019 78719
+## 452 TRUE 1 FALSE 1505219121 78719
+## 453 TRUE 2 FALSE 1505853916 78719
+## 454 TRUE 1 FALSE 1505957476 78719
+## 455 TRUE 1 FALSE 1505957488 78719
+## 456 TRUE 1 FALSE 1506086085 78719
+## 457 TRUE 1 FALSE 1505496336 78719
+## 458 TRUE 1 FALSE 1505496394 78719
+## 459 TRUE 1 FALSE 1505496491 78719
+## 460 TRUE 1 FALSE 1505501386 78719
+## 461 TRUE 1 FALSE 1505501455 78719
+## 462 FALSE 1 FALSE 1505501580 78719
+## 463 TRUE 2 FALSE 1505501591 78719
+## 464 FALSE 1 FALSE 1505501626 78719
+## 465 TRUE 2 FALSE 1505501659 78719
+## 466 TRUE 1 FALSE 1505501700 78719
+## 467 FALSE 1 FALSE 1505330720 78719
+## 468 TRUE 2 FALSE 1505330738 78719
+## 469 TRUE 1 FALSE 1506088629 78719
+## 470 TRUE 1 FALSE 1505211829 78719
+## 471 FALSE 1 FALSE 1505955205 78719
+## 472 TRUE 2 FALSE 1505955250 78719
+## 473 TRUE 1 FALSE 1505955256 78719
+## 474 TRUE 1 FALSE 1505955414 78719
+## 475 TRUE 1 FALSE 1505330961 78719
+## 476 TRUE 1 FALSE 1505955847 78719
+## 477 FALSE 6 FALSE 1505851504 78719
+## 478 FALSE 7 FALSE 1505851641 78719
+## 479 TRUE 8 FALSE 1505851908 78719
+## 480 TRUE 1 FALSE 1506091126 78719
+## 481 TRUE 1 FALSE 1505852056 78719
+## 482 FALSE 1 FALSE 1505852313 78719
+## 483 TRUE 2 FALSE 1505852708 78719
+## 484 TRUE 1 FALSE 1505331347 78719
+## 485 <NA> 1 FALSE 1505331349 78719
+## 486 TRUE 1 FALSE 1505347519 78719
+## 487 TRUE 1 FALSE 1505347564 78719
+## 488 TRUE 1 FALSE 1505347811 78719
+## 489 TRUE 1 FALSE 1505347847 78719
+## 490 TRUE 1 FALSE 1505347945 78719
+## 491 FALSE 1 FALSE 1505348224 78719
+## 492 TRUE 2 FALSE 1505348287 78719
+## 493 TRUE 1 FALSE 1505496007 78719
+## 494 TRUE 1 FALSE 1505958584 78719
+## 495 TRUE 1 FALSE 1506086075 78719
+## 496 TRUE 1 FALSE 1505501186 78719
+## 497 TRUE 1 FALSE 1506086148 78719
+## 498 TRUE 1 FALSE 1506086223 78719
+## 499 TRUE 1 FALSE 1506086343 78719
+## 500 TRUE 1 FALSE 1505959075 78719
+## 501 <NA> 1 NA 1505223723 78719
+## 502 <NA> 1 NA 1505959079 78719
+## 503 TRUE 1 FALSE 1506004825 78719
+## 504 TRUE 1 FALSE 1506004878 78719
+## 505 FALSE 1 FALSE 1506005482 78719
+## 506 TRUE 2 FALSE 1506005509 78719
+## 507 TRUE 1 FALSE 1506005685 78719
+## 508 TRUE 1 FALSE 1506005864 78719
+## 509 TRUE 1 FALSE 1505330749 78719
+## 510 TRUE 1 FALSE 1505330760 78719
+## 511 TRUE 1 FALSE 1505330806 78719
+## 512 FALSE 1 FALSE 1506090232 78719
+## 513 TRUE 2 FALSE 1506090248 78719
+## 514 TRUE 1 FALSE 1506090619 78719
+## 515 TRUE 1 FALSE 1506006586 78719
+## 516 FALSE 5 FALSE 1505851485 78719
+## 517 TRUE 1 FALSE 1506090890 78719
+## 518 TRUE 1 FALSE 1506006963 78719
+## 519 TRUE 1 FALSE 1506007028 78719
+## 520 TRUE 1 FALSE 1505852010 78719
+## 521 TRUE 2 FALSE 1505495349 78719
+## 522 TRUE 1 FALSE 1505495362 78719
+## 523 TRUE 1 FALSE 1505495372 78719
+## 524 TRUE 1 FALSE 1506007061 78719
+## 525 TRUE 1 FALSE 1505495433 78719
+## 526 TRUE 1 FALSE 1505495458 78719
+## 527 TRUE 1 FALSE 1505495488 78719
+## 528 TRUE 1 FALSE 1505495631 78719
+## 529 TRUE 1 FALSE 1505495740 78719
+## 530 TRUE 1 FALSE 1505495791 78719
+## 531 TRUE 1 FALSE 1505495846 78719
+## 532 TRUE 1 FALSE 1505495958 78719
+## 533 TRUE 1 FALSE 1505957446 78719
+## 534 TRUE 1 FALSE 1505501107 78719
+## 535 TRUE 1 FALSE 1505501160 78719
+## 536 TRUE 1 FALSE 1505954807 78719
+## 537 TRUE 1 FALSE 1505954822 78719
+## 538 TRUE 1 FALSE 1506088657 78719
+## 539 FALSE 1 FALSE 1506006122 78719
+## 540 FALSE 1 FALSE 1505496584 78719
+## 541 TRUE 1 FALSE 1505227687 78719
+## 542 TRUE 1 FALSE 1505227699 78719
+## 543 TRUE 1 FALSE 1505954593 78719
+## 544 FALSE 1 FALSE 1505954682 78719
+## 545 TRUE 2 FALSE 1505954716 78719
+## 546 TRUE 1 FALSE 1505954728 78719
+## 547 TRUE 1 FALSE 1505954730 78719
+## 548 TRUE 1 FALSE 1505954743 78719
+## 549 TRUE 1 FALSE 1505845472 78719
+## 550 TRUE 1 FALSE 1505845478 78719
+## 551 TRUE 1 FALSE 1505845488 78719
+## 552 TRUE 1 FALSE 1505845493 78719
+## 553 TRUE 2 FALSE 1506006177 78719
+## 554 TRUE 1 FALSE 1506006215 78719
+## 555 TRUE 1 FALSE 1506090824 78719
+## 556 TRUE 1 FALSE 1506090859 78719
+## 557 TRUE 1 FALSE 1505330976 78719
+## 558 TRUE 1 FALSE 1506090976 78719
+## 559 TRUE 1 FALSE 1506090979 78719
+## 560 TRUE 1 FALSE 1505845421 78719
+## 561 TRUE 1 FALSE 1505845453 78719
+## 562 TRUE 1 FALSE 1505228732 78719
+## 563 TRUE 1 FALSE 1505501701 78719
+## 564 <NA> 1 NA 1505501702 78719
+## 565 TRUE 1 FALSE 1506005908 78719
+## 566 <NA> 1 NA 1505845495 78719
+## 567 TRUE 1 FALSE 1505956742 78719
+## 568 TRUE 1 FALSE 1505956923 78719
+## 569 TRUE 1 FALSE 1505957091 78719
+## 570 TRUE 1 FALSE 1505957113 78719
+## 571 TRUE 1 FALSE 1505957336 78719
+## 572 TRUE 1 FALSE 1505957391 78719
+## 573 FALSE 1 FALSE 1505853851 78719
+## 574 TRUE 1 FALSE 1505958570 78719
+## 575 TRUE 1 FALSE 1505331167 78719
+## 576 TRUE 1 FALSE 1505331228 78719
+## 577 TRUE 1 FALSE 1505331248 78719
+## 578 TRUE 1 FALSE 1505331315 78719
+## 579 FALSE 1 FALSE 1505954966 78719
+## 580 TRUE 1 FALSE 1506086441 78719
+## 581 FALSE 1 FALSE 1506086639 78719
+## 582 TRUE 1 FALSE 1505959078 78719
+## 583 TRUE 2 FALSE 1505496624 78719
+## 584 FALSE 1 FALSE 1505228589 78719
+## 585 TRUE 2 FALSE 1505228613 78719
+## 586 TRUE 1 FALSE 1505228645 78719
+## 587 TRUE 1 FALSE 1505228692 78719
+## 588 TRUE 1 FALSE 1506087274 78719
+## 589 TRUE 1 FALSE 1506087284 78719
+## 590 TRUE 1 FALSE 1505228790 78719
+## 591 TRUE 1 FALSE 1505228855 78719
+## 592 TRUE 1 FALSE 1505331345 78719
+## 593 TRUE 2 FALSE 1505954976 78719
+## 594 TRUE 1 FALSE 1505844732 78719
+## 595 TRUE 1 FALSE 1506006309 78719
+## 596 TRUE 1 FALSE 1506006523 78719
+## 597 TRUE 1 FALSE 1506006538 78719
+## 598 TRUE 1 FALSE 1505331048 78719
+## 599 TRUE 1 FALSE 1505331140 78719
+## 600 TRUE 1 FALSE 1505331150 78719
+## 601 TRUE 1 FALSE 1505844996 78719
+## 602 TRUE 1 FALSE 1506007037 78719
+## 603 FALSE 1 FALSE 1505495312 78719
+## 604 TRUE 1 FALSE 1506007043 78719
+## 605 TRUE 1 FALSE 1505329142 78719
+## 606 TRUE 1 FALSE 1505347429 78719
+## 607 TRUE 1 FALSE 1505347466 78719
+## 608 FALSE 1 FALSE 1505853346 78719
+## 609 TRUE 2 FALSE 1505853433 78719
+## 610 TRUE 1 FALSE 1505853508 78719
+## 611 TRUE 1 FALSE 1505853693 78719
+## 612 TRUE 1 FALSE 1505853702 78719
+## 613 TRUE 1 FALSE 1505501022 78719
+## 614 TRUE 1 FALSE 1505958562 78719
+## 615 TRUE 1 FALSE 1505496650 78719
+## 616 TRUE 1 FALSE 1505844594 78719
+## 617 TRUE 1 FALSE 1505844624 78719
+## 618 TRUE 1 FALSE 1506007048 78719
+## 619 TRUE 1 FALSE 1505844664 78719
+## 620 TRUE 1 FALSE 1505844684 78719
+## 621 TRUE 1 FALSE 1505844691 78719
+## 622 TRUE 2 FALSE 1506086647 78719
+## 623 TRUE 1 FALSE 1505844857 78719
+## 624 TRUE 1 FALSE 1505844901 78719
+## 625 TRUE 1 FALSE 1505496631 78719
+## 626 TRUE 1 FALSE 1505844582 78719
+## 627 FALSE 1 FALSE 1505346300 78719
+## 628 TRUE 2 FALSE 1505346308 78719
+## 629 TRUE 3 FALSE 1505329730 78719
+## 630 TRUE 1 FALSE 1505329782 78719
+## 631 TRUE 1 FALSE 1505844639 78719
+## 632 TRUE 1 FALSE 1505499580 78719
+## 633 FALSE 1 FALSE 1506007112 78719
+## 634 TRUE 2 FALSE 1506007123 78719
+## 635 TRUE 1 FALSE 1505844816 78719
+## 636 TRUE 1 FALSE 1506007135 78719
+## 637 <NA> 1 NA 1506007137 78719
+## 638 TRUE 1 FALSE 1505844943 78719
+## 639 TRUE 1 FALSE 1505844989 78719
+## 640 TRUE 1 FALSE 1505958509 78719
+## 641 TRUE 1 FALSE 1505329632 78719
+## 642 TRUE 1 FALSE 1505329666 78719
+## 643 TRUE 1 FALSE 1505346366 78719
+## 644 TRUE 1 FALSE 1505329873 78719
+## 645 TRUE 1 FALSE 1505844649 78719
+## 646 TRUE 1 FALSE 1505498707 78719
+## 647 TRUE 1 FALSE 1505498747 78719
+## 648 TRUE 1 FALSE 1506007131 78719
+## 649 TRUE 1 FALSE 1505844720 78719
+## 650 TRUE 1 FALSE 1505329489 78719
+## 651 TRUE 1 FALSE 1505500932 78719
+## 652 TRUE 1 FALSE 1505500954 78719
+## 653 TRUE 1 FALSE 1505498930 78719
+## 654 <NA> 1 NA 1506091675 78719
+## 655 TRUE 1 FALSE 1505499123 78719
+## 656 TRUE 1 FALSE 1505499226 78719
+## 657 TRUE 1 FALSE 1505844610 78719
+## 658 TRUE 1 FALSE 1505499490 78719
+## 659 TRUE 1 FALSE 1505347051 78719
+## 660 TRUE 1 FALSE 1505499862 78719
+## 661 TRUE 1 FALSE 1505498788 78719
+## 662 TRUE 1 FALSE 1505499995 78719
+## 663 TRUE 1 FALSE 1505500071 78719
+## 664 TRUE 1 FALSE 1505329568 78719
+## 665 TRUE 1 FALSE 1505329608 78719
+## 666 TRUE 1 FALSE 1505498875 78719
+## 667 TRUE 1 FALSE 1505498686 78719
+## 668 TRUE 1 FALSE 1505498695 78719
+## 669 TRUE 1 FALSE 1505499461 78719
+## 670 TRUE 1 FALSE 1505346618 78719
+## 671 TRUE 1 FALSE 1505347366 78719
+## 672 TRUE 1 FALSE 1505329182 78719
+## 673 TRUE 1 FALSE 1506091673 78719
+## 674 TRUE 1 FALSE 1505499901 78719
+## 675 TRUE 1 FALSE 1506091671 78719
+## 676 TRUE 1 FALSE 1505346658 78719
+## 677 TRUE 1 FALSE 1505346735 78719
+## 678 TRUE 1 FALSE 1505958381 78719
+## 679 FALSE 1 FALSE 1505329683 78719
+## 680 TRUE 1 FALSE 1506091241 78719
+## 681 TRUE 1 FALSE 1505347402 78719
+## 682 TRUE 1 FALSE 1505499403 78719
+## 683 TRUE 1 FALSE 1505347072 78719
+## 684 TRUE 1 FALSE 1505499341 78719
+## 685 TRUE 1 FALSE 1505496653 78719
+## 686 TRUE 1 FALSE 1505329267 78719
+## 687 TRUE 1 FALSE 1505498901 78719
+## 688 TRUE 1 FALSE 1505958346 78719
+## 689 <NA> 1 NA 1505496655 78719
+## 690 TRUE 1 FALSE 1505499328 78719
+## 691 TRUE 1 FALSE 1506091433 78719
+## 692 TRUE 1 FALSE 1506091267 78719
+## 693 TRUE 1 FALSE 1506091576 78719
+## 694 TRUE 1 FALSE 1505499300 78719
+## 695 FALSE 2 FALSE 1505329723 78719
+## 696 TRUE 1 FALSE 1505499359 78719
+## 697 TRUE 1 FALSE 1505499273 78719
+## 698 <NA> NA NA NA 98193
+## 699 TRUE 1 FALSE 1505672801 44419
+## 700 TRUE 1 FALSE 1504988371 44419
+## 701 TRUE 1 FALSE 1504988436 44419
+## 702 TRUE 1 FALSE 1505397508 44419
+## 703 TRUE NA NA NA 44419
+## 704 TRUE 1 FALSE 1504988381 44419
+## 705 TRUE 1 FALSE 1504988559 44419
+## 706 TRUE 1 FALSE 1505398539 44419
+## 707 TRUE 1 FALSE 1504988249 44419
+## 708 TRUE 1 FALSE 1504988327 44419
+## 709 TRUE 1 FALSE 1505397488 44419
+## 710 TRUE 1 FALSE 1505348198 44419
+## 711 FALSE 1 FALSE 1505348218 44419
+## 712 TRUE 2 FALSE 1505348259 44419
+## 713 TRUE 1 FALSE 1505348113 44419
+## 714 TRUE 1 FALSE 1505348334 44419
+## 715 TRUE 1 FALSE 1505348421 44419
+## 716 FALSE 1 FALSE 1505348428 44419
+## 717 TRUE 1 FALSE 1504988164 44419
+## 718 TRUE 1 FALSE 1504988177 44419
+## 719 TRUE 1 FALSE 1504988219 44419
+## 720 TRUE 1 FALSE 1505398500 44419
+## 721 TRUE 1 FALSE 1505333675 44419
+## 722 <NA> NA NA NA 44419
+## 723 TRUE 1 FALSE 1505397782 44419
+## 724 TRUE 1 FALSE 1505398886 44419
+## 725 TRUE 1 FALSE 1505359039 44419
+## 726 TRUE 1 FALSE 1505348264 44419
+## 727 TRUE 1 FALSE 1504986835 44419
+## 728 TRUE 1 FALSE 1504986923 44419
+## 729 TRUE 1 FALSE 1504986941 44419
+## 730 TRUE 1 FALSE 1504986960 44419
+## 731 TRUE 1 FALSE 1504986967 44419
+## 732 TRUE 1 FALSE 1504988140 44419
+## 733 TRUE 10 FALSE 1505400338 44419
+## 734 TRUE 1 FALSE 1505601498 44419
+## 735 FALSE 1 FALSE 1505606432 44419
+## 736 TRUE 1 FALSE 1505333608 44419
+## 737 TRUE 1 FALSE 1505397803 44419
+## 738 TRUE 1 FALSE 1505397823 44419
+## 739 TRUE 1 FALSE 1505397847 44419
+## 740 TRUE 1 FALSE 1505 44419
+## 741 TRUE 1 FALSE 1505670262 44419
+## 742 TRUE 1 FALSE 1505670349 44419
+## 743 TRUE 1 FALSE 1505670358 44419
+## 744 TRUE 1 FALSE 1505670445 44419
+## 745 TRUE 1 FALSE 1505397641 44419
+## 746 TRUE 1 FALSE 1505397653 44419
+## 747 TRUE 1 FALSE 1505672711 44419
+## 748 TRUE 1 FALSE 1505333553 44419
+## 749 TRUE 1 FALSE 1505397778 44419
+## 750 TRUE 1 FALSE 1505395347 44419
+## 751 TRUE 1 FALSE 1505395366 44419
+## 752 TRUE 1 FALSE 1505398916 44419
+## 753 TRUE 1 FALSE 1505397531 44419
+## 754 TRUE 1 FALSE 1505397548 44419
+## 755 TRUE 1 FALSE 1505397579 44419
+## 756 TRUE 1 FALSE 1505397595 44419
+## 757 TRUE 1 FALSE 1505397638 44419
+## 758 TRUE 3 FALSE 1505395733 44419
+## 759 TRUE 2 FALSE 1505348466 44419
+## 760 TRUE 1 FALSE 1505397709 44419
+## 761 TRUE 1 FALSE 1505397770 44419
+## 762 FALSE 8 FALSE 1505399728 44419
+## 763 FALSE 9 FALSE 1505400167 44419
+## 764 TRUE 1 FALSE 1505353029 44419
+## 765 FALSE 1 FALSE 1505395380 44419
+## 766 TRUE 2 FALSE 1505395392 44419
+## 767 TRUE 1 FALSE 1505395544 44419
+## 768 TRUE 1 FALSE 1505395582 44419
+## 769 FALSE 1 FALSE 1505395659 44419
+## 770 FALSE 2 FALSE 1505395675 44419
+## 771 TRUE NA NA NA 44419
+## 772 TRUE 1 FALSE 1505672065 44419
+## 773 TRUE 1 FALSE 1505672679 44419
+## 774 TRUE 1 FALSE 1505333531 44419
+## 775 TRUE 1 FALSE 1505670677 44419
+## 776 TRUE 1 FALSE 1505670682 44419
+## 777 TRUE 1 FALSE 1505670726 44419
+## 778 TRUE 1 FALSE 1505353099 44419
+## 779 TRUE 1 FALSE 1505353157 44419
+## 780 TRUE 1 FALSE 1505398950 44419
+## 781 FALSE 1 FALSE 1505399055 44419
+## 782 FALSE 2 FALSE 1505399428 44419
+## 783 FALSE 3 FALSE 1505399465 44419
+## 784 FALSE 4 FALSE 1505399496 44419
+## 785 FALSE 5 FALSE 1505399592 44419
+## 786 FALSE 6 FALSE 1505399620 44419
+## 787 FALSE 7 FALSE 1505399652 44419
+## 788 TRUE 1 FALSE 1505352952 44419
+## 789 TRUE 1 FALSE 1505352960 44419
+## 790 TRUE 1 FALSE 1505353002 44419
+## 791 TRUE 1 FALSE 1505670864 44419
+## 792 TRUE 1 FALSE 1505670992 44419
+## 793 TRUE 1 FALSE 1505670141 44419
+## 794 FALSE 2 FALSE 1505606489 44419
+## 795 TRUE 1 FALSE 1505613009 44419
+## 796 TRUE 1 FALSE 1505613044 44419
+## 797 TRUE 1 FALSE 1505613053 44419
+## 798 TRUE 1 FALSE 1505613077 44419
+## 799 TRUE 1 FALSE 1505613092 44419
+## 800 TRUE 1 FALSE 1505670591 44419
+## 801 TRUE 1 FALSE 1505613297 44419
+## 802 TRUE 1 FALSE 1505613318 44419
+## 803 TRUE 1 FALSE 1505613339 44419
+## 804 TRUE 2 FALSE 1505395031 44419
+## 805 TRUE 1 FALSE 1505359530 44419
+## 806 FALSE 1 FALSE 1505671039 44419
+## 807 FALSE 2 FALSE 1505671056 44419
+## 808 FALS NA NA NA 44419
+## 809 TRUE 1 FALSE 1505348982 44419
+## 810 FALSE 1 FALSE 1505349125 44419
+## 811 TRUE 1 FALSE 1505672028 44419
+## 812 <NA> NA NA NA 44419
+## 813 TRUE 1 FALSE 1505333490 44419
+## 814 TRUE 1 FALSE 1505613809 44419
+## 815 TRUE 1 FALSE 1505394760 44419
+## 816 TRUE 1 FALSE 1505394811 44419
+## 817 TRUE 1 FALSE 1505348492 44419
+## 818 TRUE 1 FALSE 1505348728 44419
+## 819 TRUE 1 FALSE 1505359554 44419
+## 820 TRUE 1 FALSE 1505353165 44419
+## 821 TRUE 1 FALSE 1505359090 44419
+## 822 FALSE 1 FALSE 1505359239 44419
+## 823 FALSE 2 FALSE 1505359371 44419
+## 824 FALSE 3 FALSE 1505359381 44419
+## 825 TRUE 4 FALSE 1505359388 44419
+## 826 TRUE 1 FALSE 1505359400 44419
+## 827 TRUE 1 FALSE 1505396111 44419
+## 828 TRUE 1 FALSE 1505332924 44419
+## 829 TRUE 1 FALSE 1505332945 44419
+## 830 FALSE 1 FALSE 1505394996 44419
+## 831 TRUE 1 FALSE 1505359501 44419
+## 832 TRUE 1 FALSE 1505348737 44419
+## 833 TRUE 1 FALSE 1505348789 44419
+## 834 TRUE 1 FALSE 1505353213 44419
+## 835 TRUE 1 FALSE 1505353313 44419
+## 836 TRUE 1 FALSE 1505353329 44419
+## 837 TRUE 1 FALSE 1505353351 44419
+## 838 TRUE 1 FALSE 1505353369 44419
+## 839 TRUE 1 FALSE 1505353378 44419
+## 840 TRUE 1 FALSE 1505332978 44419
+## 841 TRUE 1 FALSE 1505332996 44419
+## 842 TRUE 1 FALSE 1505333016 44419
+## 843 TRUE 1 FALSE 1505332968 44419
+## 844 TRUE 1 FALSE 1505348888 44419
+## 845 TRUE 1 FALSE 1505348916 44419
+## 846 TRUE 1 FALSE 1505671998 44419
+## 847 TRUE 1 FALSE 1505348880 44419
+## 848 TRUE 1 FALSE 1505333443 44419
+## 849 TRUE 1 FALSE 1505359455 44419
+## 850 TRUE 1 FALSE 1505670522 44419
+## 851 FALSE 1 FALSE 1505613912 44419
+## 852 TRUE 1 FALSE 1505359451 44419
+## 853 FALSE 1 FALSE 1505359716 44419
+## 854 TRUE 1 FALSE 1505670180 44419
+## 855 FALSE 1 FALSE 1505671726 44419
+## 856 TRUE 1 FALSE 1505359604 44419
+## 857 TRUE 2 FALSE 1505333189 44419
+## 858 TRUE 1 FALSE 1505670511 44419
+## 859 TRUE 1 FALSE 1505670190 44419
+## 860 TRUE 1 FALSE 1505670194 44419
+## 861 TRUE 1 FALSE 1505353386 44419
+## 862 TRUE 1 FALSE 1505671829 44419
+## 863 <NA> 1 FALSE 1505353388 44419
+## 864 TRUE 1 FALSE 1505395773 44419
+## 865 TRUE 1 FALSE 1505671797 44419
+## 866 <NA> NA NA NA 44419
+## 867 TRUE 1 FALSE 1505671872 44419
+## 868 TRUE 1 FALSE 1505671898 44419
+## 869 TRUE 1 FALSE 1505613818 44419
+## 870 TRUE 2 FALSE 1505671749 44419
+## 871 TRUE 1 FALSE 1505613375 44419
+## 872 TRUE 1 FALSE 1505613474 44419
+## 873 FALSE 2 FALSE 1505359732 44419
+## 874 TRUE 3 FALSE 1505359755 44419
+## 875 TRUE 1 FALSE 1505671976 44419
+## 876 TRUE 1 FALSE 1505395854 44419
+## 877 TRUE 1 FALSE 1505671758 44419
+## 878 FALSE 1 FALSE 1505613783 44419
+## 879 TRUE 1 FALSE 1505395805 44419
+## 880 FALSE 1 FALSE 1505333148 44419
+## 881 TRUE 1 FALSE 1505395974 44419
+## 882 TRUE 2 FALSE 1505613798 44419
+## 883 TRUE 2 FALSE 1505333121 44419
+## 884 FALSE 1 FALSE 1505333108 44419
+## 885 TRUE 1 FALSE 1505671775 44419
+## 886 TRUE 1 FALSE 1505395892 44419
+## 887 TRUE 1 FALSE 1505355131 14748
+## 888 TRUE 2 FALSE 1505175798 14748
+## 889 TRUE 1 FALSE 1505355148 14748
+## 890 FALSE 1 FALSE 1505175774 14748
+## 891 TRUE 1 FALSE 1505355041 14748
+## 892 TRUE 1 FALSE 1505350172 14748
+## 893 TRUE 1 FALSE 1505350192 14748
+## 894 TRUE 1 FALSE 1505350217 14748
+## 895 TRUE 1 FALSE 1505175727 14748
+## 896 TRUE 1 FALSE 1505349838 14748
+## 897 TRUE 1 FALSE 1505175712 14748
+## 898 TRUE 1 FALSE 1505355013 14748
+## 899 TRUE 1 FALSE 1505347297 14748
+## 900 TRUE 1 FALSE 1505350265 14748
+## 901 TRUE 2 FALSE 1505346896 14748
+## 902 TRUE 1 FALSE 1505358761 14748
+## 903 TRUE 1 FALSE 1505355044 14748
+## 904 TRUE 1 FALSE 1505350159 14748
+## 905 TRUE 1 FALSE 1505175688 14748
+## 906 TRUE 1 FALSE 1505349114 14748
+## 907 FALSE 1 FALSE 1505355101 14748
+## 908 TRUE 2 FALSE 1505355126 14748
+## 909 TRUE 1 FALSE 1505348375 14748
+## 910 FALSE 1 FALSE 1505348385 14748
+## 911 TRUE 1 FALSE 1505355172 14748
+## 912 TRUE 1 FALSE 1505350224 14748
+## 913 TRUE 1 FALSE 1505350240 14748
+## 914 <NA> 1 FALSE 1505350266 14748
+## 915 TRUE 1 FALSE 1505350487 14748
+## 916 TRUE 1 FALSE 1505355003 14748
+## 917 TRUE 1 FALSE 1505350133 14748
+## 918 TRUE 1 TRUE 1505358747 14748
+## 919 TRUE 1 FALSE 1505355098 14748
+## 920 TRUE 1 FALSE 1505351111 14748
+## 921 TRUE 1 FALSE 1505351122 14748
+## 922 TRUE 2 FALSE 1505346721 14748
+## 923 FALSE 1 FALSE 1505346879 14748
+## 924 TRUE 2 FALSE 1505348398 14748
+## 925 TRUE 1 FALSE 1505347235 14748
+## 926 FALSE 1 FALSE 1505349686 14748
+## 927 TRUE 1 FALSE 1505350262 14748
+## 928 TRUE 1 FALSE 1505354928 14748
+## 929 TRUE 1 FALSE 1505350797 14748
+## 930 TRUE 1 FALSE 1505346521 14748
+## 931 TRUE 1 FALSE 1505346546 14748
+## 932 TRUE 1 FALSE 1505175654 14748
+## 933 TRUE 1 FALSE 1505355077 14748
+## 934 FALSE 1 FALSE 1505346707 14748
+## 935 TRUE 1 FALSE 1505349824 14748
+## 936 TRUE 1 FALSE 1505350939 14748
+## 937 TRUE 1 FALSE 1505357680 14748
+## 938 TRUE 1 FALSE 1505349925 14748
+## 939 TRUE 1 FALSE 1505349944 14748
+## 940 TRUE 1 FALSE 1505347336 14748
+## 941 TRUE 1 FALSE 1505355192 14748
+## 942 TRUE 1 FALSE 1505349995 14748
+## 943 TRUE 1 FALSE 1505350080 14748
+## 944 TRUE 1 FALSE 1505350110 14748
+## 945 TRUE 1 FALSE 1505355054 14748
+## 946 TRUE 1 FALSE 1505358677 14748
+## 947 TRUE 1 FALSE 1505349062 14748
+## 948 FALSE 1 FALSE 1505355979 14748
+## 949 FALSE 2 FALSE 1505356044 14748
+## 950 TRUE 1 FALSE 1505349133 14748
+## 951 TRUE 1 FALSE 1505349168 14748
+## 952 TRUE 1 FALSE 1505348411 14748
+## 953 TRUE 1 FALSE 1505354853 14748
+## 954 TRUE 1 FALSE 1505354864 14748
+## 955 TRUE 1 FALSE 1505354901 14748
+## 956 FALSE 1 FALSE 1505175880 14748
+## 957 TRUE 1 FALSE 1505346512 14748
+## 958 TRUE 1 FALSE 1505350118 14748
+## 959 TRUE 1 FALSE 1505176077 14748
+## 960 TRUE 1 FALSE 1505350503 14748
+## 961 TRUE 1 FALSE 1505350518 14748
+## 962 FALSE 1 FALSE 1505350571 14748
+## 963 TRUE 2 FALSE 1505350580 14748
+## 964 TRUE 1 FALSE 1505350594 14748
+## 965 TRUE 1 FALSE 1505350609 14748
+## 966 TRUE 1 FALSE 1505350621 14748
+## 967 TRUE 1 FALSE 1505350640 14748
+## 968 FALSE 2 FALSE 1505349690 14748
+## 969 TRUE 1 FALSE 1505355227 14748
+## 970 TRUE 1 FALSE 1505355244 14748
+## 971 TRUE 1 FALSE 1505176029 14748
+## 972 FALSE 9 FALSE 1505349747 14748
+## 973 FALSE 10 FALSE 1505349748 14748
+## 974 TRUE 13 FALSE 1505349803 14748
+## 975 FALSE 12 FALSE 1505349750 14748
+## 976 TRUE 1 FALSE 1505347687 14748
+## 977 TRUE 1 FALSE 1505347702 14748
+## 978 TRUE 1 FALSE 1505349863 14748
+## 979 TRUE 1 FALSE 1505347832 14748
+## 980 TRUE 1 FALSE 1505175460 14748
+## 981 TRUE 1 FALSE 1505349962 14748
+## 982 TRUE 1 FALSE 1505348262 14748
+## 983 TRUE 1 FALSE 1505348266 14748
+## 984 TRUE 1 FALSE 1505348300 14748
+## 985 TRUE 1 FALSE 1505175639 14748
+## 986 TRUE 1 FALSE 1505351094 14748
+## 987 TRUE 2 FALSE 1505355738 14748
+## 988 TRUE 1 FALSE 1505349005 14748
+## 989 TRUE 1 FALSE 1505176152 14748
+## 990 TRUE 1 FALSE 1505351151 14748
+## 991 FALSE 1 FALSE 1505351183 14748
+## 992 TRUE 1 FALSE 1505358763 14748
+## 993 FALSE 1 FALSE 1505175821 14748
+## 994 TRUE 2 FALSE 1505175830 14748
+## 995 TRUE 1 FALSE 1505175840 14748
+## 996 TRUE 1 FALSE 1505349295 14748
+## 997 TRUE 1 FALSE 1505175950 14748
+## 998 TRUE 1 FALSE 1505349311 14748
+## 999 TRUE 1 FALSE 1505349314 14748
+## 1000 TRUE 1 FALSE 1505176120 14748
+## 1001 TRUE 1 FALSE 1505176145 14748
+## 1002 TRUE 2 FALSE 1505347602 14748
+## 1003 TRUE 1 FALSE 1505176156 14748
+## 1004 <NA> 1 NA 1505176160 14748
+## 1005 TRUE 4 FALSE 1505357576 14748
+## 1006 TRUE 1 FALSE 1505357694 14748
+## 1007 TRUE 1 FALSE 1505349647 14748
+## 1008 FALSE 1 FALSE 1505350674 14748
+## 1009 FALSE 3 FALSE 1505349699 14748
+## 1010 FALSE 5 FALSE 1505349710 14748
+## 1011 TRUE 1 FALSE 1505350820 14748
+## 1012 FALSE 8 FALSE 1505349745 14748
+## 1013 TRUE 1 FALSE 1505350892 14748
+## 1014 FALSE 11 FALSE 1505349749 14748
+## 1015 TRUE 1 FALSE 1505349521 14748
+## 1016 TRUE 1 FALSE 1505355317 14748
+## 1017 TRUE 1 FALSE 1505355320 14748
+## 1018 TRUE 1 FALSE 1505347811 14748
+## 1019 TRUE 1 FALSE 1505355398 14748
+## 1020 TRUE 1 FALSE 1505347882 14748
+## 1021 TRUE 1 FALSE 1505175531 14748
+## 1022 TRUE 1 FALSE 1505175544 14748
+## 1023 TRUE 1 FALSE 1505175562 14748
+## 1024 TRUE 1 FALSE 1505175569 14748
+## 1025 TRUE 1 FALSE 1505358579 14748
+## 1026 TRUE 1 FALSE 1505349011 14748
+## 1027 TRUE 1 FALSE 1505358552 14748
+## 1028 FALSE 1 FALSE 1505347583 14748
+## 1029 TRUE 1 FALSE 1505349553 14748
+## 1030 FALSE 1 FALSE 1505349599 14748
+## 1031 FALSE 3 FALSE 1505356231 14748
+## 1032 FALSE 2 FALSE 1505351200 14748
+## 1033 <NA> 1 FALSE 1505358765 14748
+## 1034 TRUE 1 FALSE 1505349268 14748
+## 1035 TRUE 1 FALSE 1505349282 14748
+## 1036 TRUE 1 FALSE 1505351227 14748
+## 1037 TRUE 1 FALSE 1505349307 14748
+## 1038 TRUE 2 FALSE 1505175919 14748
+## 1039 TRUE 1 FALSE 1505175941 14748
+## 1040 <NA> 1 FALSE 1505349316 14748
+## 1041 TRUE 1 TRUE 1505358432 14748
+## 1042 TRUE 1 FALSE 1505355293 14748
+## 1043 TRUE 1 FALSE 1505357788 14748
+## 1044 TRUE 2 FALSE 1505349612 14748
+## 1045 TRUE 1 FALSE 1505349619 14748
+## 1046 TRUE 1 FALSE 1505349643 14748
+## 1047 TRUE 1 FALSE 1505357599 14748
+## 1048 TRUE 1 FALSE 1505357717 14748
+## 1049 TRUE 1 FALSE 1505347388 14748
+## 1050 TRUE 1 FALSE 1505347414 14748
+## 1051 FALSE 6 FALSE 1505349733 14748
+## 1052 TRUE 1 FALSE 1505350846 14748
+## 1053 TRUE 1 FALSE 1505347559 14748
+## 1054 TRUE 15 TRUE 1505357218 14748
+## 1055 TRUE 1 FALSE 1505357252 14748
+## 1056 TRUE 1 FALSE 1505346554 14748
+## 1057 FALSE 1 FALSE 1505357932 14748
+## 1058 TRUE 1 FALSE 1505350909 14748
+## 1059 TRUE 1 FALSE 1505355374 14748
+## 1060 FALSE 1 FALSE 1505350992 14748
+## 1061 TRUE 1 FALSE 1505347891 14748
+## 1062 <NA> 1 FALSE 1505347895 14748
+## 1063 TRUE 1 FALSE 1505348212 14748
+## 1064 TRUE 1 FALSE 1505348248 14748
+## 1065 TRUE 1 FALSE 1505351066 14748
+## 1066 FALSE 1 FALSE 1505355725 14748
+## 1067 TRUE 1 FALSE 1505355679 14748
+## 1068 TRUE 1 FALSE 1505355261 14748
+## 1069 TRUE 2 FALSE 1505357765 14748
+## 1070 TRUE 1 FALSE 1505346567 14748
+## 1071 TRUE 1 FALSE 1505346591 14748
+## 1072 FALSE 4 FALSE 1505356280 14748
+## 1073 FALSE 3 FALSE 1505351202 14748
+## 1074 TRUE 4 FALSE 1505351203 14748
+## 1075 TRUE 1 FALSE 1505351221 14748
+## 1076 FALSE 8 FALSE 1505356640 14748
+## 1077 TRUE 1 FALSE 1505351246 14748
+## 1078 FALSE 10 FALSE 1505356813 14748
+## 1079 FALSE 11 FALSE 1505356828 14748
+## 1080 TRUE 1 FALSE 1505348616 14748
+## 1081 FALSE 12 FALSE 1505357067 14748
+## 1082 FALSE 13 FALSE 1505357184 14748
+## 1083 TRUE 1 FALSE 1505357283 14748
+## 1084 FALSE 1 FALSE 1505357442 14748
+## 1085 FALSE 3 FALSE 1505357519 14748
+## 1086 <NA> 1 FALSE 1505348879 14748
+## 1087 TRUE 1 FALSE 1505348877 14748
+## 1088 <NA> 1 FALSE 1505351457 14748
+## 1089 FALSE 3 FALSE 1505351011 14748
+## 1090 TRUE 2 FALSE 1505350700 14748
+## 1091 TRUE 1 FALSE 1505347434 14748
+## 1092 FALSE 7 FALSE 1505349744 14748
+## 1093 TRUE 1 FALSE 1505347523 14748
+## 1094 TRUE 2 FALSE 1505358376 14748
+## 1095 TRUE 1 FALSE 1505348675 14748
+## 1096 FALSE 1 FALSE 1505357753 14748
+## 1097 FALSE 14 FALSE 1505357205 14748
+## 1098 TRUE 2 FALSE 1505357948 14748
+## 1099 TRUE 1 TRUE 1505357991 14748
+## 1100 TRUE 1 FALSE 1505349177 14748
+## 1101 FALSE 2 FALSE 1505351008 14748
+## 1102 FALSE 7 FALSE 1505356552 14748
+## 1103 TRUE 4 FALSE 1505351012 14748
+## 1104 FALSE 1 FALSE 1505351039 14748
+## 1105 TRUE 2 FALSE 1505351042 14748
+## 1106 <NA> 1 FALSE 1505355460 14748
+## 1107 TRUE 1 FALSE 1505350763 14748
+## 1108 FALSE 1 FALSE 1505358332 14748
+## 1109 TRUE 1 FALSE 1505348684 14748
+## 1110 TRUE 1 FALSE 1505349206 14748
+## 1111 FALSE 2 FALSE 1505357483 14748
+## 1112 TRUE 1 FALSE 1505348837 14748
+## 1113 TRUE 1 FALSE 1505348875 14748
+## 1114 TRUE 1 FALSE 1505348483 14748
+## 1115 TRUE 1 FALSE 1505351456 14748
+## 1116 TRUE 1 FALSE 1505355436 14748
+## 1117 FALSE 9 FALSE 1505356689 14748
+## 1118 TRUE 1 FALSE 1505351432 14748
+## 1119 TRUE 1 FALSE 1505350736 14748
+## 1120 TRUE 1 FALSE 1505358195 14748
+## 1121 TRUE 2 FALSE 1505348819 14748
+## 1122 TRUE 1 FALSE 1505357736 14748
+## 1123 TRUE 1 FALSE 1505351453 14748
+## 1124 FALSE 1 FALSE 1505348799 14748
+## 1125 TRUE 1 FALSE 1505358029 14748
+## 1126 TRUE 1 FALSE 1505348746 14748
+## 1127 FALSE 4 FALSE 1505349707 14748
+## 1128 TRUE 1 FALSE 1505355410 14748
+## 1129 TRUE 1 FALSE 1505348708 14748
+## 1130 TRUE 1 FALSE 1505351395 14748
+## 1131 TRUE 1 FALSE 1505351420 14748
+## 1132 TRUE 1 FALSE 1505358162 14748
+## 1133 FALSE 6 FALSE 1505356472 14748
+## 1134 TRUE 1 TRUE 1505358146 14748
+## 1135 TRUE 1 FALSE 1505355452 14748
+## 1136 FALSE 5 FALSE 1505356464 14748
+## 1137 TRUE 1 FALSE 1505351444 14748
+## 1138 FALSE 1 FALSE 1505351362 14748
+## 1139 TRUE 1 FALSE 1505355459 14748
+## 1140 TRUE 1 FALSE 1505348473 14748
+## 1141 TRUE 2 FALSE 1505351367 14748
+## 1142 TRUE 1 TRUE 1505358111 14748
+## 1143 FALSE 1 FALSE 1505331250 88135
+## 1144 <NA> 1 NA 1505332667 88135
+## 1145 TRUE 1 FALSE 1505332661 88135
+## 1146 TRUE 1 FALSE 1505331746 88135
+## 1147 TRUE 2 FALSE 1505331258 88135
+## 1148 TRUE 2 FALSE 1505331224 88135
+## 1149 FALSE 1 FALSE 1505331208 88135
+## 1150 TRUE 1 FALSE 1505332496 88135
+## 1151 TRUE 3 FALSE 1505331065 88135
+## 1152 TRUE 1 FALSE 1505330766 88135
+## 1153 TRUE 1 FALSE 1505332647 88135
+## 1154 TRUE 1 FALSE 1505332658 88135
+## 1155 TRUE 2 FALSE 1505332572 88135
+## 1156 FALSE 1 FALSE 1505330939 88135
+## 1157 TRUE 1 FALSE 1505331073 88135
+## 1158 FALSE 1 FALSE 1505331033 88135
+## 1159 TRUE 1 FALSE 1505330823 88135
+## 1160 FALSE 1 FALSE 1505332553 88135
+## 1161 TRUE 1 FALSE 1505332294 88135
+## 1162 TRUE 1 FALSE 1505330833 88135
+## 1163 TRUE 1 FALSE 1505332426 88135
+## 1164 TRUE 1 FALSE 1505330844 88135
+## 1165 TRUE 1 FALSE 1505330847 88135
+## 1166 FALSE 2 FALSE 1505331051 88135
+## 1167 TRUE 1 FALSE 1505331849 88135
+## 1168 TRUE 1 FALSE 1505332303 88135
+## 1169 TRUE 1 FALSE 1505332204 88135
+## 1170 TRUE 2 FALSE 1505331018 88135
+## 1171 TRUE 1 FALSE 1505331858 88135
+## 1172 TRUE 1 FALSE 1505504564 55259
+## 1173 TRUE 1 FALSE 1505500848 55259
+## 1174 TRUE 1 FALSE 1505497383 55259
+## 1175 TRUE 1 FALSE 1505500876 55259
+## 1176 TRUE 1 FALSE 1505496746 55259
+## 1177 TRUE 2 FALSE 1505498980 55259
+## 1178 TRUE 1 FALSE 1505496742 55259
+## 1179 TRUE 1 FALSE 1505500560 55259
+## 1180 FALSE 1 FALSE 1505498967 55259
+## 1181 <NA> 1 NA 1505512821 55259
+## 1182 TRUE 1 FALSE 1505512818 55259
+## 1183 TRUE 2 FALSE 1505500224 55259
+## 1184 FALSE 1 FALSE 1505500120 55259
+## 1185 TRUE 1 FALSE 1505497215 55259
+## 1186 TRUE 1 FALSE 1505497011 55259
+## 1187 TRUE 1 FALSE 1505496679 55259
+## 1188 TRUE 1 FALSE 1505500347 55259
+## 1189 TRUE 1 FALSE 1505508707 55259
+## 1190 TRUE 1 FALSE 1505512815 55259
+## 1191 TRUE 2 FALSE 1505507125 55259
+## 1192 FALSE 1 FALSE 1505507089 55259
+## 1193 TRUE 1 FALSE 1505508679 55259
+## 1194 TRUE 1 FALSE 1505506937 55259
+## 1195 TRUE 1 FALSE 1505496673 55259
+## 1196 TRUE 1 FALSE 1505500324 55259
+## 1197 TRUE 1 FALSE 1505510294 55259
+## 1198 FALSE 1 FALSE 1505509055 55259
+## 1199 TRUE 2 FALSE 1505509316 55259
+## 1200 FALSE 1 FALSE 1504888331 75332
+## 1201 TRUE 2 FALSE 1504888348 75332
+## 1202 FALSE 1 FALSE 1504888379 75332
+## 1203 TRUE 1 FALSE 1504988618 75332
+## 1204 TRUE 1 FALSE 1504988630 75332
+## 1205 TRUE 1 FALSE 1504988654 75332
+## 1206 TRUE 1 FALSE 15049 75332
+## 1207 TRUE 2 FALSE 1504888438 75332
+## 1208 FALSE 1 FALSE 1504888547 75332
+## 1209 TRUE 2 FALSE 1504888570 75332
+## 1210 FALSE 1 FALSE 1504888634 75332
+## 1211 TRUE 2 FALSE 1504888653 75332
+## 1212 FALSE 1 FALSE 1504888731 75332
+## 1213 TRUE 2 FALSE 1504888757 75332
+## 1214 FALSE 1 FALSE 1504988574 75332
+## 1215 TRUE 2 FALSE 1504988608 75332
+## 1216 TRUE 1 FALSE 1504888198 75332
+## 1217 TRUE 1 FALSE 1504888235 75332
+## 1218 FALSE 1 FALSE 1504916865 75332
+## 1219 FALSE NA NA NA 75332
+## 1220 TRUE 1 FALSE 1504960775 75332
+## 1221 TRUE 1 FALSE 1504960785 75332
+## 1222 TRUE 1 FALSE 1504960925 75332
+## 1223 TRUE 1 FALSE 1504960939 75332
+## 1224 TRUE 1 FALSE 1504960990 75332
+## 1225 TRUE 1 FALSE 1504961065 75332
+## 1226 TRUE 1 FALSE 1504961074 75332
+## 1227 TRUE 1 FALSE 1504961131 75332
+## 1228 TRUE 1 FALSE 1504961270 75332
+## 1229 TRUE 1 FALSE 1504961289 75332
+## 1230 TRUE 1 FALSE 1504961317 75332
+## 1231 TRUE 1 FALSE 1504961330 75332
+## 1232 TRUE 1 FALSE 1504961339 75332
+## 1233 TRUE 1 FALSE 1504961345 75332
+## 1234 TRUE NA NA NA 75332
+## 1235 <NA> 1 FALSE 1504961347 75332
+## 1236 TRUE 1 FALSE 1504964728 75332
+## 1237 TRUE 1 FALSE 1504965515 75332
+## 1238 TRUE 1 FALSE 1504965535 75332
+## 1239 TRUE 1 FALSE 1504965546 75332
+## 1240 TRUE 1 FALSE 1504980565 75332
+## 1241 TRUE 1 FALSE 1504980574 75332
+## 1242 TRUE 1 FALSE 1504980592 75332
+## 1243 TRUE 1 FALSE 1504980599 75332
+## 1244 TRUE 1 FALSE 1504980608 75332
+## 1245 TRUE 1 FALSE 1504980642 75332
+## 1246 TRUE 1 FALSE 1504980684 75332
+## 1247 TRUE 1 FALSE 1504980700 75332
+## 1248 TRUE 1 FALSE 1504980752 75332
+## 1249 TRUE 1 FALSE 1504980843 75332
+## 1250 TRUE 1 FALSE 1504980871 75332
+## 1251 TRUE 1 FALSE 1504980924 75332
+## 1252 TRUE 1 FALSE 1504888131 75332
+## 1253 TRUE 1 FALSE 1504888142 75332
+## 1254 TRUE 1 FALSE 1504888164 75332
+## 1255 TRUE 1 FALSE 1504888175 75332
+## 1256 TRUE 1 FALSE 1504981065 75332
+## 1257 <NA> NA NA NA 75332
+## 1258 TRUE 1 FALSE 1504981591 75332
+## 1259 TRUE 1 FALSE 1504981597 75332
+## 1260 TRUE 1 FALSE 1504981607 75332
+## 1261 TRUE 1 FALSE 1504981637 75332
+## 1262 TRUE 1 FALSE 1504981666 75332
+## 1263 TRUE 1 FALSE 1504981673 75332
+## 1264 TRUE 1 FALSE 1504988503 75332
+## 1265 TRUE 1 FALSE 1504988507 75332
+## 1266 TRUE 1 FALSE 1504988513 75332
+## 1267 TRUE 1 FALSE 1504988524 75332
+## 1268 TRUE 1 FALSE 1504988569 75332
+## 1269 TRUE 1 FALSE 1504880016 75332
+## 1270 TRUE 1 FALSE 1504880028 75332
+## 1271 TRUE 1 FALSE 1504880039 75332
+## 1272 TRUE 1 FALSE 1504880067 75332
+## 1273 TRUE 1 FALSE 1504880080 75332
+## 1274 TRUE 1 FALSE 1504912448 75332
+## 1275 TRUE 1 FALSE 1504912520 75332
+## 1276 TRUE 1 FALSE 1504912528 75332
+## 1277 TRUE 1 FALSE 1504964756 75332
+## 1278 TRUE 1 FALSE 1504964826 75332
+## 1279 TRUE 1 FALSE 1504964835 75332
+## 1280 TRUE 1 FALSE 1504964861 75332
+## 1281 FALSE 1 FALSE 1504912346 75332
+## 1282 TRUE 2 FALSE 1504912376 75332
+## 1283 TRUE 1 FALSE 1504912398 75332
+## 1284 FALSE 1 FALSE 1504912403 75332
+## 1285 TRUE 2 FALSE 1504912415 75332
+## 1286 TRUE 1 FALSE 1504912421 75332
+## 1287 TRUE 1 FALSE 1504879734 75332
+## 1288 TRUE 1 FALSE 1504879752 75332
+## 1289 TRUE 1 FALSE 1504879761 75332
+## 1290 TRUE 1 FALSE 1504912547 75332
+## 1291 <NA> NA NA NA 75332
+## 1292 TRUE 1 FALSE 1504912594 75332
+## 1293 TRUE 1 FALSE 1504980933 75332
+## 1294 TRUE 1 FALSE 1504980991 75332
+## 1295 TRUE 1 FALSE 1504981038 75332
+## 1296 TRUE 1 FALSE 1504912702 75332
+## 1297 TRUE 1 FALSE 1504912724 75332
+## 1298 TRUE 1 FALSE 1504916790 75332
+## 1299 TRUE 1 FALSE 1504879686 75332
+## 1300 TRUE 1 FALSE 1504965055 75332
+## 1301 TRUE 1 FALSE 1504965082 75332
+## 1302 TRUE 1 FALSE 1504965098 75332
+## 1303 TRUE 1 FALSE 1504879765 75332
+## 1304 TRUE 1 FALSE 1504879903 75332
+## 1305 TRUE 1 FALSE 1504879919 75332
+## 1306 TRUE 1 FALSE 1504879923 75332
+## 1307 TRUE 1 FALSE 1504879951 75332
+## 1308 TRUE 1 FALSE 1504879969 75332
+## 1309 TRUE 1 FALSE 1504964908 75332
+## 1310 TRUE 1 FALSE 1504964917 75332
+## 1311 TRUE 1 FALSE 1504964932 75332
+## 1312 TRUE 1 FALSE 1504964983 75332
+## 1313 TRUE 2 FALSE 1504965189 75332
+## 1314 TRUE 1 FALSE 1504965206 75332
+## 1315 FALSE 1 FALSE 1504965166 75332
+## 1316 TRUE 1 FALSE 1504964864 75332
+## 1317 TRUE 1 FALSE 1504912693 75332
+## 1318 TRUE 1 FALSE 1504912599 75332
+## 1319 TRUE 1 FALSE 1504912640 75332
+## 1320 TRUE 1 FALSE 1505857844 80970
+## 1321 TRUE 2 FALSE 1506301522 80970
+## 1322 TRUE 2 FALSE 1505857425 80970
+## 1323 TRUE 2 FALSE 1506248219 80970
+## 1324 TRUE 1 FALSE 1506246734 80970
+## 1325 TRUE 1 FALSE 1506301487 80970
+## 1326 TRUE 1 FALSE 1505859709 80970
+## 1327 FALSE 1 FALSE 1506301512 80970
+## 1328 TRUE 1 FALSE 1506301455 80970
+## 1329 TRUE 1 FALSE 1506246670 80970
+## 1330 FALSE 2 FALSE 1506247071 80970
+## 1331 <NA> 1 NA 1505859713 80970
+## 1332 FALSE 1 FALSE 1506246902 80970
+## 1333 FALSE 1 FALSE 1506248224 80970
+## 1334 TRUE 1 FALSE 1506248456 80970
+## 1335 TRUE 2 FALSE 1506248236 80970
+## 1336 TRUE 1 FALSE 1506246743 80970
+## 1337 TRUE 1 FALSE 1506301400 80970
+## 1338 TRUE 1 FALSE 1506301347 80970
+## 1339 FALSE 1 FALSE 1505856909 80970
+## 1340 TRUE 2 FALSE 1505856912 80970
+## 1341 FALSE 1 FALSE 1506248196 80970
+## 1342 TRUE 1 FALSE 1505856989 80970
+## 1343 TRUE 3 FALSE 1505893274 80970
+## 1344 FALSE 1 FALSE 1505859222 80970
+## 1345 TRUE 1 FALSE 1505856923 80970
+## 1346 TRUE 3 FALSE 1505893376 80970
+## 1347 FALSE 1 FALSE 1506248293 80970
+## 1348 TRUE 2 FALSE 1506248305 80970
+## 1349 TRUE 1 FALSE 1506248279 80970
+## 1350 TRUE 1 FALSE 1506301333 80970
+## 1351 TRUE 1 FALSE 1506246639 80970
+## 1352 TRUE 1 FALSE 1506246645 80970
+## 1353 FALSE 1 FALSE 1505857389 80970
+## 1354 TRUE 1 FALSE 1505927021 80970
+## 1355 TRUE 1 FALSE 1505857455 80970
+## 1356 TRUE 1 FALSE 1505857751 80970
+## 1357 FALSE 1 FALSE 1505893319 80970
+## 1358 FALSE 2 FALSE 1505893370 80970
+## 1359 TRUE 1 FALSE 1505924508 80970
+## 1360 TRUE 2 FALSE 1505859280 80970
+## 1361 TRUE 1 FALSE 1505859357 80970
+## 1362 FALSE 1 FALSE 1505859384 80970
+## 1363 TRUE 2 FALSE 1505859539 80970
+## 1364 TRUE 1 FALSE 1505859605 80970
+## 1365 TRUE 1 FALSE 1505859705 80970
+## 1366 TRUE 1 FALSE 1505928336 80970
+## 1367 TRUE 1 FALSE 1505928352 80970
+## 1368 TRUE 1 FALSE 1505928372 80970
+## 1369 TRUE 1 FALSE 1505928418 80970
+## 1370 TRUE 1 FALSE 1505857816 80970
+## 1371 TRUE 1 FALSE 1505924470 80970
+## 1372 TRUE 1 FALSE 1505928875 80970
+## 1373 TRUE 1 FALSE 1505929059 80970
+## 1374 TRUE 1 FALSE 1505929220 80970
+## 1375 TRUE 1 FALSE 1505929240 80970
+## 1376 TRUE 1 FALSE 1505856843 80970
+## 1377 TRUE 1 FALSE 1505856867 80970
+## 1378 TRUE 1 FALSE 1505856905 80970
+## 1379 TRUE 1 FALSE 1505930472 80970
+## 1380 FALSE 1 FALSE 1505930868 80970
+## 1381 TRUE 2 FALSE 1505930972 80970
+## 1382 TRUE 1 FALSE 1505931081 80970
+## 1383 TRUE 1 FALSE 1505928467 80970
+## 1384 TRUE 1 FALSE 1505928744 80970
+## 1385 TRUE 1 FALSE 1506249648 80970
+## 1386 <NA> 1 FALSE 1506249652 80970
+## 1387 TRUE 1 FALSE 1506301071 80970
+## 1388 TRUE 1 FALSE 1506301278 80970
+## 1389 TRUE 1 FALSE 1506301306 80970
+## 1390 TRUE 1 FALSE 1506301318 80970
+## 1391 TRUE 1 FALSE 1505857304 80970
+## 1392 TRUE 1 FALSE 1505857381 80970
+## 1393 TRUE 1 FALSE 1505926188 80970
+## 1394 FALSE 1 FALSE 1505527179 80970
+## 1395 TRUE 2 FALSE 1505527288 80970
+## 1396 TRUE 1 FALSE 1505527586 80970
+## 1397 TRUE 1 FALSE 1505527603 80970
+## 1398 TRUE 1 FALSE 1505527606 80970
+## 1399 <NA> 1 FALSE 1505527623 80970
+## 1400 TRUE 3 FALSE 1506247113 80970
+## 1401 TRUE 1 FALSE 1506247395 80970
+## 1402 TRUE 1 FALSE 1506247406 80970
+## 1403 FALSE 1 FALSE 1506247565 80970
+## 1404 TRUE 2 FALSE 1506247574 80970
+## 1405 TRUE 1 FALSE 1506247737 80970
+## 1406 TRUE 1 FALSE 1506247745 80970
+## 1407 TRUE 1 FALSE 1506247808 80970
+## 1408 TRUE 1 FALSE 1506248007 80970
+## 1409 TRUE 1 FALSE 1506248019 80970
+## 1410 TRUE 1 FALSE 1506248114 80970
+## 1411 TRUE 2 FALSE 1506349930 80970
+## 1412 TRUE 1 FALSE 1506350001 80970
+## 1413 TRUE 1 FALSE 1506350014 80970
+## 1414 TRUE 1 FALSE 1506350076 80970
+## 1415 TRUE 1 FALSE 1506350105 80970
+## 1416 FALSE 1 FALSE 1506350120 80970
+## 1417 TRUE 2 FALSE 1506350139 80970
+## 1418 FALSE 1 FALSE 1506350301 80970
+## 1419 TRUE 1 FALSE 1506248794 80970
+## 1420 TRUE 1 FALSE 1506248870 80970
+## 1421 TRUE 1 FALSE 1506248922 80970
+## 1422 TRUE 1 FALSE 1506249111 80970
+## 1423 TRUE 1 FALSE 1505857018 80970
+## 1424 TRUE 1 FALSE 1505857085 80970
+## 1425 FALSE 1 FALSE 1505857125 80970
+## 1426 TRUE 2 FALSE 1505857137 80970
+## 1427 FALSE 1 FALSE 1505857146 80970
+## 1428 FALSE 2 FALSE 1505857157 80970
+## 1429 FALSE 3 FALSE 1505857159 80970
+## 1430 TRUE 4 FALSE 1505857187 80970
+## 1431 TRUE 2 FALSE 1506246621 80970
+## 1432 TRUE 2 FALSE 1505526547 80970
+## 1433 TRUE 1 FALSE 1505526700 80970
+## 1434 TRUE 1 FALSE 1505528647 80970
+## 1435 FALSE 1 FALSE 1505528665 80970
+## 1436 TRUE 2 FALSE 1505528695 80970
+## 1437 TRUE 1 FALSE 1505528709 80970
+## 1438 TRUE 1 FALSE 1505528741 80970
+## 1439 TRUE 1 FALSE 1505528754 80970
+## 1440 FALSE 1 FALSE 1505528934 80970
+## 1441 TRUE 1 FALSE 1505924554 80970
+## 1442 TRUE 1 FALSE 1505924563 80970
+## 1443 TRUE 1 FALSE 1505924601 80970
+## 1444 TRUE 1 FALSE 1505924610 80970
+## 1445 TRUE 1 FALSE 1505924614 80970
+## 1446 <NA> 1 FALSE 1505924616 80970
+## 1447 TRUE 1 FALSE 1505925110 80970
+## 1448 TRUE 1 FALSE 1505925124 80970
+## 1449 FALSE 1 FALSE 1505893227 80970
+## 1450 FALSE 2 FALSE 1505893254 80970
+## 1451 TRUE 1 FALSE 1505925189 80970
+## 1452 TRUE 1 FALSE 1505925207 80970
+## 1453 TRUE 1 FALSE 1505925355 80970
+## 1454 TRUE 1 FALSE 1505925363 80970
+## 1455 FALSE 1 FALSE 1505893390 80970
+## 1456 TRUE 2 FALSE 1505893395 80970
+## 1457 TRUE 1 FALSE 1505893407 80970
+## 1458 TRUE 1 FALSE 1505893432 80970
+## 1459 TRUE 1 FALSE 1505893498 80970
+## 1460 TRUE 1 FALSE 1505893507 80970
+## 1461 TRUE 1 FALSE 1505893539 80970
+## 1462 FALSE 1 FALSE 1505893597 80970
+## 1463 TRUE 1 FALSE 1506249231 80970
+## 1464 TRUE 1 FALSE 1506249322 80970
+## 1465 FALSE 1 FALSE 1506249564 80970
+## 1466 TRUE 2 FALSE 1506249619 80970
+## 1467 TRUE 1 FALSE 1506249641 80970
+## 1468 FALSE 1 FALSE 1505528529 80970
+## 1469 TRUE 2 FALSE 1505528557 80970
+## 1470 TRUE 1 FALSE 1505528568 80970
+## 1471 TRUE 1 FALSE 1505528579 80970
+## 1472 TRUE 1 FALSE 1505528590 80970
+## 1473 TRUE 1 FALSE 1505528620 80970
+## 1474 TRUE 1 FALSE 1505532681 80970
+## 1475 <NA> 1 FALSE 1505532684 80970
+## 1476 TRUE 1 FALSE 1505927027 80970
+## 1477 TRUE 1 FALSE 1505927033 80970
+## 1478 <NA> 1 FALSE 1505927034 80970
+## 1479 TRUE 1 FALSE 1505927150 80970
+## 1480 TRUE 1 FALSE 1505927196 80970
+## 1481 TRUE 1 FALSE 1505927349 80970
+## 1482 TRUE 1 FALSE 1505927548 80970
+## 1483 TRUE 1 FALSE 1505927597 80970
+## 1484 TRUE 1 FALSE 1505927687 80970
+## 1485 TRUE 1 FALSE 1505927711 80970
+## 1486 FALSE 1 FALSE 1505928093 80970
+## 1487 TRUE 2 FALSE 1505928326 80970
+## 1488 TRUE 1 FALSE 1505522821 80970
+## 1489 TRUE 1 FALSE 1505523646 80970
+## 1490 TRUE 1 FALSE 1505523913 80970
+## 1491 FALSE 1 FALSE 1505524283 80970
+## 1492 TRUE 2 FALSE 1505524414 80970
+## 1493 TRUE 1 FALSE 1505524487 80970
+## 1494 TRUE 1 FALSE 1505524531 80970
+## 1495 FALSE 1 FALSE 1505524722 80970
+## 1496 FALSE 2 FALSE 1505524814 80970
+## 1497 TRUE 1 FALSE 1505929252 80970
+## 1498 TRUE 1 FALSE 1505930105 80970
+## 1499 TRUE 1 FALSE 1505930423 80970
+## 1500 FALSE 6 FALSE 1505525224 80970
+## 1501 TRUE 7 FALSE 1505525252 80970
+## 1502 TRUE 1 FALSE 1505525278 80970
+## 1503 TRUE 1 FALSE 1505525467 80970
+## 1504 TRUE 1 FALSE 1505931417 80970
+## 1505 FALSE 1 FALSE 1505931512 80970
+## 1506 TRUE 2 FALSE 1505931531 80970
+## 1507 TRUE 1 FALSE 1505931543 80970
+## 1508 TRUE 1 FALSE 1505931544 80970
+## 1509 <NA> 1 FALSE 1505931546 80970
+## 1510 TRUE 1 FALSE 1506246572 80970
+## 1511 FALSE 1 FALSE 1506246598 80970
+## 1512 FALSE 1 FALSE 1505526519 80970
+## 1513 TRUE 1 FALSE 1505895800 80970
+## 1514 TRUE 1 FALSE 1505895831 80970
+## 1515 TRUE 1 FALSE 1505895850 80970
+## 1516 TRUE 1 FALSE 1505895893 80970
+## 1517 TRUE 1 FALSE 1505895901 80970
+## 1518 TRUE 1 FALSE 1505895978 80970
+## 1519 TRUE 1 FALSE 1505896020 80970
+## 1520 TRUE 1 FALSE 1505896052 80970
+## 1521 TRUE 1 FALSE 1505896136 80970
+## 1522 TRUE 1 FALSE 1505896181 80970
+## 1523 TRUE 1 FALSE 1505896193 80970
+## 1524 TRUE 1 FALSE 1506337543 80970
+## 1525 TRUE 1 FALSE 1506337602 80970
+## 1526 TRUE 1 FALSE 1506349254 80970
+## 1527 FALSE 1 FALSE 1506349377 80970
+## 1528 TRUE 2 FALSE 1506349423 80970
+## 1529 TRUE 1 FALSE 1506349570 80970
+## 1530 TRUE 1 FALSE 1506349617 80970
+## 1531 FALSE 1 FALSE 1506349890 80970
+## 1532 TRUE 1 FALSE 1505923243 80970
+## 1533 TRUE 1 FALSE 1505923251 80970
+## 1534 TRUE 1 FALSE 1505923256 80970
+## 1535 FALSE 1 FALSE 1505923266 80970
+## 1536 TRUE 2 FALSE 1505923270 80970
+## 1537 TRUE 1 FALSE 1505923445 80970
+## 1538 TRUE 1 FALSE 1505923469 80970
+## 1539 TRUE 1 FALSE 1505923493 80970
+## 1540 TRUE 2 FALSE 1506350317 80970
+## 1541 TRUE 1 FALSE 1506350350 80970
+## 1542 FALSE 1 FALSE 1506350359 80970
+## 1543 FALSE 2 FALSE 1506350366 80970
+## 1544 FALSE 3 FALSE 1506350374 80970
+## 1545 FALSE 4 FALSE 1506350385 80970
+## 1546 TRUE 5 FALSE 1506350391 80970
+## 1547 TRUE 1 FALSE 1506350398 80970
+## 1548 TRUE 1 FALSE 1506350402 80970
+## 1549 TRUE 1 FALSE 1506350415 80970
+## 1550 FALSE 1 FALSE 1506350425 80970
+## 1551 TRUE 2 FALSE 1506350430 80970
+## 1552 TRUE 1 FALSE 1506350439 80970
+## 1553 TRUE 1 FALSE 1506350441 80970
+## 1554 <NA> 1 NA 1506350443 80970
+## 1555 TRUE 1 FALSE 1505924199 80970
+## 1556 FALSE 1 FALSE 1505924267 80970
+## 1557 TRUE 2 FALSE 1505924288 80970
+## 1558 TRUE 1 FALSE 1505924318 80970
+## 1559 TRUE 1 FALSE 1505924324 80970
+## 1560 TRUE 1 FALSE 1505924416 80970
+## 1561 TRUE 1 FALSE 1505894274 80970
+## 1562 TRUE 1 FALSE 1505894284 80970
+## 1563 TRUE 2 FALSE 1505528952 80970
+## 1564 TRUE 1 FALSE 1505528963 80970
+## 1565 FALSE 1 FALSE 1505528988 80970
+## 1566 TRUE 2 FALSE 1505529038 80970
+## 1567 TRUE 1 FALSE 1505529049 80970
+## 1568 TRUE 1 FALSE 1505529078 80970
+## 1569 TRUE 1 FALSE 1505529090 80970
+## 1570 TRUE 1 FALSE 1505925139 80970
+## 1571 TRUE 1 FALSE 1505925152 80970
+## 1572 TRUE 2 FALSE 1505529203 80970
+## 1573 TRUE 1 FALSE 1505529230 80970
+## 1574 TRUE 1 FALSE 1505529293 80970
+## 1575 FALSE 1 FALSE 1505529364 80970
+## 1576 TRUE 2 FALSE 1505529376 80970
+## 1577 TRUE 1 FALSE 1505925389 80970
+## 1578 TRUE 1 FALSE 1505925451 80970
+## 1579 FALSE 1 FALSE 1505925485 80970
+## 1580 TRUE 2 FALSE 1505925494 80970
+## 1581 TRUE 1 FALSE 1505925503 80970
+## 1582 TRUE 1 FALSE 1505925529 80970
+## 1583 TRUE 1 FALSE 1505925594 80970
+## 1584 TRUE 1 FALSE 1505925631 80970
+## 1585 TRUE 2 FALSE 1505893623 80970
+## 1586 TRUE 1 FALSE 1505893634 80970
+## 1587 FALSE 1 FALSE 1505893670 80970
+## 1588 TRUE 2 FALSE 1505893691 80970
+## 1589 FALSE 1 FALSE 1505893800 80970
+## 1590 TRUE 2 FALSE 1505893816 80970
+## 1591 TRUE 1 FALSE 1505893830 80970
+## 1592 TRUE 1 FALSE 1505893859 80970
+## 1593 TRUE 1 FALSE 1505893934 80970
+## 1594 FALSE 1 FALSE 1505894015 80970
+## 1595 FALSE 2 FALSE 1505894031 80970
+## 1596 TRUE 3 FALSE 1505894069 80970
+## 1597 TRUE 1 FALSE 1505894138 80970
+## 1598 TRUE 1 FALSE 1505894185 80970
+## 1599 TRUE 1 FALSE 1505894189 80970
+## 1600 <NA> 1 NA 1505894193 80970
+## 1601 TRUE 1 FALSE 1505443060 80970
+## 1602 TRUE 1 FALSE 1505520968 80970
+## 1603 TRUE 1 FALSE 1505894333 80970
+## 1604 TRUE 1 FALSE 1505894350 80970
+## 1605 FALSE 1 FALSE 1505894392 80970
+## 1606 TRUE 2 FALSE 1505894416 80970
+## 1607 TRUE 1 FALSE 1505894479 80970
+## 1608 TRUE 1 FALSE 1505894489 80970
+## 1609 TRUE 1 FALSE 1505894526 80970
+## 1610 FALSE 1 FALSE 1505894617 80970
+## 1611 FALSE 2 FALSE 1505894644 80970
+## 1612 TRUE 3 FALSE 1505894655 80970
+## 1613 TRUE 1 FALSE 1505894884 80970
+## 1614 TRUE 1 FALSE 1505894938 80970
+## 1615 TRUE 1 FALSE 1505894956 80970
+## 1616 TRUE 1 FALSE 1505894963 80970
+## 1617 TRUE 1 FALSE 1505894965 80970
+## 1618 FALSE 3 FALSE 1505524879 80970
+## 1619 FALSE 4 FALSE 1505524919 80970
+## 1620 FALSE 5 FALSE 1505525112 80970
+## 1621 TRUE 1 FALSE 1505895455 80970
+## 1622 TRUE 1 FALSE 1505895462 80970
+## 1623 FALSE 1 FALSE 1505895471 80970
+## 1624 TRUE 2 FALSE 1505895486 80970
+## 1625 TRUE 1 FALSE 1505525535 80970
+## 1626 TRUE 1 FALSE 1505525739 80970
+## 1627 TRUE 1 FALSE 1505525826 80970
+## 1628 TRUE 1 FALSE 1505525831 80970
+## 1629 FALSE 1 FALSE 1505526326 80970
+## 1630 FALSE 2 FALSE 1505526346 80970
+## 1631 TRUE 3 FALSE 1505526373 80970
+## 1632 TRUE 1 FALSE 1505526412 80970
+## 1633 TRUE 1 FALSE 1505895782 80970
+## 1634 TRUE 2 FALSE 1505924106 80970
+## 1635 TRUE 1 FALSE 1505924117 80970
+## 1636 TRUE 1 FALSE 1505926179 80970
+## 1637 TRUE 1 FALSE 1505442611 80970
+## 1638 TRUE 1 FALSE 1505442740 80970
+## 1639 TRUE 1 FALSE 1505442789 80970
+## 1640 TRUE 1 FALSE 1505442892 80970
+## 1641 FALSE 1 FALSE 1505529195 80970
+## 1642 FALSE 1 FALSE 1505923922 80970
+## 1643 FALSE 1 FALSE 1505521084 80970
+## 1644 TRUE 2 FALSE 1505521097 80970
+## 1645 TRUE 1 FALSE 1505896212 80970
+## 1646 TRUE 1 FALSE 1505896220 80970
+## 1647 TRUE 1 FALSE 1505896223 80970
+## 1648 <NA> 1 FALSE 1505896225 80970
+## 1649 TRUE 1 FALSE 1505923192 80970
+## 1650 TRUE 1 FALSE 1505923206 80970
+## 1651 TRUE 1 FALSE 1505923214 80970
+## 1652 TRUE 1 FALSE 1505923232 80970
+## 1653 TRUE 1 FALSE 1505529164 80970
+## 1654 TRUE 1 FALSE 1505923858 80970
+## 1655 TRUE 1 FALSE 1505925825 80970
+## 1656 FALSE 2 FALSE 1505924004 80970
+## 1657 TRUE 3 FALSE 1505924010 80970
+## 1658 TRUE 1 FALSE 1505529526 80970
+## 1659 FALSE 1 FALSE 1505529591 80970
+## 1660 TRUE 2 FALSE 1505529636 80970
+## 1661 TRUE 1 FALSE 1505923617 80970
+## 1662 TRUE 1 FALSE 1505923643 80970
+## 1663 TRUE 1 FALSE 1505923706 80970
+## 1664 TRUE 1 FALSE 1505923756 80970
+## 1665 TRUE 1 FALSE 1505923773 80970
+## 1666 TRUE 1 FALSE 1505923794 80970
+## 1667 TRUE 1 FALSE 1505925789 80970
+## 1668 TRUE 1 FALSE 1505895490 80970
+## 1669 FALSE 1 FALSE 1505925863 80970
+## 1670 TRUE 2 FALSE 1505925871 80970
+## 1671 TRUE 1 FALSE 1505924040 80970
+## 1672 TRUE 1 FALSE 1505924066 80970
+## 1673 FALSE 1 FALSE 1505924097 80970
+## 1674 TRUE 1 FALSE 1505926056 80970
+## 1675 TRUE 1 FALSE 1505926104 80970
+## 1676 TRUE 1 FALSE 1505532665 80970
+## 1677 TRUE 1 FALSE 1505532676 80970
+## 1678 <NA> 1 FALSE 1506301847 80970
+## 1679 TRUE 1 FALSE 1505529124 80970
+## 1680 TRUE 1 FALSE 1505925884 80970
+## 1681 TRUE 1 FALSE 1505521101 80970
+## 1682 TRUE 1 FALSE 1505895506 80970
+## 1683 TRUE 1 FALSE 1505895515 80970
+## 1684 TRUE 1 FALSE 1506301811 80970
+## 1685 TRUE 1 FALSE 1506301842 80970
+## 1686 TRUE 1 FALSE 1506301539 80970
+## 1687 TRUE 1 FALSE 1506301736 80970
+## 1688 TRUE 1 FALSE 1505530125 80970
+## 1689 TRUE 1 FALSE 1505895528 80970
+## 1690 TRUE 1 FALSE 1506301845 80970
+## 1691 TRUE 1 FALSE 1505530108 80970
+## 1692 TRUE 1 FALSE 1505530881 80970
+## 1693 TRUE 1 FALSE 1505529805 80970
+## 1694 TRUE 1 FALSE 1505925965 80970
+## 1695 <NA> 1 FALSE 1505894967 80970
+## 1696 TRUE 1 FALSE 1505895408 80970
+## 1697 TRUE 2 FALSE 1505926047 80970
+## 1698 TRUE 1 FALSE 1505529823 80970
+## 1699 TRUE 1 FALSE 1505529988 80970
+## 1700 TRUE 2 FALSE 1505522792 80970
+## 1701 FALSE 2 FALSE 1505895637 80970
+## 1702 TRUE 1 FALSE 1505530893 80970
+## 1703 FALSE 1 FALSE 1505895598 80970
+## 1704 FALSE 1 FALSE 1505926023 80970
+## 1705 TRUE 1 FALSE 1505895426 80970
+## 1706 TRUE 2 FALSE 1505532556 80970
+## 1707 TRUE 1 FALSE 1505532653 80970
+## 1708 FALSE 1 FALSE 1505522611 80970
+## 1709 TRUE 1 FALSE 1505532392 80970
+## 1710 FALSE 1 FALSE 1505521168 80970
+## 1711 TRUE 2 FALSE 1505521184 80970
+## 1712 TRUE 1 FALSE 1505532304 80970
+## 1713 TRUE 1 FALSE 1505532369 80970
+## 1714 TRUE 3 FALSE 1505895664 80970
+## 1715 TRUE 1 FALSE 1505521588 80970
+## 1716 FALSE 1 FALSE 1505532509 80970
+## 1717 TRUE 1 FALSE 1505895726 80970
+## 1718 TRUE 1 FALSE 1505532376 80970
+## 1719 TRUE 1 FALSE 1505178706 96746
+## 1720 FALSE 3 FALSE 1505180591 96746
+## 1721 TRUE 1 FALSE 1505177973 96746
+## 1722 FALSE 1 FALSE 1505179262 96746
+## 1723 TRUE 1 FALSE 1505179127 96746
+## 1724 TRUE 1 FALSE 1505178423 96746
+## 1725 TRUE 1 FALSE 1505179229 96746
+## 1726 TRUE 1 FALSE 1505179355 96746
+## 1727 TRUE 1 FALSE 1505179206 96746
+## 1728 FALSE 1 FALSE 1505180434 96746
+## 1729 TRUE 1 FALSE 1505178700 96746
+## 1730 TRUE 1 FALSE 1505178668 96746
+## 1731 TRUE 1 FALSE 1505180267 96746
+## 1732 TRUE 1 FALSE 1505179116 96746
+## 1733 TRUE 1 FALSE 1505180392 96746
+## 1734 FALSE 2 FALSE 1505180441 96746
+## 1735 TRUE 1 FALSE 1505178526 96746
+## 1736 TRUE 1 FALSE 1505177970 96746
+## 1737 TRUE 2 FALSE 1505179038 96746
+## 1738 TRUE 1 FALSE 1505177899 96746
+## 1739 TRUE 1 FALSE 1505178290 96746
+## 1740 <NA> 1 NA 1505178716 96746
+## 1741 TRUE 1 FALSE 1505178054 96746
+## 1742 TRUE 1 FALSE 1505178696 96746
+## 1743 FALSE 1 FALSE 1505180129 96746
+## 1744 TRUE 1 FALSE 1505179325 96746
+## 1745 FALSE 1 FALSE 1505180190 96746
+## 1746 TRUE 1 FALSE 1505178349 96746
+## 1747 TRUE 1 FALSE 1505177961 96746
+## 1748 TRUE 1 FALSE 1505179372 96746
+## 1749 TRUE 1 FALSE 1505179151 96746
+## 1750 FALSE 1 FALSE 1505179430 96746
+## 1751 FALSE 2 FALSE 1505179482 96746
+## 1752 TRUE 2 FALSE 1505179286 96746
+## 1753 TRUE 1 FALSE 1505178024 96746
+## 1754 TRUE 1 FALSE 1505178039 96746
+## 1755 TRUE 1 FALSE 1505180641 96746
+## 1756 TRUE 2 FALSE 1505180212 96746
+## 1757 TRUE 2 FALSE 1505180156 96746
+## 1758 TRUE 1 FALSE 1505180657 96746
+## 1759 TRUE 1 FALSE 1505180346 96746
+## 1760 TRUE 1 FALSE 1505178341 96746
+## 1761 TRUE 1 FALSE 1505177946 96746
+## 1762 TRUE 1 FALSE 1505178246 96746
+## 1763 FALSE 1 FALSE 1505178993 96746
+## 1764 TRUE 1 FALSE 1505180637 96746
+## 1765 TRUE 1 FALSE 1505179947 96746
+## 1766 TRUE 1 FALSE 1505179312 96746
+## 1767 TRUE 4 FALSE 1505180617 96746
+## 1768 TRUE 1 FALSE 1505178127 96746
+## 1769 TRUE 1 FALSE 1505178153 96746
+## 1770 TRUE 1 FALSE 1505178207 96746
+## 1771 TRUE 1 FALSE 1505180660 96746
+## 1772 <NA> 1 FALSE 1505180663 96746
+## 1773 TRUE 1 FALSE 1505178255 96746
+## 1774 FALSE 5 FALSE 1505179845 96746
+## 1775 FALSE 4 FALSE 1505179672 96746
+## 1776 TRUE 6 FALSE 1505179907 96746
+## 1777 FALSE 3 FALSE 1505179551 96746
+## 1778 TRUE 1 FALSE 1505785763 74372
+## 1779 TRUE 1 FALSE 1505180304 74372
+## 1780 TRUE 1 FALSE 1505785797 74372
+## 1781 FALSE 1 FALSE 1505179752 74372
+## 1782 TRUE 2 FALSE 1505179792 74372
+## 1783 TRUE 1 FALSE 1505179708 74372
+## 1784 TRUE 1 FALSE 1505180202 74372
+## 1785 TRUE 1 FALSE 1505180258 74372
+## 1786 FALSE 1 FALSE 1505785616 74372
+## 1787 TRUE 1 FALSE 1505527863 74372
+## 1788 TRUE 1 FALSE 1505179605 74372
+## 1789 TRUE 1 FALSE 1505785757 74372
+## 1790 TRUE 1 FALSE 1505180308 74372
+## 1791 TRUE 1 FALSE 1505179672 74372
+## 1792 FALSE 1 FALSE 1505528457 74372
+## 1793 TRUE 1 FALSE 1505529005 74372
+## 1794 TRUE 2 FALSE 1505785630 74372
+## 1795 TRUE 1 FALSE 1505179701 74372
+## 1796 <NA> 1 NA 1505529016 74372
+## 1797 TRUE 1 FALSE 1505527826 74372
+## 1798 TRUE 1 FALSE 1505527910 74372
+## 1799 TRUE 1 FALSE 1505180293 74372
+## 1800 TRUE 1 FALSE 1505526835 74372
+## 1801 <NA> 1 NA 1505180313 74372
+## 1802 TRUE 1 FALSE 1505179690 74372
+## 1803 TRUE 1 FALSE 1505180162 74372
+## 1804 TRUE 1 FALSE 1505180083 74372
+## 1805 TRUE 1 FALSE 1505785557 74372
+## 1806 TRUE 2 FALSE 1505528928 74372
+## 1807 TRUE 1 FALSE 1505529011 74372
+## 1808 TRUE 1 FALSE 1505179885 74372
+## 1809 TRUE 1 FALSE 1505527680 74372
+## 1810 FALSE 1 FALSE 1505785851 74372
+## 1811 FALSE 2 FALSE 1505785882 74372
+## 1812 TRUE 1 FALSE 1505526814 74372
+## 1813 TRUE 1 FALSE 1505526824 74372
+## 1814 TRUE 1 FALSE 1505528011 74372
+## 1815 FALSE 1 FALSE 1505528368 74372
+## 1816 TRUE 1 FALSE 1505528406 74372
+## 1817 TRUE 1 FALSE 1505526868 74372
+## 1818 TRUE 1 FALSE 1505786077 74372
+## 1819 TRUE 1 FALSE 1505527074 74372
+## 1820 TRUE 1 FALSE 1505528959 74372
+## 1821 TRUE 1 FALSE 1505179827 74372
+## 1822 TRUE 1 FALSE 1505179813 74372
+## 1823 FALSE 1 FALSE 1505527733 74372
+## 1824 TRUE 2 FALSE 1505527763 74372
+## 1825 TRUE 1 FALSE 1505784956 74372
+## 1826 TRUE 1 FALSE 1505527961 74372
+## 1827 TRUE 1 FALSE 1505786012 74372
+## 1828 TRUE 1 FALSE 1505526841 74372
+## 1829 TRUE 1 FALSE 1505526848 74372
+## 1830 TRUE 2 FALSE 1505528389 74372
+## 1831 TRUE 2 FALSE 1505786483 74372
+## 1832 TRUE 2 FALSE 1505785547 74372
+## 1833 TRUE 2 FALSE 1505785055 74372
+## 1834 TRUE 1 FALSE 1505785108 74372
+## 1835 TRUE 1 FALSE 1505527620 74372
+## 1836 FALSE 1 FALSE 1505785268 74372
+## 1837 TRUE 1 FALSE 1505527646 74372
+## 1838 TRUE 1 FALSE 1505179901 74372
+## 1839 TRUE 1 FALSE 1505179959 74372
+## 1840 TRUE 1 FALSE 1505786458 74372
+## 1841 FALSE 1 FALSE 1505784993 74372
+## 1842 FALSE 1 FALSE 1505785037 74372
+## 1843 TRUE 1 FALSE 1505786052 74372
+## 1844 TRUE 1 FALSE 1505180073 74372
+## 1845 TRUE 1 FALSE 1505786277 74372
+## 1846 TRUE 1 FALSE 1505786079 74372
+## 1847 TRUE 1 FALSE 1505785058 74372
+## 1848 <NA> 1 FALSE 1505786496 74372
+## 1849 TRUE 4 FALSE 1505785919 74372
+## 1850 TRUE 1 FALSE 1505785257 74372
+## 1851 TRUE 1 FALSE 1505786332 74372
+## 1852 FALSE 3 FALSE 1505785907 74372
+## 1853 TRUE 2 FALSE 1505527368 74372
+## 1854 TRUE 1 FALSE 1505786422 74372
+## 1855 FALSE 1 FALSE 1505786474 74372
+## 1856 TRUE 2 FALSE 1505785026 74372
+## 1857 TRUE 1 FALSE 1505786359 74372
+## 1858 TRUE 1 FALSE 1505786172 74372
+## 1859 TRUE 1 FALSE 1505786183 74372
+## 1860 FALSE 1 FALSE 1505527337 74372
+## 1861 TRUE 1 FALSE 1505180052 74372
+## 1862 TRUE 1 FALSE 1505786412 74372
+## 1863 TRUE 1 FALSE 1505179976 74372
+## 1864 TRUE 1 FALSE 1505786323 74372
+## 1865 TRUE 1 FALSE 1505786490 74372
+## 1866 TRUE 1 FALSE 1505786493 74372
+## 1867 <NA> 1 NA 1505786082 74372
+## 1868 TRUE 1 FALSE 1505179985 74372
+## 1869 TRUE 1 FALSE 1505785421 74372
+## 1870 FALSE 2 FALSE 1505785330 74372
+## 1871 TRUE 3 FALSE 1505785339 74372
+## 1872 TRUE 1 FALSE 1505786222 74372
+## 1873 FALSE 1 FALSE 1505785496 74372
+## 1874 TRUE 1 FALSE 1505786238 74372
+## 1875 <NA> NA NA NA 45253
+## 1876 TRUE 1 FALSE 1505185226 16365
+## 1877 FALSE 1 FALSE 1505100795 16365
+## 1878 TRUE 1 FALSE 1505227545 16365
+## 1879 TRUE 1 FALSE 1505266751 16365
+## 1880 FALSE 1 FALSE 1505227632 16365
+## 1881 TRUE 1 FALSE 1505227533 16365
+## 1882 TRUE 1 FALSE 1505184469 16365
+## 1883 TRUE 1 FALSE 1505185286 16365
+## 1884 <NA> NA NA NA 16365
+## 1885 TRUE 2 FALSE 1505227803 16365
+## 1886 TRUE 1 FALSE 1505099938 16365
+## 1887 TRUE 2 FALSE 1505101103 16365
+## 1888 <NA> NA NA NA 16365
+## 1889 TRUE 1 FALSE 1505100012 16365
+## 1890 TRUE 1 FALSE 1505101308 16365
+## 1891 TRUE 2 FALSE 1505099925 16365
+## 1892 TRUE 1 FALSE 1505149695 16365
+## 1893 TRUE 1 FALSE 1505101139 16365
+## 1894 TRUE 1 FALSE 1505100874 16365
+## 1895 TRUE 2 FALSE 1505100838 16365
+## 1896 TRUE 1 FALSE 1505100848 16365
+## 1897 TRUE 1 FALSE 1505100860 16365
+## 1898 TRUE 1 FALSE 1505099982 16365
+## 1899 TRUE 2 FALSE 1505150061 16365
+## 1900 FALSE 1 FALSE 1505101074 16365
+## 1901 TRUE 1 FALSE 1505100003 16365
+## 1902 TRUE 1 FALSE 1505192035 16365
+## 1903 TRUE 1 FALSE 1505101118 16365
+## 1904 TRUE 1 FALSE 1505185294 16365
+## 1905 TRUE 1 FALSE 1505184430 16365
+## 1906 TRUE 1 FALSE 1505227984 16365
+## 1907 TRUE 1 FALSE 1505186595 16365
+## 1908 TRUE 1 FALSE 1505100893 16365
+## 1909 TRUE 1 FALSE 1505185324 16365
+## 1910 <NA> NA NA NA 16365
+## 1911 FALSE 1 FALSE 1505099911 16365
+## 1912 TRUE 1 FALSE 1505101052 16365
+## 1913 TRUE 1 FALSE 1505149681 16365
+## 1914 TRUE 1 FALSE 1505192029 16365
+## 1915 TRUE 1 FALSE 1505186993 16365
+## 1916 TRUE 1 FALSE 1505186661 16365
+## 1917 FALSE 1 FALSE 1505192075 16365
+## 1918 TRUE 2 FALSE 1505192085 16365
+## 1919 TRUE 1 FALSE 1505099789 16365
+## 1920 TRUE 1 FALSE 1505185336 16365
+## 1921 TRUE 1 FALSE 1505186613 16365
+## 1922 TRUE 1 FALSE 1505186618 16365
+## 1923 TRUE 1 FALSE 1505402325 16365
+## 1924 TRUE 1 FALSE 1505150077 16365
+## 1925 TRUE 1 FALSE 1505402202 16365
+## 1926 TRUE 1 FALSE 1505184421 16365
+## 1927 TRUE 1 FALSE 1505186943 16365
+## 1928 TRUE 1 FALSE 1505266484 16365
+## 1929 TRUE 1 FALSE 1505192321 16365
+## 1930 TRUE 1 FALSE 1505192043 16365
+## 1931 TRUE 2 FALSE 1505149827 16365
+## 1932 TRUE 1 FALSE 1505152247 16365
+## 1933 TRUE 1 FALSE 1505099777 16365
+## 1934 <NA> NA NA NA 16365
+## 1935 TRUE 1 FALSE 1505228051 16365
+## 1936 TRUE 1 FALSE 1505228178 16365
+## 1937 TRUE 1 FALSE 1505402180 16365
+## 1938 TRUE 1 FALSE 1505101023 16365
+## 1939 TRUE 1 FALSE 1505186647 16365
+## 1940 FALSE 1 FALSE 1505150045 16365
+## 1941 TRUE 1 FALSE 1505186653 16365
+## 1942 TRUE 1 FALSE 1505152074 16365
+## 1943 TRUE 1 FALSE 1505149768 16365
+## 1944 TRUE 1 FALSE 1505192055 16365
+## 1945 TRUE 1 FALSE 1505099720 16365
+## 1946 TRUE 1 FALSE 1505192091 16365
+## 1947 FALSE 1 FALSE 1505152379 16365
+## 1948 TRUE 1 FALSE 1505101333 16365
+## 1949 TRUE 1 FALSE 1505152026 16365
+## 1950 TRUE 1 FALSE 1505100912 16365
+## 1951 TRUE 1 FALSE 1505099863 16365
+## 1952 TRUE 1 FALSE 1505099865 16365
+## 1953 TRUE 1 FALSE 1505186636 16365
+## 1954 TRUE 2 FALSE 1505192301 16365
+## 1955 TRUE 1 FALSE 1505183391 16365
+## 1956 TRUE 1 FALSE 1505152125 16365
+## 1957 TRUE 1 FALSE 1505152229 16365
+## 1958 TRUE 1 FALSE 1505152237 16365
+## 1959 TRUE 1 FALSE 1505099769 16365
+## 1960 TRUE 1 FALSE 1505401876 16365
+## 1961 TRUE 1 FALSE 1505099787 16365
+## 1962 <NA> NA NA NA 16365
+## 1963 FALSE 1 FALSE 1505152051 16365
+## 1964 TRUE 2 FALSE 1505152063 16365
+## 1965 TRUE 1 FALSE 1505186628 16365
+## 1966 TRUE 1 FALSE 1505149657 16365
+## 1967 TRUE 1 FALSE 1505266348 16365
+## 1968 FALSE 1 FALSE 1505152069 16365
+## 1969 TRUE 1 FALSE 1505183435 16365
+## 1970 TRUE 1 FALSE 1505192328 16365
+## 1971 TRUE 1 FALSE 150 16365
+## 1972 TRUE 1 FALSE 1505228621 16365
+## 1973 TRUE 1 FALSE 1505152335 16365
+## 1974 TRUE 1 FALSE 1505152340 16365
+## 1975 TRUE 1 FALSE 1505401923 16365
+## 1976 FALSE 1 FALSE 1505099827 16365
+## 1977 TRUE 2 FALSE 1505099842 16365
+## 1978 TRUE 1 FALSE 1505401999 16365
+## 1979 TRUE 1 FALSE 1505402008 16365
+## 1980 TRUE 1 FALSE 1505228193 16365
+## 1981 TRUE 1 FALSE 1505149652 16365
+## 1982 FALSE 1 FALSE 1505228463 16365
+## 1983 FALSE 2 FALSE 1505228563 16365
+## 1984 TRUE 3 FALSE 1505228602 16365
+## 1985 FALSE 1 FALSE 1505149813 16365
+## 1986 TRUE 1 FALSE 1505401845 16365
+## 1987 TRUE 1 FALSE 1505184189 16365
+## 1988 FALSE 2 FALSE 1505152386 16365
+## 1989 TRUE 3 FALSE 1505152393 16365
+## 1990 FALSE 1 FALSE 1505153389 16365
+## 1991 TRUE 2 FALSE 1505153409 16365
+## 1992 TRUE 1 FALSE 1505153414 16365
+## 1993 TRUE NA NA NA 16365
+## 1994 TRUE 1 FALSE 1505150035 16365
+## 1995 TRUE 1 FALSE 1505186896 16365
+## 1996 TRUE 1 FALSE 1505186919 16365
+## 1997 FALSE 1 FALSE 1505192283 16365
+## 1998 TRUE 1 FALSE 1505228610 16365
+## 1999 TRUE 2 FALSE 1505401778 16365
+## 2000 TRUE 1 FALSE 1505401785 16365
+## 2001 TRUE 1 FALSE 1505401910 16365
+## 2002 FALSE 1 FALSE 1505184228 16365
+## 2003 TRUE 1 FALSE 1505401958 16365
+## 2004 TRUE 1 FALSE 1505401966 16365
+## 2005 TRUE 1 FALSE 1505184300 16365
+## 2006 TRUE 1 FALSE 1505184415 16365
+## 2007 TRUE 1 FALSE 1505186784 16365
+## 2008 TRUE 1 FALSE 1505186806 16365
+## 2009 TRUE 2 FALSE 1505152071 16365
+## 2010 TRUE 1 FALSE 1505192280 16365
+## 2011 <NA> NA NA NA 16365
+## 2012 FALSE 1 FALSE 1505401771 16365
+## 2013 TRUE 1 FALSE 1505183441 16365
+## 2014 TRUE 1 FALSE 1505228746 16365
+## 2015 TRUE 2 FALSE 1505186707 16365
+## 2016 TRUE 1 FALSE 1505186725 16365
+## 2017 TRUE 1 FALSE 1505192228 16365
+## 2018 TRUE 1 FALSE 1505149576 16365
+## 2019 TRUE 1 FALSE 1505149612 16365
+## 2020 TRUE 1 FALSE 1505184297 16365
+## 2021 TRUE 1 FALSE 1505266330 16365
+## 2022 TRUE 1 FALSE 1505192248 16365
+## 2023 TRUE 1 FALSE 1505265881 16365
+## 2024 TRUE 1 FALSE 1505265924 16365
+## 2025 FALSE 1 FALSE 1505183357 16365
+## 2026 TRUE 1 FALSE 1505183439 16365
+## 2027 TRUE 1 FALSE 1505401821 16365
+## 2028 TRUE 1 FALSE 1505266193 16365
+## 2029 FALSE 1 FALSE 1505186691 16365
+## 2030 FALSE 1 FALSE 1505149919 16365
+## 2031 TRUE 2 FALSE 1505149932 16365
+## 2032 TRUE 1 FALSE 1505149984 16365
+## 2033 TRUE 1 FALSE 1505229293 16365
+## 2034 TRUE 1 FALSE 1505192231 16365
+## 2035 TRUE 1 FALSE 1505192235 16365
+## 2036 TRUE 1 FALSE 1505265704 16365
+## 2037 TRUE 1 FALSE 1505265895 16365
+## 2038 TRUE 1 FALSE 1505183225 16365
+## 2039 TRUE 1 FALSE 1505183101 16365
+## 2040 <NA> 1 NA 1505183442 16365
+## 2041 TRUE 1 FALSE 1505184163 16365
+## 2042 TRUE 2 FALSE 1505266188 16365
+## 2043 TRUE 1 FALSE 1505228788 16365
+## 2044 TRUE 1 FALSE 1505186745 16365
+## 2045 TRUE 1 FALSE 1505186770 16365
+## 2046 TRUE 1 FALSE 1505266213 16365
+## 2047 TRUE 1 FALSE 1505266222 16365
+## 2048 TRUE 1 FALSE 1505266231 16365
+## 2049 FALSE 1 FALSE 1505183034 16365
+## 2050 TRUE 1 FALSE 1505265720 16365
+## 2051 FALSE 1 FALSE 1505266173 16365
+## 2052 TRUE 1 FALSE 1505228774 16365
+## 2053 TRUE 1 FALSE 1505265976 16365
+## 2054 TRUE 1 FALSE 1505265988 16365
+## 2055 TRUE 1 FALSE 1505182991 16365
+## 2056 TRUE 1 FALSE 1505183000 16365
+## 2057 TRUE 2 FALSE 1505184264 16365
+## 2058 TRUE 1 FALSE 1505184273 16365
+## 2059 TRUE 2 FALSE 1505183067 16365
+## 2060 TRUE 1 FALSE 1505183377 16365
+## 2061 TRUE 1 FALSE 1505183097 16365
+## 2062 TRUE 2 FALSE 1505183367 16365
+## 2063 TRUE 1 FALSE 1505229086 16365
+## 2064 TRUE 1 FALSE 1505266201 16365
+## 2065 TRUE 1 FALSE 1505182975 16365
+## 2066 TRUE 1 FALSE 1505182968 16365
+## 2067 TRUE 1 FALSE 1505361827 68515
+## 2068 <NA> 1 FALSE 1505361748 68515
+## 2069 TRUE 1 FALSE 1505397135 68515
+## 2070 FALSE 6 FALSE 1505409582 68515
+## 2071 TRUE 2 FALSE 1505397133 68515
+## 2072 FALSE 2 FALSE 1505409363 68515
+## 2073 FALSE 3 FALSE 1505409417 68515
+## 2074 FALSE 1 FALSE 1505397122 68515
+## 2075 TRUE 1 FALSE 1505397992 68515
+## 2076 FALSE 2 FALSE 1505410347 68515
+## 2077 FALSE 5 FALSE 1505409564 68515
+## 2078 TRUE 1 FALSE 1505397090 68515
+## 2079 TRUE 1 FALSE 1505397202 68515
+## 2080 TRUE 1 FALSE 1505397970 68515
+## 2081 FALSE 1 FALSE 1505409234 68515
+## 2082 TRUE 1 FALSE 1505361746 68515
+## 2083 TRUE 1 FALSE 1505397042 68515
+## 2084 TRUE 1 FALSE 1505397140 68515
+## 2085 FALSE 3 FALSE 1505398409 68515
+## 2086 FALSE 1 FALSE 1505396066 68515
+## 2087 TRUE 1 FALSE 1505397158 68515
+## 2088 TRUE 1 FALSE 1505397168 68515
+## 2089 TRUE 1 FALSE 1505397192 68515
+## 2090 TRUE 1 FALSE 1505409684 68515
+## 2091 TRUE 1 FALSE 1505361743 68515
+## 2092 TRUE 1 FALSE 1505361715 68515
+## 2093 FALSE 2 FALSE 1505399430 68515
+## 2094 TRUE 1 FALSE 1505399853 68515
+## 2095 TRUE 1 FALSE 1505397956 68515
+## 2096 FALSE 4 FALSE 1505409535 68515
+## 2097 TRUE 1 FALSE 1505398082 68515
+## 2098 TRUE 2 FALSE 1505333439 68515
+## 2099 FALSE 1 FALSE 1505333481 68515
+## 2100 TRUE 16 FALSE 1505398990 68515
+## 2101 TRUE 1 FALSE 1505396215 68515
+## 2102 FALSE 4 FALSE 1505398423 68515
+## 2103 TRUE 1 FALSE 1505361325 68515
+## 2104 FALSE 3 FALSE 1505410373 68515
+## 2105 TRUE 1 FALSE 1505397204 68515
+## 2106 TRUE 1 FALSE 1505397031 68515
+## 2107 TRUE 4 FALSE 1505410388 68515
+## 2108 TRUE 1 FALSE 1505410420 68515
+## 2109 TRUE 1 FALSE 1505398071 68515
+## 2110 FALSE 2 FALSE 1505399639 68515
+## 2111 FALSE 4 FALSE 1505399749 68515
+## 2112 FALSE 5 FALSE 1505399757 68515
+## 2113 TRUE 1 FALSE 1505361542 68515
+## 2114 TRUE 1 FALSE 1505411163 68515
+## 2115 TRUE 1 FALSE 1505334738 68515
+## 2116 FALSE 5 FALSE 1505398445 68515
+## 2117 FALSE 6 FALSE 1505398534 68515
+## 2118 TRUE 1 FALSE 1505399034 68515
+## 2119 <NA> 1 FALSE 1505397205 68515
+## 2120 TRUE 1 FALSE 1505399264 68515
+## 2121 FALSE 3 FALSE 1505399445 68515
+## 2122 TRUE 1 FALSE 1505333284 68515
+## 2123 TRUE 1 FALSE 1505333300 68515
+## 2124 TRUE 1 FALSE 1505333349 68515
+## 2125 FALSE 1 FALSE 1505398285 68515
+## 2126 FALSE 2 FALSE 1505398345 68515
+## 2127 TRUE 1 FALSE 1505396963 68515
+## 2128 FALSE 1 FALSE 1505361555 68515
+## 2129 TRUE 1 FALSE 1505361295 68515
+## 2130 TRUE 1 FALSE 1505399008 68515
+## 2131 FALSE 1 FALSE 1505361689 68515
+## 2132 TRUE 2 FALSE 1505361699 68515
+## 2133 TRUE 1 FALSE 1505399829 68515
+## 2134 TRUE 1 FALSE 1505397800 68515
+## 2135 TRUE 1 FALSE 1505333270 68515
+## 2136 FALSE 1 FALSE 1505399596 68515
+## 2137 TRUE 1 FALSE 1505396920 68515
+## 2138 FALSE 1 FALSE 1505396945 68515
+## 2139 TRUE 2 FALSE 1505361539 68515
+## 2140 FALSE 1 FALSE 1505333426 68515
+## 2141 TRUE 1 FALSE 1505396179 68515
+## 2142 FALSE 7 FALSE 1505409621 68515
+## 2143 FALSE 8 FALSE 1505409648 68515
+## 2144 TRUE 9 FALSE 1505409662 68515
+## 2145 FALSE 7 FALSE 1505398596 68515
+## 2146 FALSE 8 FALSE 1505398621 68515
+## 2147 FALSE 9 FALSE 1505398657 68515
+## 2148 FALSE 10 FALSE 1505398695 68515
+## 2149 TRUE 1 FALSE 1505396050 68515
+## 2150 TRUE 2 FALSE 1505395128 68515
+## 2151 TRUE 1 FALSE 1505395154 68515
+## 2152 TRUE 1 FALSE 1505333383 68515
+## 2153 TRUE 1 FALSE 1505411160 68515
+## 2154 FALSE 15 FALSE 1505398919 68515
+## 2155 TRUE 1 FALSE 1505396679 68515
+## 2156 TRUE 1 FALSE 1505398995 68515
+## 2157 <NA> 1 FALSE 1505411164 68515
+## 2158 TRUE 1 FALSE 1505399021 68515
+## 2159 TRUE 1 FALSE 1505399070 68515
+## 2160 TRUE 1 FALSE 1505396836 68515
+## 2161 FALSE 1 FALSE 1505399377 68515
+## 2162 TRUE 4 FALSE 1505399520 68515
+## 2163 TRUE 1 FALSE 1505399537 68515
+## 2164 TRUE 1 FALSE 1505361449 68515
+## 2165 TRUE 1 FALSE 1505361479 68515
+## 2166 TRUE 2 FALSE 1505396959 68515
+## 2167 TRUE 1 FALSE 1505361502 68515
+## 2168 TRUE 1 FALSE 1505396966 68515
+## 2169 TRUE 2 FALSE 1505361580 68515
+## 2170 TRUE 1 FALSE 1505361623 68515
+## 2171 TRUE 1 FALSE 1505396993 68515
+## 2172 TRUE 1 FALSE 1505397018 68515
+## 2173 TRUE 1 FALSE 1505397450 68515
+## 2174 TRUE 1 FALSE 1505333262 68515
+## 2175 TRUE 1 FALSE 1505396023 68515
+## 2176 FALSE 1 FALSE 1505395122 68515
+## 2177 TRUE 2 FALSE 1505190334 68515
+## 2178 TRUE 1 FALSE 1505190353 68515
+## 2179 TRUE 2 FALSE 1505396120 68515
+## 2180 TRUE 1 FALSE 1505396155 68515
+## 2181 TRUE 1 FALSE 1505190426 68515
+## 2182 TRUE 1 FALSE 1505190551 68515
+## 2183 FALSE 1 FALSE 1505396261 68515
+## 2184 FALSE 2 FALSE 1505396271 68515
+## 2185 TRUE 1 FALSE 1505361869 68515
+## 2186 FALSE 1 FALSE 1505410252 68515
+## 2187 TRUE 1 FALSE 1505333588 68515
+## 2188 TRUE 1 FALSE 1505333771 68515
+## 2189 FALSE 11 FALSE 1505398809 68515
+## 2190 FALSE 12 FALSE 1505398840 68515
+## 2191 FALSE 13 FALSE 1505398876 68515
+## 2192 TRUE 1 FALSE 1505411155 68515
+## 2193 FALSE 14 FALSE 1505398878 68515
+## 2194 TRUE 1 FALSE 1505334136 68515
+## 2195 FALSE 1 FALSE 1505334484 68515
+## 2196 TRUE 2 FALSE 1505334501 68515
+## 2197 TRUE 1 FALSE 1505362005 68515
+## 2198 TRUE 1 FALSE 1505396690 68515
+## 2199 TRUE 1 FALSE 1505396828 68515
+## 2200 TRUE 1 FALSE 1505190091 68515
+## 2201 TRUE 1 FALSE 1505361327 68515
+## 2202 TRUE 1 FALSE 1505361389 68515
+## 2203 TRUE 1 FALSE 1505361420 68515
+## 2204 TRUE 1 FALSE 1505396895 68515
+## 2205 TRUE 1 FALSE 1505396898 68515
+## 2206 TRUE 1 FALSE 1505361483 68515
+## 2207 TRUE 1 FALSE 1505190224 68515
+## 2208 FALSE 3 FALSE 1505399666 68515
+## 2209 TRUE 1 FALSE 1505396972 68515
+## 2210 TRUE 1 FALSE 1505396982 68515
+## 2211 TRUE 6 FALSE 1505399811 68515
+## 2212 TRUE 1 FALSE 1505399823 68515
+## 2213 TRUE 1 FALSE 1505190274 68515
+## 2214 TRUE 1 FALSE 1505395968 68515
+## 2215 TRUE 1 FALSE 1505395845 68515
+## 2216 TRUE 1 FALSE 1505395902 68515
+## 2217 TRUE 2 FALSE 1505395081 68515
+## 2218 FALSE 1 FALSE 1505395100 68515
+## 2219 TRUE 1 FALSE 1505190372 68515
+## 2220 TRUE 1 FALSE 1505190376 68515
+## 2221 FALSE 1 FALSE 1505396622 68515
+## 2222 TRUE 1 FALSE 1505395162 68515
+## 2223 TRUE 1 FALSE 1505190596 68515
+## 2224 TRUE 2 FALSE 1505333498 68515
+## 2225 FALSE 3 FALSE 1505396288 68515
+## 2226 FALSE 4 FALSE 1505396296 68515
+## 2227 TRUE 5 FALSE 1505396331 68515
+## 2228 TRUE 1 FALSE 1505396342 68515
+## 2229 FALSE 1 FALSE 1505333836 68515
+## 2230 FALSE 1 FALSE 1505410858 68515
+## 2231 FALSE 2 FALSE 1505411074 68515
+## 2232 TRUE 3 FALSE 1505411130 68515
+## 2233 TRUE 2 FALSE 1505334130 68515
+## 2234 TRUE 1 FALSE 1505394724 68515
+## 2235 TRUE 2 FALSE 1505396638 68515
+## 2236 TRUE 1 FALSE 1505396648 68515
+## 2237 TRUE 1 FALSE 1505395434 68515
+## 2238 <NA> 1 FALSE 1505362007 68515
+## 2239 TRUE 1 FALSE 1505396693 68515
+## 2240 <NA> 1 FALSE 1505396694 68515
+## 2241 TRUE 1 FALSE 1505190146 68515
+## 2242 TRUE 1 FALSE 1505361343 68515
+## 2243 TRUE 1 FALSE 1505396881 68515
+## 2244 TRUE 1 FALSE 1505190164 68515
+## 2245 TRUE 1 FALSE 1505190166 68515
+## 2246 TRUE 1 FALSE 1505396902 68515
+## 2247 TRUE 2 FALSE 1505396414 68515
+## 2248 FALSE 1 FALSE 1505190206 68515
+## 2249 TRUE 1 FALSE 1505333230 68515
+## 2250 TRUE 1 FALSE 1505333245 68515
+## 2251 TRUE 1 FALSE 1505190234 68515
+## 2252 TRUE 1 FALSE 1505190265 68515
+## 2253 TRUE 1 FALSE 1505395741 68515
+## 2254 TRUE 1 FALSE 1505190295 68515
+## 2255 TRUE 1 FALSE 1505190316 68515
+## 2256 FALSE 1 FALSE 1505190329 68515
+## 2257 TRUE 1 FALSE 1505396356 68515
+## 2258 TRUE 1 FALSE 1505396381 68515
+## 2259 TRUE 2 FALSE 1505395115 68515
+## 2260 TRUE 5 FALSE 1505394716 68515
+## 2261 TRUE 1 FALSE 1505361988 68515
+## 2262 TRUE 1 FALSE 1505361998 68515
+## 2263 TRUE 1 FALSE 1505395181 68515
+## 2264 TRUE 1 FALSE 1505190615 68515
+## 2265 FALSE 1 FALSE 1505333523 68515
+## 2266 TRUE 2 FALSE 1505333532 68515
+## 2267 FALSE 1 FALSE 1505333544 68515
+## 2268 TRUE 2 FALSE 1505333549 68515
+## 2269 TRUE 1 FALSE 1505396346 68515
+## 2270 TRUE 1 FALSE 1505396876 68515
+## 2271 FALSE 3 FALSE 1505394692 68515
+## 2272 FALSE 1 FALSE 1505396409 68515
+## 2273 TRUE 1 FALSE 1505333862 68515
+## 2274 TRUE 3 FALSE 1505395578 68515
+## 2275 FALSE 1 FALSE 1505395629 68515
+## 2276 TRUE 1 FALSE 1505362003 68515
+## 2277 TRUE 1 FALSE 1505395409 68515
+## 2278 TRUE 1 FALSE 1505395447 68515
+## 2279 TRUE 1 FALSE 1505334555 68515
+## 2280 TRUE 1 FALSE 1505334590 68515
+## 2281 TRUE 1 FALSE 1505396816 68515
+## 2282 TRUE 1 FALSE 1505396851 68515
+## 2283 TRUE 1 FALSE 1505395836 68515
+## 2284 TRUE 1 FALSE 1505361928 68515
+## 2285 FALSE 4 FALSE 1505394701 68515
+## 2286 FALSE 1 FALSE 1505395549 68515
+## 2287 FALSE 1 FALSE 1505334123 68515
+## 2288 TRUE 1 FALSE 1505361969 68515
+## 2289 FALSE 1 FALSE 1505361525 68515
+## 2290 FALSE 1 FALSE 1505394905 68515
+## 2291 FALSE 1 FALSE 1505395674 68515
+## 2292 TRUE 2 FALSE 1505394923 68515
+## 2293 TRUE 1 FALSE 1505394931 68515
+## 2294 TRUE 1 FALSE 1505395762 68515
+## 2295 TRUE 1 FALSE 1505395787 68515
+## 2296 TRUE 1 FALSE 1505333569 68515
+## 2297 TRUE 1 FALSE 1505190156 68515
+## 2298 TRUE 2 FALSE 1505333844 68515
+## 2299 TRUE 1 FALSE 1505395281 68515
+## 2300 FALSE 2 FALSE 1505395564 68515
+## 2301 TRUE 1 FALSE 1505361941 68515
+## 2302 TRUE 1 FALSE 1505361975 68515
+## 2303 <NA> 1 FALSE 1505395348 68515
+## 2304 TRUE 1 FALSE 1505395186 68515
+## 2305 TRUE 1 FALSE 1505395201 68515
+## 2306 TRUE 1 FALSE 1505361831 68515
+## 2307 TRUE 1 FALSE 1505361858 68515
+## 2308 <NA> 1 NA 1505190633 68515
+## 2309 <NA> 1 FALSE 1505334596 68515
+## 2310 FALSE 1 FALSE 1505395020 68515
+## 2311 TRUE 1 FALSE 1505395486 68515
+## 2312 TRUE 1 FALSE 1505395466 68515
+## 2313 TRUE 1 FALSE 1505395309 68515
+## 2314 TRUE 1 FALSE 1505395427 68515
+## 2315 TRUE 1 FALSE 1505395344 68515
+## 2316 TRUE 2 FALSE 1505190216 68515
+## 2317 TRUE 1 FALSE 1505394839 68515
+## 2318 TRUE 1 FALSE 1505394953 68515
+## 2319 FALSE 2 FALSE 1505395682 68515
+## 2320 TRUE 1 FALSE 1505394513 68515
+## 2321 TRUE 1 FALSE 1505334593 68515
+## 2322 TRUE 1 FALSE 1505395476 68515
+## 2323 TRUE 1 FALSE 1505361884 68515
+## 2324 TRUE 1 FALSE 1505361923 68515
+## 2325 TRUE 1 FALSE 1505395257 68515
+## 2326 TRUE 1 FALSE 1505394837 68515
+## 2327 TRUE 2 FALSE 1505395651 68515
+## 2328 TRUE 1 FALSE 1505395320 68515
+## 2329 TRUE 1 FALSE 1505395347 68515
+## 2330 TRUE 1 FALSE 1505394938 68515
+## 2331 FALSE 1 FALSE 1505395220 68515
+## 2332 FALSE 1 FALSE 1505394640 68515
+## 2333 TRUE 3 FALSE 1505395703 68515
+## 2334 TRUE 1 FALSE 1505395334 68515
+## 2335 TRUE 1 FALSE 1505190627 68515
+## 2336 TRUE 1 FALSE 1505394532 68515
+## 2337 FALSE 2 FALSE 1505394683 68515
+## 2338 TRUE 1 FALSE 1505190622 68515
+## 2339 TRUE 1 FALSE 1505395455 68515
+## 2340 TRUE 2 FALSE 1505395240 68515
+## 2341 FALSE 1 FALSE 1505829333 67994
+## 2342 FALSE 2 FALSE 1505829352 67994
+## 2343 TRUE 1 FALSE 1505829495 67994
+## 2344 TRUE 2 FALSE 1505829957 67994
+## 2345 FALSE 3 FALSE 1505829483 67994
+## 2346 FALSE 1 FALSE 1505829946 67994
+## 2347 <NA> 1 NA 1505830003 67994
+## 2348 TRUE 1 FALSE 1505829987 67994
+## 2349 TRUE 4 FALSE 1505829488 67994
+## 2350 TRUE 1 FALSE 1505830002 67994
+## 2351 TRUE 1 FALSE 1505829887 67994
+## 2352 TRUE 1 FALSE 1505829549 67994
+## 2353 TRUE 1 FALSE 1505829997 67994
+## 2354 TRUE 1 FALSE 1505829936 67994
+## 2355 TRUE 1 FALSE 1505829592 67994
+## 2356 TRUE 1 FALSE 1505829607 67994
+## 2357 TRUE 1 FALSE 1505829556 67994
+## 2358 TRUE 1 FALSE 1505829583 67994
+## 2359 TRUE 1 FALSE 1505829519 67994
+## 2360 TRUE 1 FALSE 1505829531 67994
+## 2361 TRUE 1 FALSE 1505829615 67994
+## 2362 TRUE 1 FALSE 1505829507 67994
+## 2363 TRUE 1 FALSE 1505829909 67994
+## 2364 TRUE 2 FALSE 1505829884 67994
+## 2365 TRUE 1 FALSE 1505829813 67994
+## 2366 TRUE 1 FALSE 1505829830 67994
+## 2367 TRUE 1 FALSE 1505829707 67994
+## 2368 TRUE 1 FALSE 1505829736 67994
+## 2369 FALSE 1 FALSE 1505829873 67994
+## 2370 <NA> NA NA NA 20682
+## 2371 TRUE 1 FALSE 1505703680 32870
+## 2372 TRUE 1 FALSE 1505704156 32870
+## 2373 TRUE 1 FALSE 1505703656 32870
+## 2374 TRUE 2 FALSE 1505704123 32870
+## 2375 TRUE 1 FALSE 1505703556 32870
+## 2376 TRUE 1 FALSE 1505703799 32870
+## 2377 TRUE 1 FALSE 1505703851 32870
+## 2378 FALSE 1 FALSE 1505704109 32870
+## 2379 TRUE 1 FALSE 1505704033 32870
+## 2380 TRUE 1 FALSE 1505703953 32870
+## 2381 TRUE 1 FALSE 1505703693 32870
+## 2382 TRUE 1 FALSE 1505704001 32870
+## 2383 TRUE 1 FALSE 1505703893 32870
+## 2384 TRUE 1 FALSE 1505703700 32870
+## 2385 TRUE 1 FALSE 1505703863 32870
+## 2386 FALSE 1 FALSE 1505235740 27487
+## 2387 TRUE 1 FALSE 1505235701 27487
+## 2388 TRUE 1 FALSE 1506016652 27487
+## 2389 FALSE 1 FALSE 1506015732 27487
+## 2390 TRUE 1 FALSE 1506015720 27487
+## 2391 <NA> 1 FALSE 1506126182 27487
+## 2392 TRUE 1 FALSE 1505235567 27487
+## 2393 FALSE 1 FALSE 1506024973 27487
+## 2394 TRUE 1 FALSE 1505235544 27487
+## 2395 FALSE 1 FALSE 1505235663 27487
+## 2396 TRUE 2 FALSE 1505235677 27487
+## 2397 TRUE 1 FALSE 1506022383 27487
+## 2398 FALSE 1 FALSE 1506021098 27487
+## 2399 TRUE 1 FALSE 1506015588 27487
+## 2400 TRUE 1 FALSE 1506022119 27487
+## 2401 TRUE 1 FALSE 1505235705 27487
+## 2402 TRUE 1 FALSE 1505235542 27487
+## 2403 TRUE 1 FALSE 1506123063 27487
+## 2404 TRUE 2 FALSE 1506015744 27487
+## 2405 TRUE 1 FALSE 1505235605 27487
+## 2406 TRUE 1 FALSE 1506020850 27487
+## 2407 TRUE 1 FALSE 1505235635 27487
+## 2408 TRUE 1 FALSE 1506020711 27487
+## 2409 TRUE 1 FALSE 1506020727 27487
+## 2410 TRUE 2 FALSE 1506021185 27487
+## 2411 TRUE 1 FALSE 1506022030 27487
+## 2412 FALSE 1 FALSE 1505237286 27487
+## 2413 TRUE 1 FALSE 1506126179 27487
+## 2414 TRUE 1 FALSE 1506022291 27487
+## 2415 TRUE 1 FALSE 1506122953 27487
+## 2416 TRUE 1 FALSE 1506016466 27487
+## 2417 TRUE 1 FALSE 1506016470 27487
+## 2418 FALSE 1 FALSE 1506124021 27487
+## 2419 TRUE 1 FALSE 1506015061 27487
+## 2420 TRUE 1 FALSE 1505235607 27487
+## 2421 TRUE 1 FALSE 1505235626 27487
+## 2422 TRUE 2 FALSE 1506015114 27487
+## 2423 TRUE 1 FALSE 1506122599 27487
+## 2424 TRUE 1 FALSE 1506015506 27487
+## 2425 TRUE 1 FALSE 1506126012 27487
+## 2426 TRUE 1 FALSE 1506122604 27487
+## 2427 TRUE 1 FALSE 1506015717 27487
+## 2428 TRUE 1 FALSE 1506014710 27487
+## 2429 FALSE 1 FALSE 1506014723 27487
+## 2430 TRUE 2 FALSE 1506014737 27487
+## 2431 TRUE 1 FALSE 1506014739 27487
+## 2432 TRUE 1 FALSE 1506014790 27487
+## 2433 TRUE 1 FALSE 1506033300 27487
+## 2434 <NA> 1 FALSE 1506033302 27487
+## 2435 TRUE 1 FALSE 1506025947 27487
+## 2436 TRUE 1 FALSE 1506015242 27487
+## 2437 TRUE 1 FALSE 1506015503 27487
+## 2438 TRUE 1 FALSE 1506017798 27487
+## 2439 TRUE 1 FALSE 1506126120 27487
+## 2440 TRUE 1 FALSE 1506126173 27487
+## 2441 TRUE 1 FALSE 1506122772 27487
+## 2442 TRUE 1 FALSE 1506018763 27487
+## 2443 TRUE 1 FALSE 1506018852 27487
+## 2444 TRUE 1 FALSE 1506123067 27487
+## 2445 TRUE 1 FALSE 1506022951 27487
+## 2446 TRUE 1 FALSE 1506023417 27487
+## 2447 TRUE 1 FALSE 1506015981 27487
+## 2448 FALSE 1 FALSE 1506015082 27487
+## 2449 TRUE 1 FALSE 1506020685 27487
+## 2450 TRUE 1 FALSE 1506017643 27487
+## 2451 TRUE 1 FALSE 1506016283 27487
+## 2452 TRUE 1 FALSE 1506017808 27487
+## 2453 TRUE 2 FALSE 1505237339 27487
+## 2454 TRUE 1 FALSE 1506024660 27487
+## 2455 TRUE 1 FALSE 1506016356 27487
+## 2456 TRUE 1 FALSE 1506123921 27487
+## 2457 TRUE 1 FALSE 1506024898 27487
+## 2458 <NA> 1 NA 1505235903 27487
+## 2459 TRUE 2 FALSE 1506024985 27487
+## 2460 TRUE 1 FALSE 1506025626 27487
+## 2461 FALSE 1 FALSE 1506025651 27487
+## 2462 TRUE 2 FALSE 1506025668 27487
+## 2463 <NA> 1 NA 1506016158 27487
+## 2464 TRUE 1 FALSE 1506125939 27487
+## 2465 TRUE 1 FALSE 1506026231 27487
+## 2466 TRUE 1 FALSE 1506026233 27487
+## 2467 TRUE 1 FALSE 1506026256 27487
+## 2468 TRUE 1 FALSE 1506014693 27487
+## 2469 TRUE 1 FALSE 1506033098 27487
+## 2470 TRUE 1 FALSE 1506033163 27487
+## 2471 TRUE 1 FALSE 1506033291 27487
+## 2472 TRUE 1 FALSE 1506033298 27487
+## 2473 TRUE 1 FALSE 1506020246 27487
+## 2474 TRUE 1 FALSE 1506020309 27487
+## 2475 TRUE 1 FALSE 1506020393 27487
+## 2476 TRUE 1 FALSE 1506020516 27487
+## 2477 TRUE 1 FALSE 1505236809 27487
+## 2478 TRUE 1 FALSE 1505236934 27487
+## 2479 TRUE 1 FALSE 1505236937 27487
+## 2480 TRUE 1 FALSE 1506018241 27487
+## 2481 TRUE 1 FALSE 1506018606 27487
+## 2482 TRUE 1 FALSE 1506016334 27487
+## 2483 TRUE 1 FALSE 1505235896 27487
+## 2484 TRUE 1 FALSE 1506018872 27487
+## 2485 TRUE 1 FALSE 1506018999 27487
+## 2486 TRUE 1 FALSE 1506015837 27487
+## 2487 TRUE 1 FALSE 1506023467 27487
+## 2488 TRUE 1 FALSE 1506023704 27487
+## 2489 FALSE 1 FALSE 1506024232 27487
+## 2490 FALSE 2 FALSE 1506024273 27487
+## 2491 FALSE 3 FALSE 1506024297 27487
+## 2492 FALSE 4 FALSE 1506024302 27487
+## 2493 TRUE 5 FALSE 1506024318 27487
+## 2494 TRUE 1 FALSE 1506016325 27487
+## 2495 TRUE 1 FALSE 1506032839 27487
+## 2496 TRUE 1 FALSE 1506032922 27487
+## 2497 TRUE 1 FALSE 1505235900 27487
+## 2498 <NA> 1 FALSE 1506019631 27487
+## 2499 FALSE 1 FALSE 1505236126 27487
+## 2500 FALSE 1 FALSE 1506016990 27487
+## 2501 FALSE 2 FALSE 1506017005 27487
+## 2502 TRUE 3 FALSE 1506017015 27487
+## 2503 TRUE 3 FALSE 1506125573 27487
+## 2504 TRUE 1 FALSE 1506026221 27487
+## 2505 TRUE 1 FALSE 1506017061 27487
+## 2506 TRUE 1 FALSE 1506017067 27487
+## 2507 TRUE 1 FALSE 1506017070 27487
+## 2508 TRUE 1 FALSE 1505237078 27487
+## 2509 TRUE 1 FALSE 1506123707 27487
+## 2510 TRUE 1 FALSE 1505235508 27487
+## 2511 TRUE 1 FALSE 1505235526 27487
+## 2512 TRUE 1 FALSE 1505235537 27487
+## 2513 FALSE 1 FALSE 1506017489 27487
+## 2514 TRUE 2 FALSE 1506017506 27487
+## 2515 TRUE 1 FALSE 1506017514 27487
+## 2516 TRUE 1 FALSE 1506017627 27487
+## 2517 TRUE 1 FALSE 1506016155 27487
+## 2518 TRUE 1 FALSE 1505235825 27487
+## 2519 FALSE 1 FALSE 1505235845 27487
+## 2520 TRUE 1 FALSE 1505237007 27487
+## 2521 TRUE 1 FALSE 1506123649 27487
+## 2522 TRUE 1 FALSE 1506125832 27487
+## 2523 TRUE 1 FALSE 1506123774 27487
+## 2524 TRUE 1 FALSE 1505237343 27487
+## 2525 TRUE 1 FALSE 1505237363 27487
+## 2526 TRUE 1 FALSE 1506123142 27487
+## 2527 TRUE 1 FALSE 1506015933 27487
+## 2528 TRUE 1 FALSE 1505235779 27487
+## 2529 TRUE 1 FALSE 1506016153 27487
+## 2530 TRUE 1 FALSE 1506017022 27487
+## 2531 TRUE 1 FALSE 1506017053 27487
+## 2532 FALSE 1 FALSE 1506125771 27487
+## 2533 TRUE 1 FALSE 1506016307 27487
+## 2534 TRUE 1 FALSE 1506125794 27487
+## 2535 TRUE 2 FALSE 1506019503 27487
+## 2536 TRUE 1 FALSE 1505236404 27487
+## 2537 TRUE 1 FALSE 1505235888 27487
+## 2538 TRUE 1 FALSE 1506019628 27487
+## 2539 TRUE 1 FALSE 1505236558 27487
+## 2540 TRUE 2 FALSE 1506124030 27487
+## 2541 TRUE 1 FALSE 1506124051 27487
+## 2542 FALSE 1 FALSE 1506124575 27487
+## 2543 TRUE 2 FALSE 1505236777 27487
+## 2544 TRUE 1 FALSE 1506123581 27487
+## 2545 FALSE 1 FALSE 1506123583 27487
+## 2546 TRUE 2 FALSE 1506125792 27487
+## 2547 TRUE 1 FALSE 1506123631 27487
+## 2548 TRUE 1 FALSE 1505236319 27487
+## 2549 TRUE 1 FALSE 1506019530 27487
+## 2550 TRUE 1 FALSE 1506017382 27487
+## 2551 TRUE 1 FALSE 1506017283 27487
+## 2552 TRUE 1 FALSE 1505236449 27487
+## 2553 TRUE 1 FALSE 1506019148 27487
+## 2554 TRUE 1 FALSE 1505236648 27487
+## 2555 FALSE 1 FALSE 1505236727 27487
+## 2556 TRUE 1 FALSE 1506123283 27487
+## 2557 FALSE 2 FALSE 1506124599 27487
+## 2558 TRUE 1 FALSE 1505236221 27487
+## 2559 TRUE 2 FALSE 1506123602 27487
+## 2560 TRUE 1 FALSE 1505236306 27487
+## 2561 TRUE 1 FALSE 1506019477 27487
+## 2562 TRUE 1 FALSE 1505236391 27487
+## 2563 TRUE 2 FALSE 1505235874 27487
+## 2564 TRUE 1 FALSE 1506019625 27487
+## 2565 TRUE 1 FALSE 1505236164 27487
+## 2566 TRUE 1 FALSE 1505236482 27487
+## 2567 TRUE 1 FALSE 1506123144 27487
+## 2568 TRUE 1 FALSE 1506123168 27487
+## 2569 TRUE 1 FALSE 1506019467 27487
+## 2570 TRUE 1 FALSE 1505235775 27487
+## 2571 TRUE 1 FALSE 1506019394 27487
+## 2572 TRUE 1 FALSE 1505236249 27487
+## 2573 <NA> 1 FALSE 1506017073 27487
+## 2574 TRUE 2 FALSE 1505235752 27487
+## 2575 FALSE 1 FALSE 1506019498 27487
+## 2576 TRUE 1 FALSE 1505237366 27487
+## 2577 TRUE 2 FALSE 1505236158 27487
+## 2578 TRUE 1 FALSE 1506019442 27487
+## 2579 TRUE 1 FALSE 1506019379 27487
+## 2580 TRUE 1 FALSE 1505236174 27487
+## 2581 TRUE 1 FALSE 1505235803 27487
+## 2582 TRUE 1 FALSE 1506019587 27487
+## 2583 TRUE 1 FALSE 1506019383 27487
+## 2584 <NA> 1 FALSE 1505237368 27487
+## 2585 <NA> NA NA NA 86730
+## 2586 TRUE 1 FALSE 1504919889 21536
+## 2587 TRUE 1 FALSE 1504919477 21536
+## 2588 TRUE 1 FALSE 1504920200 21536
+## 2589 TRUE 1 FALSE 1504920292 21536
+## 2590 TRUE 1 FALSE 1504920140 21536
+## 2591 TRUE 1 FALSE 1504920151 21536
+## 2592 FALSE 1 FALSE 1504919603 21536
+## 2593 TRUE 2 FALSE 1504919637 21536
+## 2594 FALSE 1 FALSE 1505837723 21536
+## 2595 <NA> NA NA NA 21536
+## 2596 TRUE 1 FALSE 1504919881 21536
+## 2597 TRUE 1 FALSE 1504919809 21536
+## 2598 FALSE 2 FALSE 1504888343 21536
+## 2599 TRUE 3 FALSE 1504888369 21536
+## 2600 TRUE 1 FALSE 1504888437 21536
+## 2601 TRUE 1 FALSE 1504999311 21536
+## 2602 TRUE 1 FALSE 1504999374 21536
+## 2603 TRUE 1 FALSE NA 21536
+## 2604 TRUE 1 FALSE 1504973409 21536
+## 2605 TRUE 1 FALSE 1505395970 21536
+## 2606 FALSE 1 FALSE 1505396002 21536
+## 2607 FALSE 1 FALSE 1505247013 21536
+## 2608 TRUE 1 FALSE 1504919736 21536
+## 2609 TRUE 1 FALSE 1504919757 21536
+## 2610 FALSE 1 FALSE 1504888309 21536
+## 2611 TRUE 4 FALSE 1505247059 21536
+## 2612 TRUE 2 FALSE 1505247085 21536
+## 2613 TRUE 1 FALSE 1505247103 21536
+## 2614 TRUE 1 FALSE 1505247115 21536
+## 2615 TRUE 1 FALSE 1505247141 21536
+## 2616 TRUE 1 FALSE 1505247154 21536
+## 2617 FALSE 1 FALSE 1505247168 21536
+## 2618 TRUE 1 FALSE 1504973443 21536
+## 2619 TRUE 1 FALSE 1504973458 21536
+## 2620 <NA> NA NA NA 21536
+## 2621 TRUE 2 FALSE 1504888138 21536
+## 2622 TRUE 1 FALSE 1504888263 21536
+## 2623 FALSE 3 FALSE 1505247047 21536
+## 2624 TRUE 1 FALSE 1505857113 21536
+## 2625 TRUE 1 FALSE 1505857141 21536
+## 2626 TRUE 1 FALSE 1505857190 21536
+## 2627 TRUE 1 FALSE 1505857192 21536
+## 2628 TRUE 1 FALSE 1504888468 21536
+## 2629 FALSE 1 FALSE 1504888489 21536
+## 2630 TRUE 2 FALSE 1504888506 21536
+## 2631 TRUE 1 FALSE 1505856573 21536
+## 2632 TRUE 1 FALSE 1505856586 21536
+## 2633 TRUE 1 FALSE 1505856710 21536
+## 2634 TRUE 1 FALSE 1504976570 21536
+## 2635 FALSE 2 FALSE 1505247023 21536
+## 2636 TRUE 1 FALSE 1505856871 21536
+## 2637 TRUE 1 FALSE 1504999650 21536
+## 2638 TRUE 1 FALSE 1504999666 21536
+## 2639 TRUE 1 FALSE 1504999968 21536
+## 2640 TRUE 1 FALSE 1505000116 21536
+## 2641 TRUE 1 FALSE 1505000184 21536
+## 2642 TRUE 1 FALSE 1505000250 21536
+## 2643 <NA> NA NA NA 21536
+## 2644 TRUE 2 FALSE 1505837157 21536
+## 2645 FALSE 1 FALSE 1505395958 21536
+## 2646 TRUE 2 FALSE 1505395967 21536
+## 2647 TRUE 2 FALSE 1505322708 21536
+## 2648 TRUE 1 FALSE 1505856856 21536
+## 2649 TRUE 1 FALSE 1504976651 21536
+## 2650 TRUE 1 FALSE 1504976763 21536
+## 2651 TRUE 1 FALSE 1504976834 21536
+## 2652 TRUE 1 FALSE 1505247065 21536
+## 2653 FALSE 1 FALSE 1505247074 21536
+## 2654 TRUE 1 FALSE 1505856481 21536
+## 2655 TRUE 1 FALSE 1505856504 21536
+## 2656 TRUE 1 FALSE 1505856554 21536
+## 2657 TRUE 1 FALSE 1505856562 21536
+## 2658 TRUE 2 FALSE 1504977559 21536
+## 2659 FALSE 1 FALSE 1504977562 21536
+## 2660 TRUE 2 FALSE 15049775 21536
+## 2661 TRUE 1 FALSE 1505856739 21536
+## 2662 FALSE 1 FALSE 1504888128 21536
+## 2663 TRUE 1 FALSE 1504999607 21536
+## 2664 TRUE 2 FALSE 1505068911 21536
+## 2665 TRUE 1 FALSE 1505068987 21536
+## 2666 TRUE 1 FALSE 1505069069 21536
+## 2667 TRUE 1 FALSE 1505069084 21536
+## 2668 <NA> NA NA NA 21536
+## 2669 TRUE 1 FALSE 1505057365 21536
+## 2670 TRUE 1 FALSE 1505057383 21536
+## 2671 FALSE 1 FALSE 1504888586 21536
+## 2672 FALSE 1 FALSE 1504999531 21536
+## 2673 TRUE 2 FALSE 1504999548 21536
+## 2674 FALSE 1 FALSE 1505322616 21536
+## 2675 TRUE 1 FALSE 1504999593 21536
+## 2676 TRUE 2 FALSE 1505396009 21536
+## 2677 <NA> NA NA NA 21536
+## 2678 FALSE 1 FALSE 1505068905 21536
+## 2679 FALSE 4 FALSE 1504973072 21536
+## 2680 TRUE 1 FALSE 1505856422 21536
+## 2681 <NA> NA NA NA 21536
+## 2682 TRUE 1 FALSE 1504973330 21536
+## 2683 TRUE 1 FALSE 1504973376 21536
+## 2684 <NA> NA NA NA 21536
+## 2685 TRUE 1 FALSE 1505322801 21536
+## 2686 FALSE 1 FALSE 1505837142 21536
+## 2687 TRUE 1 FALSE 1504888 21536
+## 2688 TRUE 1 FALSE 1504999565 21536
+## 2689 TRUE 1 FALSE 1505068879 21536
+## 2690 TRUE 1 FALSE 1505068891 21536
+## 2691 FALSE 3 FALSE 1505072502 21536
+## 2692 FALSE 4 FALSE 1505072505 21536
+## 2693 TRUE 5 FALSE 1504973076 21536
+## 2694 TRUE 1 FALSE 1504977261 21536
+## 2695 TRUE 1 FALSE 1504977533 21536
+## 2696 TRUE 1 FALSE 1504977542 21536
+## 2697 FALSE 1 FALSE 1504977548 21536
+## 2698 TRUE 1 FALSE 1505057480 21536
+## 2699 TRUE 2 FALSE 1504888605 21536
+## 2700 TRUE 1 FALSE 1505836962 21536
+## 2701 TRUE 1 FALSE 1505072392 21536
+## 2702 FALSE 1 FALSE 1505072493 21536
+## 2703 FALSE 2 FALSE 1505072500 21536
+## 2704 TRUE 1 FALSE 1505068848 21536
+## 2705 FALSE 1 FALSE 1504973052 21536
+## 2706 TRUE 5 FALSE 1505072510 21536
+## 2707 FALSE 1 FALSE 1504973114 21536
+## 2708 TRUE 2 FALSE 1504973117 21536
+## 2709 TRUE 1 FALSE 1504973181 21536
+## 2710 TRUE 1 FALSE 1505072917 21536
+## 2711 FALSE 1 FALSE 1505836942 21536
+## 2712 TRUE 2 FALSE 1505836955 21536
+## 2713 TRUE 1 FALSE 1505071870 21536
+## 2714 TRUE 1 FALSE 1505322525 21536
+## 2715 TRUE 1 FALSE 1505057532 21536
+## 2716 TRUE 1 FALSE 1505057602 21536
+## 2717 TRUE 1 FALSE 1505072714 21536
+## 2718 TRUE 1 FALSE 1505072730 21536
+## 2719 FALSE 2 FALSE 1504973059 21536
+## 2720 TRUE 1 FALSE 1504977153 21536
+## 2721 TRUE 1 FALSE 1505322440 21536
+## 2722 TRUE 1 FALSE 1505322477 21536
+## 2723 TRUE 1 FALSE 1505072840 21536
+## 2724 TRUE 1 FALSE 1505836881 21536
+## 2725 TRUE 1 FALSE 1505072554 21536
+## 2726 TRUE 1 FALSE 1505834795 21536
+## 2727 TRUE 1 FALSE 1505834854 21536
+## 2728 TRUE 1 FALSE 1505836867 21536
+## 2729 TRUE 1 FALSE 1505836869 21536
+## 2730 TRUE 1 FALSE 1505322354 21536
+## 2731 FALSE 3 FALSE 1504973067 21536
+## 2732 TRUE 1 FALSE 1504827158 65259
+## 2733 FALSE 1 FALSE 1504827128 65259
+## 2734 TRUE 2 FALSE 1504827135 65259
+## 2735 TRUE 1 FALSE 1504827148 65259
+## 2736 TRUE 1 FALSE 1504827484 65259
+## 2737 <NA> NA NA NA 65259
+## 2738 TRUE 1 FALSE 1504886321 65259
+## 2739 TRUE 1 FALSE 1504886357 65259
+## 2740 FALSE 1 FALSE 1504886222 65259
+## 2741 TRUE 2 FALSE 1504886227 65259
+## 2742 TRUE 1 FALSE 1504827187 65259
+## 2743 TRUE 1 FALSE 1504827202 65259
+## 2744 TRUE 1 FALSE 1504827233 65259
+## 2745 TRUE 1 FALSE 1504827252 65259
+## 2746 TRUE 1 FALSE 1504827268 65259
+## 2747 TRUE 1 FALSE 1504827350 65259
+## 2748 TRUE 1 FALSE 1504827441 65259
+## 2749 TRUE 1 FALSE 1504886301 65259
+## 2750 TRUE 1 FALSE 1504886305 65259
+## 2751 TRUE 1 FALSE 1504886232 65259
+## 2752 TRUE 1 FALSE 1504886240 65259
+## 2753 FALSE 1 FALSE 1504886360 65259
+## 2754 TRUE 2 FALSE 1504886364 65259
+## 2755 TRUE 1 FALSE 1504886272 65259
+## 2756 TRUE 1 FALSE 1504886278 65259
+## 2757 FALSE 1 FALSE 1504886253 65259
+## 2758 TRUE 2 FALSE 1504886258 65259
+## 2759 TRUE 1 FALSE 1504886296 65259
+## 2760 <NA> NA NA NA 65259
+## 2761 TRUE 1 FALSE 1504886368 65259
+## 2762 TRUE 2 FALSE 1505175554 2864
+## 2763 TRUE 1 FALSE 1505175315 2864
+## 2764 FALSE 1 FALSE 1505175525 2864
+## 2765 TRUE 1 FALSE 1505175790 2864
+## 2766 TRUE 1 FALSE 1505175368 2864
+## 2767 TRUE 1 FALSE 1505175499 2864
+## 2768 TRUE 1 FALSE 1505175575 2864
+## 2769 TRUE 1 FALSE 1505175307 2864
+## 2770 FALSE 1 FALSE 1505175468 2864
+## 2771 TRUE 1 FALSE 1505175329 2864
+## 2772 TRUE 1 FALSE 1505175717 2864
+## 2773 TRUE 1 FALSE 1505175818 2864
+## 2774 TRUE 1 FALSE 1505175754 2864
+## 2775 TRUE 2 FALSE 1505175482 2864
+## 2776 TRUE 1 FALSE 1505175324 2864
+## 2777 TRUE 1 FALSE 1505175263 2864
+## 2778 <NA> 1 NA 1505175842 2864
+## 2779 TRUE 1 FALSE 1505175584 2864
+## 2780 TRUE 1 FALSE 1505175433 2864
+## 2781 TRUE 1 FALSE 1505175658 2864
+## 2782 TRUE 1 FALSE 1505175831 2864
+## 2783 TRUE 2 FALSE 1505175424 2864
+## 2784 TRUE 1 FALSE 1505175653 2864
+## 2785 FALSE 1 FALSE 1505175406 2864
+## 2786 TRUE 1 FALSE 1505175621 2864
+## 2787 TRUE 1 FALSE 1505175825 2864
+## 2788 TRUE 1 FALSE 1505180426 34068
+## 2789 TRUE 1 FALSE 1505180611 34068
+## 2790 TRUE 1 FALSE 1505180336 34068
+## 2791 TRUE 1 FALSE 1505180045 34068
+## 2792 TRUE 1 FALSE 1505180360 34068
+## 2793 TRUE 1 FALSE 1505180233 34068
+## 2794 TRUE 1 FALSE 1505180557 34068
+## 2795 <NA> 1 NA 1505180665 34068
+## 2796 TRUE 1 FALSE 1505180371 34068
+## 2797 TRUE 1 FALSE 1505180527 34068
+## 2798 TRUE 1 FALSE 1505180118 34068
+## 2799 TRUE 1 FALSE 1505180178 34068
+## 2800 TRUE 1 FALSE 1505180659 34068
+## 2801 TRUE 1 FALSE 1505180198 34068
+## 2802 TRUE 1 FALSE 1505180642 34068
+## 2803 TRUE 1 FALSE 1505180259 34068
+## 2804 TRUE 1 FALSE 1505180649 34068
+## 2805 TRUE 1 FALSE 1505180456 34068
+## 2806 TRUE 1 FALSE 1505180083 34068
+## 2807 TRUE 1 FALSE 1505180098 34068
+## 2808 TRUE 1 FALSE 1505180188 34068
+## 2809 TRUE 1 FALSE 1505180445 34068
+## 2810 TRUE 1 FALSE 1505180115 34068
+## 2811 TRUE 2 FALSE 1502408365 76966
+## 2812 TRUE 1 FALSE 1502409052 76966
+## 2813 TRUE 3 FALSE 1502409329 76966
+## 2814 TRUE 1 FALSE 1502411179 76966
+## 2815 FALSE 1 FALSE 1502409543 76966
+## 2816 FALSE 1 FALSE 1502409131 76966
+## 2817 FALSE 2 FALSE 1502409173 76966
+## 2818 TRUE 1 FALSE 1502410633 76966
+## 2819 FALSE 1 FALSE 1502411118 76966
+## 2820 TRUE 2 FALSE 1502411135 76966
+## 2821 TRUE 1 FALSE 1502411141 76966
+## 2822 TRUE 1 FALSE 1502411166 76966
+## 2823 TRUE 1 FALSE 1502388489 76966
+## 2824 <NA> 1 NA 1502411182 76966
+## 2825 FALSE 2 FALSE 1502409609 76966
+## 2826 TRUE 3 FALSE 1502410318 76966
+## 2827 TRUE 1 FALSE 1502410425 76966
+## 2828 TRUE 1 FALSE 1502410486 76966
+## 2829 TRUE 1 FALSE 1502410498 76966
+## 2830 TRUE 1 FALSE 1502410523 76966
+## 2831 TRUE 1 FALSE 1502408160 76966
+## 2832 TRUE 1 FALSE 1502408314 76966
+## 2833 FALSE 1 FALSE 1502408356 76966
+## 2834 TRUE 1 FALSE 1502388497 76966
+## 2835 TRUE 1 FALSE 1502388508 76966
+## 2836 TRUE 1 FALSE 1502388672 76966
+## 2837 TRUE 1 FALSE 1502388705 76966
+## 2838 TRUE 1 FALSE 1502388726 76966
+## 2839 TRUE 1 FALSE 1502388746 76966
+## 2840 TRUE 1 FALSE 1502388793 76966
+## 2841 TRUE 1 FALSE 1499366294 4807
+## 2842 TRUE 1 FALSE 1499366325 4807
+## 2843 TRUE 1 FALSE 1499366341 4807
+## 2844 FALSE 1 FALSE 1499366349 4807
+## 2845 TRUE 2 FALSE 1499366546 4807
+## 2846 TRUE 1 FALSE 1499366549 4807
+## 2847 FALSE 1 FALSE 1499366664 4807
+## 2848 FALSE 2 FALSE 1499366706 4807
+## 2849 FALSE 3 FALSE 1499366728 4807
+## 2850 TRUE 4 FALSE 1499366778 4807
+## 2851 FALSE 1 FALSE 1499367054 4807
+## 2852 TRUE 2 FALSE 1499367393 4807
+## 2853 TRUE 1 FALSE 1499367401 4807
+## 2854 FALSE 1 FALSE 1499367618 4807
+## 2855 TRUE 2 FALSE 1499368142 4807
+## 2856 TRUE 1 FALSE 1499368185 4807
+## 2857 FALSE 1 FALSE 1499368221 4807
+## 2858 FALSE 2 FALSE 1499368282 4807
+## 2859 TRUE 3 FALSE 1499368318 4807
+## 2860 FALSE 1 FALSE 1499368344 4807
+## 2861 TRUE 2 FALSE 1499368356 4807
+## 2862 FALSE 1 FALSE 1499368364 4807
+## 2863 TRUE 2 FALSE 1499368404 4807
+## 2864 FALSE 1 FALSE 1499368639 4807
+## 2865 TRUE 2 FALSE 1499368659 4807
+## 2866 TRUE 1 FALSE 1499368673 4807
+## 2867 TRUE 1 FALSE 1499368680 4807
+## 2868 TRUE 1 FALSE 1499368797 4807
+## 2869 TRUE 1 FALSE 1499368821 4807
+## 2870 TRUE 1 FALSE 1499368868 4807
+## 2871 TRUE 1 FALSE 1499368891 4807
+## 2872 TRUE 1 FALSE 1499368902 4807
+## 2873 TRUE 1 FALSE 1499368906 4807
+## 2874 <NA> 1 NA 1499368920 4807
+## 2875 TRUE 1 FALSE 1499368998 4807
+## 2876 TRUE 1 FALSE 1499369005 4807
+## 2877 TRUE 1 FALSE 1499369036 4807
+## 2878 TRUE 1 FALSE 1499369040 4807
+## 2879 TRUE 1 FALSE 1499369050 4807
+## 2880 TRUE 1 FALSE 1499370381 4807
+## 2881 TRUE 1 FALSE 1499370430 4807
+## 2882 FALSE 1 FALSE 1499370479 4807
+## 2883 TRUE 2 FALSE 1499370499 4807
+## 2884 TRUE 1 FALSE 1499370533 4807
+## 2885 TRUE 1 FALSE 1499370573 4807
+## 2886 TRUE 1 FALSE 1499370622 4807
+## 2887 FALSE 1 FALSE 1499370643 4807
+## 2888 TRUE 2 FALSE 1499370650 4807
+## 2889 FALSE 1 FALSE 1499370691 4807
+## 2890 FALSE 2 FALSE 1499370695 4807
+## 2891 TRUE 3 FALSE 1499370781 4807
+## 2892 TRUE 1 FALSE 1499370808 4807
+## 2893 FALSE 1 FALSE 1499370899 4807
+## 2894 TRUE 2 FALSE 1499370959 4807
+## 2895 TRUE 1 FALSE 1499371025 4807
+## 2896 FALSE 1 FALSE 1499371068 4807
+## 2897 TRUE 2 FALSE 1499371094 4807
+## 2898 TRUE 1 FALSE 1499371248 4807
+## 2899 TRUE 1 FALSE 1499371284 4807
+## 2900 FALSE 1 FALSE 1499371383 4807
+## 2901 TRUE 2 FALSE 1499371565 4807
+## 2902 TRUE 1 FALSE 1499371585 4807
+## 2903 TRUE 1 FALSE 1499371651 4807
+## 2904 TRUE 1 FALSE 1499371655 4807
+## 2905 <NA> 1 FALSE 1499371660 4807
+## 2906 TRUE 1 FALSE 1499377896 4807
+## 2907 FALSE 1 FALSE 1499377972 4807
+## 2908 TRUE 2 FALSE 1499378009 4807
+## 2909 TRUE 1 FALSE 1499378023 4807
+## 2910 TRUE 1 FALSE 1499378032 4807
+## 2911 TRUE 1 FALSE 1499378097 4807
+## 2912 FALSE 1 FALSE 1499378271 4807
+## 2913 FALSE 2 FALSE 1499378306 4807
+## 2914 TRUE 3 FALSE 1499378329 4807
+## 2915 FALSE 1 FALSE 1499378359 4807
+## 2916 TRUE 2 FALSE 1499378420 4807
+## 2917 TRUE 1 FALSE 1499378496 4807
+## 2918 TRUE 1 FALSE 1499378561 4807
+## 2919 TRUE 1 FALSE 1499378567 4807
+## 2920 FALSE 1 FALSE 1499378644 4807
+## 2921 TRUE 2 FALSE 1499378924 4807
+## 2922 TRUE 1 FALSE 1499379089 4807
+## 2923 TRUE 1 FALSE 1499379097 4807
+## 2924 TRUE 1 FALSE 1499379307 4807
+## 2925 FALSE 1 FALSE 1499379441 4807
+## 2926 TRUE 2 FALSE 1499379460 4807
+## 2927 FALSE 1 FALSE 1499379637 4807
+## 2928 TRUE 2 FALSE 1499379696 4807
+## 2929 TRUE 1 FALSE 1499379958 4807
+## 2930 TRUE 1 FALSE 1499380006 4807
+## 2931 TRUE 1 FALSE 1499380013 4807
+## 2932 <NA> 1 FALSE 1499380021 4807
+## 2933 TRUE 2 FALSE 1500767835 4807
+## 2934 TRUE 1 FALSE 1500768120 4807
+## 2935 FALSE 1 FALSE 1500768219 4807
+## 2936 TRUE 2 FALSE 1500768238 4807
+## 2937 TRUE 1 FALSE 1500768247 4807
+## 2938 TRUE 1 FALSE 1500768320 4807
+## 2939 TRUE 1 FALSE 1500768324 4807
+## 2940 <NA> 1 NA 1500768330 4807
+## 2941 TRUE 1 FALSE 1499914640 4807
+## 2942 TRUE 1 FALSE 1499914653 4807
+## 2943 FALSE 1 FALSE 1499914662 4807
+## 2944 TRUE 2 FALSE 1499914675 4807
+## 2945 TRUE 1 FALSE 1499914898 4807
+## 2946 FALSE 1 FALSE 1499914942 4807
+## 2947 TRUE 2 FALSE 1499914953 4807
+## 2948 TRUE 1 FALSE 1499914960 4807
+## 2949 TRUE 1 FALSE 1499915028 4807
+## 2950 TRUE 1 FALSE 1499915032 4807
+## 2951 TRUE 1 FALSE 1499915053 4807
+## 2952 TRUE 1 FALSE 1499915087 4807
+## 2953 TRUE 1 FALSE 1499915168 4807
+## 2954 TRUE 1 FALSE 1499915177 4807
+## 2955 TRUE 1 FALSE 1499915197 4807
+## 2956 FALSE 1 FALSE 1499816657 4807
+## 2957 TRUE 2 FALSE 1499816686 4807
+## 2958 TRUE 1 FALSE 1499816698 4807
+## 2959 TRUE 1 FALSE 1499816726 4807
+## 2960 TRUE 1 FALSE 1499816756 4807
+## 2961 TRUE 1 FALSE 1499816802 4807
+## 2962 TRUE 1 FALSE 1499816871 4807
+## 2963 TRUE 1 FALSE 1499816878 4807
+## 2964 TRUE 1 FALSE 1499816969 4807
+## 2965 FALSE 1 FALSE 1499817160 4807
+## 2966 TRUE 2 FALSE 1499817174 4807
+## 2967 TRUE 1 FALSE 1499817222 4807
+## 2968 TRUE 1 FALSE 1499817252 4807
+## 2969 TRUE 1 FALSE 1499817295 4807
+## 2970 TRUE 1 FALSE 1499817336 4807
+## 2971 TRUE 1 FALSE 1499817340 4807
+## 2972 <NA> 1 NA 1499817344 4807
+## 2973 TRUE 1 FALSE 1499904135 4807
+## 2974 TRUE 1 FALSE 1499904169 4807
+## 2975 TRUE 1 FALSE 1499904364 4807
+## 2976 TRUE 1 FALSE 1499904382 4807
+## 2977 TRUE 1 FALSE 1499904495 4807
+## 2978 TRUE 1 FALSE 1499904498 4807
+## 2979 FALSE 1 FALSE 1499904589 4807
+## 2980 TRUE 2 FALSE 1499904601 4807
+## 2981 TRUE 1 FALSE 1499904646 4807
+## 2982 TRUE 1 FALSE 1499904713 4807
+## 2983 TRUE 1 FALSE 1499904793 4807
+## 2984 FALSE 1 FALSE 1499905970 4807
+## 2985 TRUE 2 FALSE 1499906000 4807
+## 2986 TRUE 1 FALSE 1499906037 4807
+## 2987 TRUE 1 FALSE 1499906056 4807
+## 2988 TRUE 1 FALSE 1499906133 4807
+## 2989 TRUE 1 FALSE 1499906166 4807
+## 2990 TRUE 1 FALSE 1499906215 4807
+## 2991 TRUE 1 FALSE 1499906225 4807
+## 2992 TRUE 1 FALSE 1499906250 4807
+## 2993 FALSE 1 FALSE 1499906310 4807
+## 2994 TRUE 2 FALSE 1499906339 4807
+## 2995 TRUE 1 FALSE 1499906394 4807
+## 2996 TRUE 1 FALSE 1499907077 4807
+## 2997 FALSE 1 FALSE 1499907275 4807
+## 2998 TRUE 2 FALSE 1499907284 4807
+## 2999 TRUE 1 FALSE 1499907300 4807
+## 3000 TRUE 1 FALSE 1499907338 4807
+## 3001 TRUE 1 FALSE 1499907372 4807
+## 3002 TRUE 1 FALSE 1499907374 4807
+## 3003 <NA> 1 FALSE 1499907376 4807
+## 3004 TRUE 1 FALSE 1499908616 4807
+## 3005 TRUE 1 FALSE 1499908709 4807
+## 3006 TRUE 1 FALSE 1499908731 4807
+## 3007 TRUE 1 FALSE 1499908806 4807
+## 3008 TRUE 1 FALSE 1499908820 4807
+## 3009 TRUE 1 FALSE 1499908853 4807
+## 3010 TRUE 1 FALSE 1499908899 4807
+## 3011 TRUE 1 FALSE 1499908930 4807
+## 3012 FALSE 1 FALSE 1499908992 4807
+## 3013 FALSE 2 FALSE 1499909058 4807
+## 3014 FALSE 3 FALSE 1499909143 4807
+## 3015 TRUE 4 FALSE 1499909165 4807
+## 3016 FALSE 1 FALSE 1499909229 4807
+## 3017 FALSE 2 FALSE 1499909252 4807
+## 3018 TRUE 3 FALSE 1499909273 4807
+## 3019 FALSE 1 FALSE 1499909299 4807
+## 3020 TRUE 2 FALSE 1499909311 4807
+## 3021 TRUE 1 FALSE 1499909349 4807
+## 3022 TRUE 1 FALSE 1499909379 4807
+## 3023 TRUE 1 FALSE 1499909422 4807
+## 3024 TRUE 1 FALSE 1499910378 4807
+## 3025 TRUE 1 FALSE 1499910400 4807
+## 3026 TRUE 1 FALSE 1499910473 4807
+## 3027 FALSE 1 FALSE 1499910530 4807
+## 3028 TRUE 2 FALSE 1499910546 4807
+## 3029 FALSE 1 FALSE 1499910592 4807
+## 3030 TRUE 2 FALSE 1499910603 4807
+## 3031 TRUE 1 FALSE 1499910661 4807
+## 3032 FALSE 1 FALSE 1499910694 4807
+## 3033 FALSE 2 FALSE 1499910732 4807
+## 3034 TRUE 3 FALSE 1499910782 4807
+## 3035 TRUE 1 FALSE 1499910820 4807
+## 3036 TRUE 1 FALSE 1499910839 4807
+## 3037 TRUE 1 FALSE 1499910875 4807
+## 3038 FALSE 1 FALSE 1499910970 4807
+## 3039 FALSE 2 FALSE 1499911133 4807
+## 3040 FALSE 3 FALSE 1499911248 4807
+## 3041 TRUE 4 FALSE 1499911294 4807
+## 3042 TRUE 1 FALSE 1499911474 4807
+## 3043 TRUE 1 FALSE 1499911482 4807
+## 3044 TRUE 1 FALSE 1499913399 4807
+## 3045 TRUE 1 FALSE 1499913459 4807
+## 3046 TRUE 1 FALSE 1499913818 4807
+## 3047 FALSE 1 FALSE 1499913866 4807
+## 3048 TRUE 2 FALSE 1499913873 4807
+## 3049 FALSE 1 FALSE 1499913915 4807
+## 3050 FALSE 2 FALSE 1499913920 4807
+## 3051 FALSE 3 FALSE 1499913923 4807
+## 3052 FALSE 4 FALSE 1499913945 4807
+## 3053 FALSE 5 FALSE 1499913962 4807
+## 3054 FALSE 6 FALSE 1499913979 4807
+## 3055 FALSE 7 FALSE 1499913984 4807
+## 3056 FALSE 8 FALSE 1499914008 4807
+## 3057 TRUE 9 FALSE 1499914027 4807
+## 3058 TRUE 1 FALSE 1499914054 4807
+## 3059 TRUE 1 FALSE 1499914067 4807
+## 3060 TRUE 1 FALSE 1499914074 4807
+## 3061 <NA> 1 FALSE 1499914075 4807
+## 3062 TRUE 4 FALSE 1500766032 4807
+## 3063 TRUE 1 FALSE 1500766040 4807
+## 3064 TRUE 1 FALSE 1499915217 4807
+## 3065 TRUE 1 FALSE 1499915371 4807
+## 3066 TRUE 1 FALSE 1499915470 4807
+## 3067 TRUE 1 FALSE 1499924270 4807
+## 3068 FALSE 1 FALSE 1499924302 4807
+## 3069 TRUE 2 FALSE 1499924308 4807
+## 3070 TRUE 1 FALSE 1499924366 4807
+## 3071 FALSE 1 FALSE 1499924452 4807
+## 3072 FALSE 1 FALSE 1500765964 4807
+## 3073 FALSE 2 FALSE 1500765978 4807
+## 3074 FALSE 3 FALSE 1500765998 4807
+## 3075 TRUE 5 FALSE 1499924620 4807
+## 3076 FALSE 1 FALSE 1499924684 4807
+## 3077 TRUE 2 FALSE 1499924724 4807
+## 3078 TRUE 1 FALSE 1499924727 4807
+## 3079 TRUE 1 FALSE 1499924747 4807
+## 3080 TRUE 1 FALSE 1499924807 4807
+## 3081 TRUE 1 FALSE 1499924845 4807
+## 3082 TRUE 1 FALSE 1499924900 4807
+## 3083 TRUE 1 FALSE 1499924944 4807
+## 3084 TRUE 1 FALSE 1499924948 4807
+## 3085 FALSE 2 FALSE 1499924470 4807
+## 3086 FALSE 3 FALSE 1499924576 4807
+## 3087 FALSE 4 FALSE 1499924582 4807
+## 3088 TRUE 2 FALSE 1500767055 4807
+## 3089 FALSE 1 FALSE 1500767279 4807
+## 3090 TRUE 2 FALSE 1500767367 4807
+## 3091 TRUE 1 FALSE 1500766055 4807
+## 3092 TRUE 1 FALSE 1500766091 4807
+## 3093 TRUE 1 FALSE 1500766234 4807
+## 3094 TRUE 1 FALSE 1500766271 4807
+## 3095 TRUE 1 FALSE 1500766294 4807
+## 3096 TRUE 1 FALSE 1500766347 4807
+## 3097 TRUE 1 FALSE 1500766412 4807
+## 3098 <NA> 1 NA 1499924951 4807
+## 3099 TRUE 2 FALSE 1500766485 4807
+## 3100 FALSE 1 FALSE 1500767044 4807
+## 3101 TRUE 1 FALSE 1500767561 4807
+## 3102 TRUE 1 FALSE 1500767604 4807
+## 3103 TRUE 1 FALSE 1500767725 4807
+## 3104 TRUE 1 FALSE 1500767391 4807
+## 3105 FALSE 1 FALSE 1500767810 4807
+## 3106 FALSE 1 FALSE 1500766457 4807
+## 3107 TRUE 1 FALSE 1500767733 4807
+## 3108 TRUE 1 FALSE 1505252526 6487
+## 3109 TRUE 1 FALSE 1505252392 6487
+## 3110 TRUE 1 FALSE 1505252088 6487
+## 3111 TRUE 1 FALSE 1505252333 6487
+## 3112 TRUE 1 FALSE 1505252312 6487
+## 3113 TRUE 1 FALSE 1505253186 6487
+## 3114 TRUE 1 FALSE 1505252497 6487
+## 3115 TRUE 1 FALSE 1505252375 6487
+## 3116 TRUE 1 FALSE 1505252944 6487
+## 3117 TRUE 1 FALSE 1505252297 6487
+## 3118 TRUE 1 FALSE 1505253190 6487
+## 3119 TRUE 1 FALSE 1505251861 6487
+## 3120 TRUE 2 FALSE 1505252106 6487
+## 3121 TRUE 1 FALSE 1505252568 6487
+## 3122 TRUE 1 FALSE 1505252586 6487
+## 3123 FALSE 1 FALSE 1505252096 6487
+## 3124 TRUE 1 FALSE 1505252519 6487
+## 3125 TRUE 1 FALSE 1505253173 6487
+## 3126 TRUE 1 FALSE 1505252811 6487
+## 3127 TRUE 1 FALSE 1505253059 6487
+## 3128 <NA> 1 NA 1505253195 6487
+## 3129 TRUE 1 FALSE 1505252078 6487
+## 3130 TRUE 1 FALSE 1505252047 6487
+## 3131 TRUE 1 FALSE 1505252590 6487
+## 3132 TRUE 1 FALSE 1506210439 8766
+## 3133 TRUE 1 FALSE 1506210407 8766
+## 3134 TRUE 1 FALSE 1506210616 8766
+## 3135 TRUE 1 FALSE 1506210477 8766
+## 3136 TRUE 1 FALSE 1506210483 8766
+## 3137 TRUE 1 FALSE 1506210501 8766
+## 3138 FALSE 1 FALSE 1506210909 8766
+## 3139 TRUE 2 FALSE 1506210932 8766
+## 3140 TRUE 1 FALSE 1506211021 8766
+## 3141 TRUE 1 FALSE 1506211065 8766
+## 3142 FALSE 1 FALSE 1506211101 8766
+## 3143 TRUE 2 FALSE 1506211108 8766
+## 3144 TRUE 1 FALSE 1506211133 8766
+## 3145 TRUE 1 FALSE 1506211212 8766
+## 3146 TRUE 1 FALSE 1506211241 8766
+## 3147 TRUE 1 FALSE 1506211334 8766
+## 3148 TRUE 1 FALSE 1506210650 8766
+## 3149 FALSE 1 FALSE 1506210720 8766
+## 3150 TRUE 2 FALSE 1506210749 8766
+## 3151 TRUE 2 FALSE 1506211444 8766
+## 3152 TRUE 1 FALSE 1506211488 8766
+## 3153 FALSE 1 FALSE 1506211620 8766
+## 3154 FALSE 2 FALSE 1506211674 8766
+## 3155 TRUE 3 FALSE 1506211691 8766
+## 3156 TRUE 1 FALSE 1506211760 8766
+## 3157 TRUE 1 FALSE 1506211831 8766
+## 3158 TRUE 1 FALSE 1506211833 8766
+## 3159 <NA> 1 NA 1506211841 8766
+## 3160 FALSE 1 FALSE 1506212054 8766
+## 3161 FALSE 1 FALSE 1506211388 8766
+## 3162 TRUE 2 FALSE 1506211401 8766
+## 3163 FALSE 1 FALSE 1506211436 8766
+## 3164 TRUE 1 FALSE 1506212217 8766
+## 3165 TRUE 1 FALSE 1506212271 8766
+## 3166 TRUE 1 FALSE 1506212393 8766
+## 3167 TRUE 1 FALSE 1506212398 8766
+## 3168 TRUE 1 FALSE 1506212435 8766
+## 3169 TRUE 1 FALSE 1506212468 8766
+## 3170 TRUE 1 FALSE 1506212473 8766
+## 3171 FALSE 1 FALSE 1506212515 8766
+## 3172 TRUE 2 FALSE 1506212545 8766
+## 3173 FALSE 1 FALSE 1506212585 8766
+## 3174 TRUE 2 FALSE 1506212625 8766
+## 3175 TRUE 1 FALSE 1506212633 8766
+## 3176 FALSE 1 FALSE 1506212734 8766
+## 3177 TRUE 2 FALSE 1506212830 8766
+## 3178 TRUE 1 FALSE 1506212886 8766
+## 3179 TRUE 1 FALSE 1506212966 8766
+## 3180 TRUE 1 FALSE 1506212997 8766
+## 3181 TRUE 1 FALSE 1506213064 8766
+## 3182 TRUE 1 FALSE 1506213067 8766
+## 3183 <NA> 1 FALSE 1506213069 8766
+## 3184 TRUE 1 FALSE 1506213777 8766
+## 3185 TRUE 1 FALSE 1506213785 8766
+## 3186 TRUE 1 FALSE 1506213826 8766
+## 3187 TRUE 1 FALSE 1506213883 8766
+## 3188 TRUE 1 FALSE 1506213972 8766
+## 3189 TRUE 1 FALSE 1506213998 8766
+## 3190 TRUE 1 FALSE 1506214004 8766
+## 3191 TRUE 1 FALSE 1506214063 8766
+## 3192 TRUE 1 FALSE 1506214112 8766
+## 3193 TRUE 1 FALSE 1506214169 8766
+## 3194 TRUE 1 FALSE 1506214189 8766
+## 3195 FALSE 1 FALSE 1506214239 8766
+## 3196 FALSE 2 FALSE 1506214253 8766
+## 3197 TRUE 3 FALSE 1506214264 8766
+## 3198 TRUE 1 FALSE 1506214267 8766
+## 3199 TRUE 1 FALSE 1506214270 8766
+## 3200 <NA> 1 FALSE 1506214271 8766
+## 3201 TRUE 2 FALSE 1506212127 8766
+## 3202 TRUE 1 FALSE 1506212150 8766
+## 3203 TRUE 1 FALSE 1506212211 8766
+## 3204 <NA> NA NA NA 27286
+## 3205 TRUE 1 FALSE 1506135629 70464
+## 3206 TRUE 1 FALSE 1506135632 70464
+## 3207 TRUE 1 FALSE 1506135745 70464
+## 3208 TRUE 1 FALSE 1506135811 70464
+## 3209 TRUE 1 FALSE 1506135858 70464
+## 3210 TRUE 1 FALSE 1506135551 70464
+## 3211 TRUE 1 FALSE 1506135755 70464
+## 3212 TRUE 1 FALSE 1506135616 70464
+## 3213 FALSE 3 FALSE 1506187743 70464
+## 3214 TRUE 4 FALSE 1506187821 70464
+## 3215 TRUE 1 FALSE 1506187994 70464
+## 3216 TRUE 1 FALSE 1506187999 70464
+## 3217 TRUE 1 FALSE 1506188065 70464
+## 3218 TRUE 1 FALSE 1506188171 70464
+## 3219 TRUE 1 FALSE 1506188203 70464
+## 3220 TRUE 1 FALSE 1506188288 70464
+## 3221 TRUE 1 FALSE 1506188295 70464
+## 3222 TRUE 1 FALSE 1506188305 70464
+## 3223 TRUE 1 FALSE 1506188320 70464
+## 3224 TRUE 1 FALSE 1506135610 70464
+## 3225 FALSE 2 FALSE 1506187698 70464
+## 3226 TRUE 1 FALSE 1506193173 70464
+## 3227 TRUE 1 FALSE 1506193189 70464
+## 3228 TRUE 1 FALSE 1506193202 70464
+## 3229 TRUE 1 FALSE 1506193243 70464
+## 3230 TRUE 1 FALSE 1506193274 70464
+## 3231 TRUE 1 FALSE 1506193279 70464
+## 3232 TRUE 1 FALSE 1506193319 70464
+## 3233 TRUE 1 FALSE 1506193322 70464
+## 3234 TRUE 1 FALSE 1506135868 70464
+## 3235 FALSE 1 FALSE 1506136014 70464
+## 3236 TRUE 2 FALSE 1506136028 70464
+## 3237 TRUE 1 FALSE 1506188328 70464
+## 3238 <NA> 1 NA 1506188332 70464
+## 3239 FALSE 7 FALSE 1506194005 70464
+## 3240 FALSE 8 FALSE 1506194563 70464
+## 3241 FALSE 9 FALSE 1506194772 70464
+## 3242 TRUE 10 TRUE 1506195744 70464
+## 3243 TRUE 1 FALSE 1506195911 70464
+## 3244 TRUE 1 FALSE 1506195919 70464
+## 3245 TRUE 1 FALSE 1506196096 70464
+## 3246 TRUE 1 FALSE 1506196132 70464
+## 3247 TRUE 1 FALSE 1506196150 70464
+## 3248 TRUE 1 FALSE 1506196194 70464
+## 3249 TRUE 1 FALSE 1506196220 70464
+## 3250 TRUE 1 FALSE 1506136045 70464
+## 3251 TRUE 1 FALSE 1506136050 70464
+## 3252 TRUE 1 FALSE 1506198130 70464
+## 3253 TRUE 1 FALSE 1506198206 70464
+## 3254 TRUE 1 FALSE 1506198439 70464
+## 3255 TRUE 1 FALSE 1506198480 70464
+## 3256 TRUE 1 FALSE 1506198649 70464
+## 3257 TRUE 1 FALSE 1506198827 70464
+## 3258 TRUE 1 FALSE 1506198844 70464
+## 3259 TRUE 1 FALSE 1506199211 70464
+## 3260 TRUE 1 FALSE 1506199221 70464
+## 3261 TRUE 1 FALSE 1506199242 70464
+## 3262 TRUE 1 FALSE 1506199264 70464
+## 3263 TRUE 1 FALSE 1506196227 70464
+## 3264 <NA> 1 FALSE 1506196231 70464
+## 3265 FALSE 1 FALSE 1506201099 70464
+## 3266 TRUE 1 FALSE 1506136071 70464
+## 3267 TRUE 1 FALSE 1506136079 70464
+## 3268 TRUE 1 FALSE 1506136092 70464
+## 3269 TRUE 1 FALSE 1506136148 70464
+## 3270 TRUE 1 FALSE 1506136164 70464
+## 3271 TRUE 1 FALSE 1506136294 70464
+## 3272 TRUE 1 FALSE 1506136314 70464
+## 3273 TRUE 1 FALSE 1506136320 70464
+## 3274 TRUE 1 FALSE 1506136326 70464
+## 3275 <NA> 1 NA 1506136333 70464
+## 3276 TRUE 1 FALSE 1506199410 70464
+## 3277 TRUE 1 FALSE 1506199452 70464
+## 3278 FALSE 6 FALSE 1506193959 70464
+## 3279 TRUE 1 FALSE 1506185691 70464
+## 3280 TRUE 1 FALSE 1506185708 70464
+## 3281 TRUE 1 FALSE 1506185747 70464
+## 3282 TRUE 1 FALSE 1506185770 70464
+## 3283 FALSE 1 FALSE 1506185802 70464
+## 3284 FALSE 2 FALSE 1506185840 70464
+## 3285 TRUE 3 FALSE 1506185842 70464
+## 3286 TRUE 1 FALSE 1506185855 70464
+## 3287 TRUE 1 FALSE 1506185893 70464
+## 3288 TRUE 1 FALSE 1506185907 70464
+## 3289 TRUE 1 FALSE 1506185911 70464
+## 3290 <NA> 1 NA 1506185916 70464
+## 3291 TRUE 1 FALSE 1506186378 70464
+## 3292 TRUE 1 FALSE 1506186406 70464
+## 3293 TRUE 1 FALSE 1506186421 70464
+## 3294 TRUE 1 FALSE 1506186463 70464
+## 3295 TRUE 1 FALSE 1506186474 70464
+## 3296 TRUE 1 FALSE 1506186493 70464
+## 3297 TRUE 1 FALSE 1506186498 70464
+## 3298 TRUE 1 FALSE 1506186518 70464
+## 3299 FALSE 1 FALSE 1506186555 70464
+## 3300 TRUE 2 FALSE 1506186580 70464
+## 3301 TRUE 1 FALSE 1506186705 70464
+## 3302 TRUE 1 FALSE 1506186726 70464
+## 3303 TRUE 1 FALSE 1506186795 70464
+## 3304 TRUE 1 FALSE 1506186845 70464
+## 3305 TRUE 1 FALSE 1506186866 70464
+## 3306 FALSE 1 FALSE 1506186999 70464
+## 3307 TRUE 2 FALSE 1506187018 70464
+## 3308 TRUE 1 FALSE 1506187037 70464
+## 3309 TRUE 1 FALSE 1506187203 70464
+## 3310 TRUE 1 FALSE 1506187279 70464
+## 3311 TRUE 1 FALSE 1506187330 70464
+## 3312 TRUE 1 FALSE 1506187358 70464
+## 3313 TRUE 1 FALSE 1506187397 70464
+## 3314 TRUE 1 FALSE 1506187415 70464
+## 3315 FALSE 1 FALSE 1506187439 70464
+## 3316 FALSE 2 FALSE 1506187458 70464
+## 3317 TRUE 3 FALSE 1506187465 70464
+## 3318 TRUE 1 FALSE 1506187580 70464
+## 3319 FALSE 1 FALSE 1506187670 70464
+## 3320 TRUE 1 FALSE 1506178473 70464
+## 3321 FALSE 1 FALSE 1506178542 70464
+## 3322 TRUE 2 FALSE 1506178574 70464
+## 3323 TRUE 1 FALSE 1506178599 70464
+## 3324 TRUE 1 FALSE 1506178604 70464
+## 3325 TRUE 1 FALSE 1506178693 70464
+## 3326 TRUE 1 FALSE 1506178955 70464
+## 3327 TRUE 1 FALSE 1506178971 70464
+## 3328 TRUE 1 FALSE 1506179020 70464
+## 3329 TRUE 1 FALSE 1506179220 70464
+## 3330 TRUE 1 FALSE 1506179232 70464
+## 3331 TRUE 1 FALSE 1506179326 70464
+## 3332 TRUE 1 FALSE 1506179501 70464
+## 3333 TRUE 1 FALSE 1506179507 70464
+## 3334 TRUE 1 FALSE 1506179629 70464
+## 3335 FALSE 1 FALSE 1506179708 70464
+## 3336 TRUE 2 FALSE 1506179733 70464
+## 3337 TRUE 1 FALSE 1506179820 70464
+## 3338 TRUE 1 FALSE 1506179931 70464
+## 3339 TRUE 1 FALSE 1506179988 70464
+## 3340 TRUE 1 FALSE 1506179990 70464
+## 3341 <NA> 1 NA 1506179994 70464
+## 3342 TRUE 1 FALSE 1506193336 70464
+## 3343 TRUE 1 FALSE 1506193399 70464
+## 3344 TRUE 1 FALSE 1506193452 70464
+## 3345 FALSE 1 FALSE 1506193455 70464
+## 3346 TRUE 2 FALSE 1506193475 70464
+## 3347 TRUE 1 FALSE 1506193484 70464
+## 3348 TRUE 1 FALSE 1506193506 70464
+## 3349 TRUE 1 FALSE 1506193554 70464
+## 3350 TRUE 1 FALSE 1506193606 70464
+## 3351 TRUE 1 FALSE 1506193642 70464
+## 3352 TRUE 1 FALSE 1506193662 70464
+## 3353 TRUE 1 FALSE 1506193688 70464
+## 3354 FALSE 1 FALSE 1506193759 70464
+## 3355 FALSE 2 FALSE 1506193773 70464
+## 3356 FALSE 3 FALSE 1506193855 70464
+## 3357 FALSE 4 FALSE 1506193870 70464
+## 3358 FALSE 5 FALSE 1506193941 70464
+## 3359 FALSE 1 FALSE 1506136513 70464
+## 3360 TRUE 2 FALSE 1506136519 70464
+## 3361 TRUE 1 FALSE 1506136553 70464
+## 3362 TRUE 1 FALSE 1506136558 70464
+## 3363 TRUE 1 FALSE 1506136599 70464
+## 3364 TRUE 1 FALSE 1506136648 70464
+## 3365 FALSE 1 FALSE 1506136788 70464
+## 3366 TRUE 2 FALSE 1506136808 70464
+## 3367 TRUE 1 FALSE 1506136846 70464
+## 3368 TRUE 1 FALSE 1506136944 70464
+## 3369 TRUE 1 FALSE 1506137069 70464
+## 3370 TRUE 1 FALSE 1506137165 70464
+## 3371 TRUE 1 FALSE 1506137214 70464
+## 3372 TRUE 1 FALSE 1506137230 70464
+## 3373 TRUE 1 FALSE 1506137364 70464
+## 3374 FALSE 1 FALSE 1506137567 70464
+## 3375 FALSE 2 FALSE 1506137699 70464
+## 3376 TRUE 3 FALSE 1506137735 70464
+## 3377 FALSE 1 FALSE 1506137870 70464
+## 3378 TRUE 2 FALSE 1506137957 70464
+## 3379 TRUE 1 FALSE 1506138006 70464
+## 3380 TRUE 1 FALSE 1506138158 70464
+## 3381 TRUE 1 FALSE 1506138355 70464
+## 3382 TRUE 1 FALSE 1506138547 70464
+## 3383 TRUE 1 FALSE 1506138654 70464
+## 3384 TRUE 1 FALSE 1506138827 70464
+## 3385 TRUE 1 FALSE 1506138834 70464
+## 3386 <NA> 1 FALSE 1506138838 70464
+## 3387 FALSE 2 TRUE 1506201214 70464
+## 3388 TRUE 3 FALSE 1506201417 70464
+## 3389 TRUE 1 FALSE 1506201461 70464
+## 3390 TRUE 1 FALSE 1506201561 70464
+## 3391 TRUE 1 FALSE 1506201772 70464
+## 3392 FALSE 1 FALSE 1506201802 70464
+## 3393 TRUE 2 FALSE 1506201870 70464
+## 3394 TRUE 1 FALSE 1506201887 70464
+## 3395 TRUE 1 FALSE 1506201992 70464
+## 3396 TRUE 1 FALSE 1506202262 70464
+## 3397 TRUE 1 FALSE 1506202303 70464
+## 3398 TRUE 1 FALSE 1506202581 70464
+## 3399 TRUE 1 FALSE 1506202661 70464
+## 3400 TRUE 1 FALSE 1506202941 70464
+## 3401 FALSE 1 FALSE 1506202986 70464
+## 3402 FALSE 2 FALSE 1506203022 70464
+## 3403 TRUE 3 FALSE 1506203030 70464
+## 3404 TRUE 1 FALSE 1506203057 70464
+## 3405 TRUE 1 FALSE 1506203061 70464
+## 3406 <NA> 1 NA 1506203062 70464
+## 3407 FALSE 1 FALSE 1506182850 70464
+## 3408 TRUE 2 FALSE 1506182879 70464
+## 3409 TRUE 1 FALSE 1506182885 70464
+## 3410 TRUE 1 FALSE 1506182922 70464
+## 3411 TRUE 1 FALSE 1506183313 70464
+## 3412 TRUE 1 FALSE 1506183332 70464
+## 3413 TRUE 1 FALSE 1506183386 70464
+## 3414 FALSE 1 FALSE 1506183401 70464
+## 3415 FALSE 2 FALSE 1506183415 70464
+## 3416 TRUE 3 FALSE 1506183424 70464
+## 3417 TRUE 1 FALSE 1506183486 70464
+## 3418 TRUE 1 FALSE 1506183488 70464
+## 3419 <NA> 1 FALSE 1506183492 70464
+## 3420 TRUE 1 FALSE 1506184009 70464
+## 3421 TRUE 1 FALSE 1506184047 70464
+## 3422 FALSE 1 FALSE 1506184225 70464
+## 3423 FALSE 2 FALSE 1506184242 70464
+## 3424 FALSE 3 FALSE 1506184249 70464
+## 3425 TRUE 4 FALSE 1506184271 70464
+## 3426 TRUE 1 FALSE 1506184281 70464
+## 3427 FALSE 1 FALSE 1506184323 70464
+## 3428 TRUE 2 FALSE 1506184385 70464
+## 3429 TRUE 1 FALSE 1506184388 70464
+## 3430 TRUE 1 FALSE 1506184630 70464
+## 3431 TRUE 1 FALSE 1506184640 70464
+## 3432 TRUE 1 FALSE 1506184649 70464
+## 3433 TRUE 1 FALSE 1506184964 70464
+## 3434 FALSE 1 FALSE 1506185199 70464
+## 3435 TRUE 2 FALSE 1506185218 70464
+## 3436 TRUE 1 FALSE 1506185237 70464
+## 3437 TRUE 1 FALSE 1506185250 70464
+## 3438 TRUE 1 FALSE 1506185373 70464
+## 3439 TRUE 1 FALSE 1506136440 70464
+## 3440 FALSE 1 FALSE 1506180349 70464
+## 3441 TRUE 2 FALSE 1506180371 70464
+## 3442 FALSE 1 FALSE 1506180387 70464
+## 3443 TRUE 2 FALSE 1506180400 70464
+## 3444 TRUE 1 FALSE 1506180436 70464
+## 3445 TRUE 1 FALSE 1506180483 70464
+## 3446 TRUE 1 FALSE 1506182819 70464
+## 3447 TRUE 1 FALSE 1506185676 70464
+## 3448 TRUE 1 FALSE 1506185409 70464
+## 3449 TRUE 1 FALSE 1506185665 70464
+## 3450 TRUE 2 FALSE 1505338706 11801
+## 3451 TRUE 1 FALSE 1506126571 11801
+## 3452 TRUE 1 FALSE 1505338545 11801
+## 3453 TRUE 1 FALSE 1505338558 11801
+## 3454 TRUE 1 FALSE 1505338660 11801
+## 3455 TRUE 1 FALSE 1505338682 11801
+## 3456 FALSE 1 FALSE 1505338685 11801
+## 3457 TRUE 1 FALSE 1506125918 11801
+## 3458 TRUE 1 FALSE 1506132057 11801
+## 3459 TRUE 1 FALSE 1506126006 11801
+## 3460 TRUE 5 FALSE 1506125893 11801
+## 3461 TRUE 1 FALSE 1506126402 11801
+## 3462 TRUE 1 FALSE 1505338525 11801
+## 3463 <NA> NA NA NA 11801
+## 3464 TRUE 1 FALSE 15051 11801
+## 3465 TRUE 1 FALSE 1505338634 11801
+## 3466 TRUE 2 FALSE 1505337494 11801
+## 3467 TRUE 1 FALSE 1505335967 11801
+## 3468 <NA> NA NA NA 11801
+## 3469 FALSE 1 FALSE 1505336279 11801
+## 3470 <NA> NA NA NA 11801
+## 3471 TRUE 1 FALSE 1505173441 11801
+## 3472 TRUE 1 FALSE 1506132080 11801
+## 3473 TRUE 1 FALSE 1505338777 11801
+## 3474 TRUE 1 FALSE 1506126602 11801
+## 3475 TRUE 1 FALSE 1505336560 11801
+## 3476 TRUE 1 FALSE 1505338534 11801
+## 3477 TRUE 1 FALSE 1505306881 11801
+## 3478 TRUE 1 FALSE 1505338717 11801
+## 3479 TRUE 1 FALSE 1505338582 11801
+## 3480 FALSE 1 FALSE 1506125768 11801
+## 3481 TRUE 1 FALSE 1506132086 11801
+## 3482 TRUE 1 FALSE 1505338591 11801
+## 3483 TRUE 1 FALSE 1505338623 11801
+## 3484 TRUE 1 FALSE 1505335586 11801
+## 3485 TRUE 1 FALSE 1505336481 11801
+## 3486 TRUE 1 FALSE 1506126259 11801
+## 3487 TRUE 1 FALSE 1506132176 11801
+## 3488 TRUE 1 FALSE 1505337824 11801
+## 3489 TRUE 1 FALSE 1506132186 11801
+## 3490 TRUE 1 FALSE 1506126566 11801
+## 3491 TRUE 1 FALSE 1505336262 11801
+## 3492 FALSE 1 FALSE 1506025202 11801
+## 3493 TRUE 1 FALSE 1506132471 11801
+## 3494 FALSE 2 FALSE 1506125788 11801
+## 3495 TRUE 1 FALSE 1505338753 11801
+## 3496 TRUE 1 FALSE 1506133638 11801
+## 3497 TRUE 1 FALSE 1505338627 11801
+## 3498 FALSE 4 FALSE 1506125867 11801
+## 3499 TRUE 1 FALSE 1506132109 11801
+## 3500 TRUE 1 FALSE 1505336521 11801
+## 3501 TRUE 1 FALSE 1506117792 11801
+## 3502 <NA> NA NA NA 11801
+## 3503 TRUE 1 FALSE 1505306822 11801
+## 3504 TRUE 1 FALSE 1506132328 11801
+## 3505 TRUE 1 FALSE 1506132457 11801
+## 3506 TRUE 1 FALSE 1505337366 11801
+## 3507 TRUE 1 FALSE 1505337371 11801
+## 3508 FALSE 1 FALSE 1505337458 11801
+## 3509 TRUE 1 FALSE 1505337535 11801
+## 3510 TRUE 1 FALSE 1505335469 11801
+## 3511 TRUE 1 FALSE 1505335489 11801
+## 3512 TRUE 1 FALSE 1505336518 11801
+## 3513 TRUE 1 FALSE 1506117770 11801
+## 3514 TRUE 1 FALSE 1505337749 11801
+## 3515 TRUE 1 FALSE 1505334705 11801
+## 3516 FALSE 1 FALSE 1505334946 11801
+## 3517 TRUE 1 FALSE 1505306754 11801
+## 3518 TRUE 1 FALSE 1506180109 11801
+## 3519 TRUE 1 FALSE 1505172619 11801
+## 3520 TRUE 2 FALSE 1506025214 11801
+## 3521 TRUE 1 FALSE 1506125691 11801
+## 3522 TRUE 1 FALSE 1505336295 11801
+## 3523 TRUE 1 FALSE 1505336297 11801
+## 3524 FALSE 3 FALSE 1506125799 11801
+## 3525 TRUE 1 FALSE 1505173415 11801
+## 3526 TRUE 1 FALSE 1505337709 11801
+## 3527 TRUE 1 FALSE 1505336471 11801
+## 3528 TRUE 1 FALSE 1505306545 11801
+## 3529 TRUE 1 FALSE 1505306566 11801
+## 3530 TRUE 1 FALSE 1506180480 11801
+## 3531 TRUE 2 FALSE 1505334963 11801
+## 3532 TRUE 1 FALSE 1505334983 11801
+## 3533 TRUE 1 FALSE 1505334988 11801
+## 3534 TRUE 1 FALSE 1505335039 11801
+## 3535 TRUE 1 FALSE 1505338727 11801
+## 3536 TRUE 1 FALSE 1505335455 11801
+## 3537 TRUE 1 FALSE 1505336917 11801
+## 3538 TRUE 1 FALSE 1506131989 11801
+## 3539 TRUE 1 FALSE 1505336396 11801
+## 3540 TRUE 1 FALSE 1505335618 11801
+## 3541 TRUE 1 FALSE 1506117740 11801
+## 3542 TRUE 1 FALSE 1506117822 11801
+## 3543 TRUE 1 FALSE 1505335708 11801
+## 3544 TRUE 1 FALSE 1505335771 11801
+## 3545 TRUE 1 FALSE 1505335838 11801
+## 3546 TRUE 1 FALSE 1505335871 11801
+## 3547 TRUE 1 FALSE 1505335905 11801
+## 3548 TRUE 1 FALSE 1505337388 11801
+## 3549 TRUE 1 FALSE 1505306152 11801
+## 3550 TRUE 1 FALSE 1505337567 11801
+## 3551 TRUE 1 FALSE 1505336935 11801
+## 3552 TRUE 1 FALSE 1505335571 11801
+## 3553 TRUE 1 FALSE 1505337703 11801
+## 3554 TRUE 1 FALSE 1505306526 11801
+## 3555 TRUE 1 FALSE 1505306493 11801
+## 3556 TRUE 1 FALSE 1505336104 11801
+## 3557 TRUE 1 FALSE 1505336238 11801
+## 3558 TRUE 1 FALSE 1505336225 11801
+## 3559 TRUE 1 FALSE 1506180082 11801
+## 3560 TRUE 1 FALSE 1505172631 11801
+## 3561 TRUE 2 FALSE 1505336289 11801
+## 3562 TRUE 1 FALSE 1506025282 11801
+## 3563 TRUE 1 FALSE 1506025300 11801
+## 3564 <NA> 1 FALSE 1505336299 11801
+## 3565 TRUE 1 FALSE 1505336366 11801
+## 3566 TRUE 1 FALSE 1505173332 11801
+## 3567 TRUE 1 FALSE 1505173367 11801
+## 3568 TRUE 1 FALSE 1505173375 11801
+## 3569 <NA> 1 NA 1506180482 11801
+## 3570 TRUE 1 FALSE 1506180478 11801
+## 3571 TRUE 1 FALSE 1505337317 11801
+## 3572 TRUE 1 FALSE 1505337325 11801
+## 3573 TRUE 1 FALSE 1505336571 11801
+## 3574 TRUE 1 FALSE 1505336583 11801
+## 3575 TRUE 1 FALSE 1506133597 11801
+## 3576 TRUE 1 FALSE 1505336799 11801
+## 3577 TRUE 1 FALSE 1505306157 11801
+## 3578 TRUE 1 FALSE 1505306169 11801
+## 3579 TRUE 1 FALSE 1505336974 11801
+## 3580 TRUE 1 FALSE 1505336998 11801
+## 3581 TRUE 1 FALSE 1505335669 11801
+## 3582 TRUE 1 FALSE 1505335679 11801
+## 3583 TRUE 1 FALSE 1505337298 11801
+## 3584 TRUE 1 FALSE 1505336140 11801
+## 3585 TRUE 1 FALSE 1506180068 11801
+## 3586 TRUE 1 FALSE 1505337344 11801
+## 3587 TRUE 1 FALSE 1505337355 11801
+## 3588 TRUE 1 FALSE 1505306128 11801
+## 3589 TRUE 1 FALSE 1505335979 11801
+## 3590 TRUE 1 FALSE 1505172981 11801
+## 3591 <NA> NA NA NA 11801
+## 3592 TRUE 1 FALSE 1505337594 11801
+## 3593 TRUE 1 FALSE 1505337629 11801
+## 3594 TRUE 1 FALSE 1505337652 11801
+## 3595 TRUE 1 FALSE 1505306457 11801
+## 3596 TRUE 1 FALSE 1506180049 11801
+## 3597 TRUE 1 FALSE 1506180010 11801
+## 3598 TRUE 1 FALSE 1506180054 11801
+## 3599 TRUE 1 FALSE 1506025006 11801
+## 3600 TRUE 1 FALSE 1506025063 11801
+## 3601 TRUE 1 FALSE 1505172637 11801
+## 3602 TRUE 1 FALSE 1506180242 11801
+## 3603 TRUE 1 FALSE 1505306138 11801
+## 3604 TRUE 1 FALSE 1506025126 11801
+## 3605 TRUE 1 FALSE 1505173282 11801
+## 3606 TRUE 1 FALSE 1505173268 11801
+## 3607 TRUE 1 FALSE 1506117575 11801
+## 3608 TRUE 1 FALSE 1506117593 11801
+## 3609 TRUE 1 FALSE 1506117695 11801
+## 3610 TRUE 1 FALSE 1506180438 11801
+## 3611 FALSE 1 FALSE 1506024935 11801
+## 3612 TRUE 1 FALSE 1506024983 11801
+## 3613 TRUE 1 FALSE 1506024969 11801
+## 3614 TRUE 1 FALSE 1506025029 11801
+## 3615 TRUE 1 FALSE 1505336612 11801
+## 3616 TRUE 1 FALSE 1505172367 11801
+## 3617 TRUE 1 FALSE 1505337038 11801
+## 3618 TRUE 1 FALSE 1505336012 11801
+## 3619 TRUE 1 FALSE 1505306207 11801
+## 3620 TRUE 1 FALSE 1505306305 11801
+## 3621 TRUE 1 FALSE 1506180033 11801
+## 3622 <NA> NA NA NA 11801
+## 3623 TRUE 1 FALSE 1505336064 11801
+## 3624 TRUE 1 FALSE 1506180416 11801
+## 3625 TRUE 1 FALSE 1506025047 11801
+## 3626 TRUE 2 FALSE 1506024960 11801
+## 3627 TRUE 1 FALSE 1505173232 11801
+## 3628 TRUE 1 FALSE 1506025100 11801
+## 3629 TRUE 1 FALSE 1506117520 11801
+## 3630 TRUE 1 FALSE 1505306372 11801
+## 3631 TRUE 1 FALSE 1505336097 11801
+## 3632 TRUE 1 FALSE 1505173242 11801
+## 3633 TRUE 2 FALSE 1506179983 11801
+## 3634 TRUE 1 FALSE 1506117457 11801
+## 3635 TRUE 1 FALSE 1506117534 11801
+## 3636 TRUE 1 FALSE 1506180283 11801
+## 3637 TRUE 1 FALSE 1506025149 11801
+## 3638 TRUE 1 FALSE 1506180263 11801
+## 3639 TRUE 1 FALSE 1505172601 11801
+## 3640 TRUE 1 FALSE 1506117564 11801
+## 3641 TRUE 1 FALSE 1505336031 11801
+## 3642 TRUE 1 FALSE 1506117435 11801
+## 3643 FALSE 1 FALSE 1506179968 11801
+## 3644 TRUE 1 FALSE 1506117446 11801
+## 3645 TRUE 1 FALSE 1505351615 75323
+## 3646 TRUE 1 FALSE 1505353246 75323
+## 3647 <NA> NA NA NA 75323
+## 3648 TRUE 1 FALSE 1505351276 75323
+## 3649 TRUE 1 FALSE 1505352999 75323
+## 3650 TRUE 1 FALSE 1505353299 75323
+## 3651 TRUE 1 FALSE 1505351291 75323
+## 3652 FALSE 1 FALSE 1505351353 75323
+## 3653 TRUE 1 FALSE 1505351931 75323
+## 3654 TRUE 1 FALSE 1505352944 75323
+## 3655 TRUE 1 FALSE 1505352898 75323
+## 3656 TRUE 1 FALSE 1505353220 75323
+## 3657 TRUE 1 FALSE 1505353380 75323
+## 3658 TRUE 1 FALSE 1505352959 75323
+## 3659 TRUE 1 FALSE 1505351945 75323
+## 3660 TRUE 1 FALSE 1505351495 75323
+## 3661 TRUE 2 FALSE 1505351364 75323
+## 3662 TRUE 1 FALSE 1505352922 75323
+## 3663 TRUE 1 FALSE 1505352907 75323
+## 3664 TRUE 1 FALSE 1499717174 27264
+## 3665 TRUE 1 FALSE 1499717162 27264
+## 3666 TRUE 2 FALSE 1499717772 27264
+## 3667 TRUE 1 FALSE 1499717426 27264
+## 3668 TRUE 1 FALSE 1499972100 27264
+## 3669 TRUE 1 FALSE 1499972111 27264
+## 3670 TRUE 1 FALSE 1499972192 27264
+## 3671 TRUE 1 FALSE 1499972248 27264
+## 3672 TRUE 1 FALSE 1499972334 27264
+## 3673 TRUE 1 FALSE 1499717448 27264
+## 3674 TRUE 1 FALSE 1499717503 27264
+## 3675 TRUE 1 FALSE 1499717569 27264
+## 3676 TRUE 1 FALSE 1499717575 27264
+## 3677 TRUE 1 FALSE 1499717635 27264
+## 3678 FALSE 1 FALSE 1499717699 27264
+## 3679 TRUE 1 FALSE 1499972952 27264
+## 3680 TRUE 1 FALSE 1499973007 27264
+## 3681 TRUE 1 FALSE 1499717894 27264
+## 3682 TRUE 1 FALSE 1499717971 27264
+## 3683 TRUE 1 FALSE 1499718035 27264
+## 3684 TRUE 1 FALSE 1499718040 27264
+## 3685 <NA> 1 NA 1499718068 27264
+## 3686 TRUE 1 FALSE 1499972580 27264
+## 3687 TRUE 1 FALSE 1499972591 27264
+## 3688 TRUE 1 FALSE 1499972689 27264
+## 3689 TRUE 1 FALSE 1499972855 27264
+## 3690 TRUE 1 FALSE 1499972894 27264
+## 3691 TRUE 1 FALSE 1499972928 27264
+## 3692 TRUE 1 FALSE 1499975281 27264
+## 3693 TRUE 1 FALSE 1499975358 27264
+## 3694 TRUE 1 FALSE 1499975367 27264
+## 3695 TRUE 1 FALSE 1499975403 27264
+## 3696 TRUE 1 FALSE 1499975514 27264
+## 3697 TRUE 1 FALSE 1499975517 27264
+## 3698 <NA> 1 FALSE 1499975519 27264
+## 3699 TRUE 1 FALSE 1500128995 27264
+## 3700 TRUE 1 FALSE 1500129038 27264
+## 3701 TRUE 1 FALSE 1500129051 27264
+## 3702 TRUE 1 FALSE 1500129078 27264
+## 3703 TRUE 1 FALSE 1500129100 27264
+## 3704 TRUE 1 FALSE 1500129114 27264
+## 3705 TRUE 1 FALSE 1500129123 27264
+## 3706 TRUE 1 FALSE 1500129169 27264
+## 3707 TRUE 1 FALSE 1500129290 27264
+## 3708 TRUE 1 FALSE 1499973011 27264
+## 3709 <NA> 1 NA 1499973016 27264
+## 3710 TRUE 1 FALSE 1499973169 27264
+## 3711 TRUE 1 FALSE 1499973203 27264
+## 3712 FALSE 1 FALSE 1499973363 27264
+## 3713 TRUE 2 FALSE 1499973595 27264
+## 3714 TRUE 1 FALSE 1499973678 27264
+## 3715 TRUE 1 FALSE 1499973705 27264
+## 3716 TRUE 1 FALSE 1499973708 27264
+## 3717 FALSE 1 FALSE 1499973791 27264
+## 3718 TRUE 2 FALSE 1499973957 27264
+## 3719 TRUE 1 FALSE 1499974030 27264
+## 3720 TRUE 1 FALSE 1499974053 27264
+## 3721 TRUE 1 FALSE 1499974112 27264
+## 3722 TRUE 1 FALSE 1499974474 27264
+## 3723 TRUE 1 FALSE 1499974710 27264
+## 3724 TRUE 1 FALSE 1499974780 27264
+## 3725 TRUE 1 FALSE 1499974854 27264
+## 3726 TRUE 1 FALSE 1499974945 27264
+## 3727 TRUE 1 FALSE 1499975006 27264
+## 3728 TRUE 1 FALSE 1499975017 27264
+## 3729 TRUE 1 FALSE 1499975156 27264
+## 3730 TRUE 1 FALSE 1499975203 27264
+## 3731 TRUE 1 FALSE 1499975246 27264
+## 3732 TRUE 1 FALSE 1500131026 27264
+## 3733 TRUE 1 FALSE 1500131030 27264
+## 3734 <NA> 1 NA 1500131034 27264
+## 3735 TRUE 1 FALSE 1500476968 27264
+## 3736 TRUE 1 FALSE 1500476979 27264
+## 3737 TRUE 1 FALSE 1500476995 27264
+## 3738 TRUE 1 FALSE 1500477044 27264
+## 3739 TRUE 1 FALSE 1500477117 27264
+## 3740 TRUE 1 FALSE 1500477134 27264
+## 3741 TRUE 1 FALSE 1500477181 27264
+## 3742 TRUE 1 FALSE 1500477186 27264
+## 3743 TRUE 1 FALSE 1500477196 27264
+## 3744 TRUE 1 FALSE 1500477283 27264
+## 3745 TRUE 1 FALSE 1500477385 27264
+## 3746 TRUE 1 FALSE 1500477400 27264
+## 3747 TRUE 1 FALSE 1500477405 27264
+## 3748 TRUE 1 FALSE 1500477428 27264
+## 3749 TRUE 1 FALSE 1500477470 27264
+## 3750 TRUE 1 FALSE 1500477491 27264
+## 3751 TRUE 1 FALSE 1500477553 27264
+## 3752 TRUE 1 FALSE 1500477576 27264
+## 3753 TRUE 1 FALSE 1500477597 27264
+## 3754 TRUE 1 FALSE 1500477666 27264
+## 3755 TRUE 1 FALSE 1500477854 27264
+## 3756 TRUE 1 FALSE 1500477859 27264
+## 3757 TRUE 1 FALSE 1500477962 27264
+## 3758 TRUE 1 FALSE 1500478001 27264
+## 3759 TRUE 1 FALSE 1500478026 27264
+## 3760 TRUE 1 FALSE 1500478108 27264
+## 3761 TRUE 1 FALSE 1500478133 27264
+## 3762 TRUE 1 FALSE 1500478135 27264
+## 3763 <NA> 1 NA 1500478136 27264
+## 3764 TRUE 1 FALSE 1500687956 27264
+## 3765 FALSE 1 FALSE 1500688032 27264
+## 3766 TRUE 2 FALSE 1500688097 27264
+## 3767 TRUE 1 FALSE 1500688406 27264
+## 3768 TRUE 1 FALSE 1500688459 27264
+## 3769 TRUE 1 FALSE 1500688504 27264
+## 3770 TRUE 1 FALSE 1500688816 27264
+## 3771 TRUE 1 FALSE 1500689032 27264
+## 3772 FALSE 1 FALSE 1500689469 27264
+## 3773 FALSE 2 FALSE 1500689552 27264
+## 3774 TRUE 3 FALSE 1500689728 27264
+## 3775 TRUE 1 FALSE 1500689798 27264
+## 3776 TRUE 1 FALSE 1500689859 27264
+## 3777 TRUE 1 FALSE 1500689959 27264
+## 3778 TRUE 1 FALSE 1500690029 27264
+## 3779 TRUE 1 FALSE 1500690068 27264
+## 3780 TRUE 1 FALSE 1500690409 27264
+## 3781 TRUE 1 FALSE 1500690564 27264
+## 3782 TRUE 1 FALSE 1500690755 27264
+## 3783 FALSE 1 FALSE 1500691109 27264
+## 3784 TRUE 2 FALSE 1500691825 27264
+## 3785 FALSE 1 FALSE 1500691877 27264
+## 3786 TRUE 2 FALSE 1500692069 27264
+## 3787 TRUE 1 FALSE 1500692193 27264
+## 3788 TRUE 1 FALSE 1500692275 27264
+## 3789 TRUE 1 FALSE 1500692671 27264
+## 3790 TRUE 1 FALSE 1500692745 27264
+## 3791 FALSE 1 FALSE 1500693510 27264
+## 3792 FALSE 2 FALSE 1500693772 27264
+## 3793 FALSE 3 FALSE 1500693951 27264
+## 3794 TRUE 4 FALSE 1500694004 27264
+## 3795 TRUE 1 FALSE 1500694208 27264
+## 3796 FALSE 1 FALSE 1500694466 27264
+## 3797 FALSE 2 FALSE 1500694637 27264
+## 3798 TRUE 3 FALSE 1500694841 27264
+## 3799 TRUE 1 FALSE 1500695054 27264
+## 3800 TRUE 1 FALSE 1500695062 27264
+## 3801 TRUE 1 FALSE 1500695069 27264
+## 3802 <NA> 1 NA 1500695072 27264
+## 3803 FALSE 1 FALSE 1500731180 27264
+## 3804 TRUE 2 FALSE 1500731293 27264
+## 3805 TRUE 1 FALSE 1500731315 27264
+## 3806 TRUE 1 FALSE 1500731332 27264
+## 3807 TRUE 1 FALSE 1500731351 27264
+## 3808 TRUE 1 FALSE 1500731380 27264
+## 3809 TRUE 1 FALSE 1500731409 27264
+## 3810 TRUE 1 FALSE 1500731428 27264
+## 3811 TRUE 1 FALSE 1500731474 27264
+## 3812 TRUE 1 FALSE 1500731489 27264
+## 3813 TRUE 1 FALSE 1500731587 27264
+## 3814 TRUE 1 FALSE 1500731709 27264
+## 3815 TRUE 1 FALSE 1500731829 27264
+## 3816 TRUE 1 FALSE 1500731862 27264
+## 3817 TRUE 1 FALSE 1500731929 27264
+## 3818 TRUE 1 FALSE 1500731967 27264
+## 3819 TRUE 1 FALSE 1500732030 27264
+## 3820 TRUE 1 FALSE 1500732036 27264
+## 3821 TRUE 1 FALSE 1500732124 27264
+## 3822 TRUE 1 FALSE 1500732222 27264
+## 3823 FALSE 1 FALSE 1500732436 27264
+## 3824 TRUE 2 FALSE 1500732498 27264
+## 3825 TRUE 1 FALSE 1500732632 27264
+## 3826 TRUE 1 FALSE 1500732647 27264
+## 3827 TRUE 1 FALSE 1500732650 27264
+## 3828 <NA> 1 NA 1500732652 27264
+## 3829 TRUE 1 FALSE 1500129334 27264
+## 3830 TRUE 1 FALSE 1500129354 27264
+## 3831 TRUE 1 FALSE 1500129395 27264
+## 3832 TRUE 1 FALSE 1500129464 27264
+## 3833 TRUE 1 FALSE 1500129490 27264
+## 3834 TRUE 1 FALSE 1500129597 27264
+## 3835 TRUE 1 FALSE 1500129616 27264
+## 3836 TRUE 1 FALSE 1500129725 27264
+## 3837 TRUE 1 FALSE 1500129804 27264
+## 3838 TRUE 1 FALSE 1500129878 27264
+## 3839 TRUE 1 FALSE 1500129924 27264
+## 3840 TRUE 1 FALSE 1500129972 27264
+## 3841 TRUE 1 FALSE 1500130016 27264
+## 3842 TRUE 1 FALSE 1500130040 27264
+## 3843 TRUE 1 FALSE 1500130142 27264
+## 3844 TRUE 1 FALSE 1500130260 27264
+## 3845 TRUE 1 FALSE 1500130309 27264
+## 3846 TRUE 1 FALSE 1500130314 27264
+## 3847 TRUE 1 FALSE 1500130405 27264
+## 3848 TRUE 1 FALSE 1500130833 27264
+## 3849 TRUE 1 FALSE 1500130880 27264
+## 3850 TRUE 1 FALSE 1500130938 27264
+## 3851 TRUE 1 FALSE 1500130952 27264
+## 3852 TRUE 1 FALSE 1500131012 27264
+## 3853 FALSE 1 FALSE 1499716689 27264
+## 3854 TRUE 2 FALSE 1499716767 27264
+## 3855 TRUE 1 FALSE 1499716848 27264
+## 3856 FALSE 1 FALSE 1499716876 27264
+## 3857 TRUE 2 FALSE 1499716944 27264
+## 3858 TRUE 1 FALSE 1499716958 27264
+## 3859 TRUE 1 FALSE 1499716989 27264
+## 3860 TRUE 1 FALSE 1499717154 27264
+## 3861 TRUE 1 FALSE 1500996298 27264
+## 3862 FALSE 1 FALSE 1500996339 27264
+## 3863 TRUE 2 FALSE 1500996449 27264
+## 3864 TRUE 1 FALSE 1500997090 27264
+## 3865 TRUE 1 FALSE 1500997234 27264
+## 3866 TRUE 1 FALSE 1500998294 27264
+## 3867 TRUE 1 FALSE 1500998391 27264
+## 3868 FALSE 1 FALSE 1500998788 27264
+## 3869 TRUE 2 FALSE 1500998924 27264
+## 3870 TRUE 1 FALSE 1500999208 27264
+## 3871 TRUE 1 FALSE 1500999223 27264
+## 3872 TRUE 1 FALSE 1500999734 27264
+## 3873 TRUE 1 FALSE 1500999780 27264
+## 3874 TRUE 1 FALSE 1500999825 27264
+## 3875 TRUE 1 FALSE 1500999954 27264
+## 3876 TRUE 1 FALSE 1501000263 27264
+## 3877 TRUE 1 FALSE 1501000273 27264
+## 3878 TRUE 1 FALSE 1501000278 27264
+## 3879 TRUE 1 FALSE 1501000285 27264
+## 3880 TRUE 1 FALSE 1501000297 27264
+## 3881 TRUE 1 FALSE 1501000371 27264
+## 3882 TRUE 1 FALSE 1501000392 27264
+## 3883 TRUE 1 FALSE 1501000395 27264
+## 3884 <NA> 1 NA 1501000397 27264
+## 3885 TRUE 1 FALSE 1501379160 27264
+## 3886 TRUE 1 FALSE 1501379178 27264
+## 3887 TRUE 1 FALSE 1501379189 27264
+## 3888 TRUE 1 FALSE 1501379227 27264
+## 3889 TRUE 1 FALSE 1501379247 27264
+## 3890 FALSE 1 FALSE 1501379324 27264
+## 3891 FALSE 2 FALSE 1501379331 27264
+## 3892 TRUE 3 FALSE 1501379391 27264
+## 3893 TRUE 1 FALSE 1501379410 27264
+## 3894 TRUE 1 FALSE 1501379443 27264
+## 3895 TRUE 1 FALSE 1501379606 27264
+## 3896 TRUE 1 FALSE 1501379647 27264
+## 3897 TRUE 1 FALSE 1501379724 27264
+## 3898 TRUE 1 FALSE 1501379750 27264
+## 3899 TRUE 1 FALSE 1501379780 27264
+## 3900 TRUE 1 FALSE 1501379796 27264
+## 3901 TRUE 1 FALSE 1501379817 27264
+## 3902 TRUE 1 FALSE 1501379856 27264
+## 3903 TRUE 1 FALSE 1501379928 27264
+## 3904 TRUE 1 FALSE 1501379958 27264
+## 3905 TRUE 1 FALSE 1501380037 27264
+## 3906 TRUE 1 FALSE 1501380125 27264
+## 3907 TRUE 1 FALSE 1501380153 27264
+## 3908 TRUE 1 FALSE 1501380212 27264
+## 3909 TRUE 1 FALSE 1501380280 27264
+## 3910 FALSE 1 FALSE 1501380333 27264
+## 3911 TRUE 2 FALSE 1501380424 27264
+## 3912 TRUE 1 FALSE 1501380520 27264
+## 3913 TRUE 1 FALSE 1501380543 27264
+## 3914 TRUE 1 FALSE 1501380667 27264
+## 3915 TRUE 1 FALSE 1501380759 27264
+## 3916 TRUE 1 FALSE 1501380819 27264
+## 3917 TRUE 1 FALSE 1501380858 27264
+## 3918 TRUE 1 FALSE 1501380905 27264
+## 3919 TRUE 1 FALSE 1501380950 27264
+## 3920 TRUE 1 FALSE 1501381011 27264
+## 3921 TRUE 1 FALSE 1501381017 27264
+## 3922 TRUE 1 FALSE 1501381258 27264
+## 3923 TRUE 1 FALSE 1501381398 27264
+## 3924 TRUE 1 FALSE 1501381500 27264
+## 3925 TRUE 1 FALSE 1501381573 27264
+## 3926 TRUE 1 FALSE 1501381652 27264
+## 3927 TRUE 1 FALSE 1501381657 27264
+## 3928 <NA> 1 NA 1501381663 27264
+## 3929 TRUE 1 FALSE 1504671231 27264
+## 3930 TRUE 1 FALSE 1504671286 27264
+## 3931 TRUE 1 FALSE 1504671411 27264
+## 3932 FALSE 1 FALSE 1504671434 27264
+## 3933 FALSE 2 FALSE 1504671452 27264
+## 3934 TRUE 3 FALSE 1504671477 27264
+## 3935 TRUE 1 FALSE 1504671506 27264
+## 3936 TRUE 1 FALSE 1504671568 27264
+## 3937 TRUE 1 FALSE 1504671587 27264
+## 3938 TRUE 1 FALSE 1504671590 27264
+## 3939 <NA> 1 FALSE 1504671593 27264
+## 3940 TRUE 2 FALSE 1504204701 27264
+## 3941 TRUE 1 FALSE 1504204710 27264
+## 3942 TRUE 1 FALSE 1504204995 27264
+## 3943 TRUE 1 FALSE 1504205194 27264
+## 3944 TRUE 1 FALSE 1504205289 27264
+## 3945 TRUE 1 FALSE 1504205316 27264
+## 3946 TRUE 1 FALSE 1504205407 27264
+## 3947 FALSE 1 FALSE 1504205481 27264
+## 3948 FALSE 2 FALSE 1504205531 27264
+## 3949 TRUE 3 FALSE 1504205605 27264
+## 3950 TRUE 1 FALSE 1504205672 27264
+## 3951 TRUE 1 FALSE 1504205735 27264
+## 3952 TRUE 1 FALSE 1504205767 27264
+## 3953 TRUE 1 FALSE 1504205772 27264
+## 3954 <NA> 1 NA 1504205774 27264
+## 3955 FALSE 1 FALSE 1504655917 27264
+## 3956 TRUE 2 FALSE 1504655935 27264
+## 3957 TRUE 1 FALSE 1504656031 27264
+## 3958 TRUE 1 FALSE 1504656063 27264
+## 3959 TRUE 1 FALSE 1504202427 27264
+## 3960 TRUE 1 FALSE 1504202466 27264
+## 3961 TRUE 1 FALSE 1504202479 27264
+## 3962 TRUE 1 FALSE 1504202525 27264
+## 3963 TRUE 1 FALSE 1504202583 27264
+## 3964 TRUE 1 FALSE 1504202866 27264
+## 3965 TRUE 1 FALSE 1504203036 27264
+## 3966 TRUE 1 FALSE 1504203271 27264
+## 3967 TRUE 1 FALSE 1504203642 27264
+## 3968 TRUE 1 FALSE 1504203657 27264
+## 3969 TRUE 1 FALSE 1504203861 27264
+## 3970 TRUE 1 FALSE 1504204016 27264
+## 3971 TRUE 1 FALSE 1504204038 27264
+## 3972 TRUE 1 FALSE 1504204102 27264
+## 3973 FALSE 1 FALSE 1504204190 27264
+## 3974 TRUE 2 FALSE 1504204283 27264
+## 3975 TRUE 1 FALSE 1504204310 27264
+## 3976 TRUE 1 FALSE 1504204534 27264
+## 3977 TRUE 1 FALSE 1504204571 27264
+## 3978 TRUE 1 FALSE 1504204584 27264
+## 3979 FALSE 1 FALSE 1504204647 27264
+## 3980 TRUE 1 FALSE 1504657836 27264
+## 3981 TRUE 1 FALSE 1504657907 27264
+## 3982 FALSE 1 FALSE 1504667461 27264
+## 3983 TRUE 2 FALSE 1504667739 27264
+## 3984 TRUE 1 FALSE 1504667788 27264
+## 3985 FALSE 1 FALSE 1504667871 27264
+## 3986 TRUE 2 FALSE 1504667886 27264
+## 3987 TRUE 1 FALSE 1504668069 27264
+## 3988 TRUE 1 FALSE 1504668171 27264
+## 3989 TRUE 1 FALSE 1504668224 27264
+## 3990 TRUE 1 FALSE 1504668276 27264
+## 3991 TRUE 1 FALSE 1504668293 27264
+## 3992 TRUE 1 FALSE 1504668381 27264
+## 3993 TRUE 1 FALSE 1504668407 27264
+## 3994 TRUE 1 FALSE 1504668468 27264
+## 3995 TRUE 1 FALSE 1504668477 27264
+## 3996 TRUE 1 FALSE 1504668519 27264
+## 3997 TRUE 1 FALSE 1504669284 27264
+## 3998 FALSE 1 FALSE 1504669455 27264
+## 3999 TRUE 1 FALSE 1504656091 27264
+## 4000 TRUE 1 FALSE 1504656101 27264
+## 4001 TRUE 1 FALSE 1504656116 27264
+## 4002 TRUE 1 FALSE 1504656134 27264
+## 4003 TRUE 1 FALSE 1504656217 27264
+## 4004 TRUE 1 FALSE 1504656301 27264
+## 4005 TRUE 1 FALSE 1504656312 27264
+## 4006 TRUE 1 FALSE 1504656351 27264
+## 4007 FALSE 1 FALSE 1504656539 27264
+## 4008 TRUE 2 FALSE 1504656553 27264
+## 4009 TRUE 1 FALSE 1504656625 27264
+## 4010 TRUE 1 FALSE 1504656666 27264
+## 4011 TRUE 1 FALSE 1504656670 27264
+## 4012 <NA> 1 NA 1504656671 27264
+## 4013 TRUE 1 FALSE 1504657001 27264
+## 4014 TRUE 1 FALSE 1504657135 27264
+## 4015 TRUE 1 FALSE 1504657234 27264
+## 4016 TRUE 1 FALSE 1504657368 27264
+## 4017 TRUE 1 FALSE 1504657393 27264
+## 4018 TRUE 1 FALSE 1504657447 27264
+## 4019 TRUE 1 FALSE 1504657629 27264
+## 4020 TRUE 1 FALSE 1505189928 27264
+## 4021 TRUE 1 FALSE 1505190286 27264
+## 4022 TRUE 1 FALSE 1505190367 27264
+## 4023 TRUE 1 FALSE 1505190510 27264
+## 4024 TRUE 1 FALSE 1505190519 27264
+## 4025 TRUE 1 FALSE 1505190562 27264
+## 4026 TRUE 1 FALSE 1505190714 27264
+## 4027 TRUE 1 FALSE 1505190811 27264
+## 4028 TRUE 1 FALSE 1505191100 27264
+## 4029 TRUE 1 FALSE 1505191186 27264
+## 4030 TRUE 1 FALSE 1505191247 27264
+## 4031 TRUE 1 FALSE 1505191383 27264
+## 4032 TRUE 1 FALSE 1505191449 27264
+## 4033 TRUE 1 FALSE 1505191495 27264
+## 4034 TRUE 1 FALSE 1505191530 27264
+## 4035 TRUE 1 FALSE 1505191630 27264
+## 4036 FALSE 1 FALSE 1505191745 27264
+## 4037 TRUE 2 FALSE 1505191836 27264
+## 4038 TRUE 1 FALSE 1505191902 27264
+## 4039 TRUE 2 FALSE 1504669498 27264
+## 4040 TRUE 1 FALSE 1504669528 27264
+## 4041 FALSE 1 FALSE 1504669695 27264
+## 4042 TRUE 2 FALSE 1504669765 27264
+## 4043 TRUE 1 FALSE 1504670157 27264
+## 4044 TRUE 1 FALSE 1504670312 27264
+## 4045 TRUE 1 FALSE 1504670366 27264
+## 4046 TRUE 1 FALSE 1504670600 27264
+## 4047 TRUE 1 FALSE 1504670789 27264
+## 4048 TRUE 1 FALSE 1504671104 27264
+## 4049 TRUE 1 FALSE 1504671170 27264
+## 4050 TRUE 1 FALSE 1505193537 27264
+## 4051 TRUE 1 FALSE 1505188765 27264
+## 4052 FALSE 1 FALSE 1505188889 27264
+## 4053 TRUE 2 FALSE 1505188931 27264
+## 4054 TRUE 1 FALSE 1505189040 27264
+## 4055 FALSE 1 FALSE 1505189160 27264
+## 4056 FALSE 2 FALSE 1505189312 27264
+## 4057 TRUE 3 FALSE 1505189736 27264
+## 4058 FALSE 1 FALSE 1505189866 27264
+## 4059 TRUE 2 FALSE 1505189897 27264
+## 4060 TRUE 1 FALSE 1505193043 27264
+## 4061 TRUE 1 FALSE 1505193213 27264
+## 4062 TRUE 1 FALSE 1505193226 27264
+## 4063 TRUE 1 FALSE 1505193419 27264
+## 4064 TRUE 1 FALSE 1505192603 27264
+## 4065 TRUE 1 FALSE 1505193591 27264
+## 4066 FALSE 1 FALSE 1505192510 27264
+## 4067 TRUE 2 FALSE 1505192527 27264
+## 4068 TRUE 1 FALSE 1505192927 27264
+## 4069 TRUE 1 FALSE 1505192627 27264
+## 4070 TRUE 1 FALSE 1505192649 27264
+## 4071 TRUE 1 FALSE 1505192694 27264
+## 4072 TRUE 1 FALSE 1505193703 27264
+## 4073 TRUE 1 FALSE 1505193726 27264
+## 4074 TRUE 1 FALSE 1505193796 27264
+## 4075 TRUE 1 FALSE 1505193664 27264
+## 4076 <NA> 1 NA 1505193802 27264
+## 4077 TRUE 1 FALSE 1505193799 27264
+## 4078 TRUE 1 FALSE 1505070029 94880
+## 4079 TRUE 1 FALSE 1505069987 94880
+## 4080 TRUE 1 FALSE 1505078720 94880
+## 4081 TRUE 1 FALSE 1505081631 94880
+## 4082 TRUE 5 FALSE 1505079604 94880
+## 4083 TRUE 1 FALSE 1505070016 94880
+## 4084 TRUE 1 TRUE 1505082035 94880
+## 4085 TRUE 1 FALSE 1505078732 94880
+## 4086 TRUE 1 FALSE 1505069985 94880
+## 4087 FALSE 4 FALSE 1505079562 94880
+## 4088 FALSE 3 FALSE 1505079542 94880
+## 4089 FALSE 2 FALSE 1505079428 94880
+## 4090 TRUE 1 FALSE 1505081610 94880
+## 4091 TRUE 1 FALSE 1505069958 94880
+## 4092 TRUE 1 FALSE 1505070038 94880
+## 4093 FALSE 1 FALSE 1505070724 94880
+## 4094 TRUE 1 FALSE 1505078743 94880
+## 4095 TRUE 1 FALSE 1505077243 94880
+## 4096 TRUE 1 FALSE 1505069954 94880
+## 4097 TRUE 1 FALSE 1505079704 94880
+## 4098 TRUE 1 FALSE 1505077218 94880
+## 4099 TRUE 2 FALSE 1505072942 94880
+## 4100 TRUE 2 FALSE 1505070661 94880
+## 4101 FALSE 3 FALSE 1505080273 94880
+## 4102 <NA> 1 FALSE 1505079705 94880
+## 4103 TRUE 1 FALSE 1505077225 94880
+## 4104 TRUE 1 FALSE 1505079013 94880
+## 4105 TRUE 2 FALSE 1505072811 94880
+## 4106 FALSE 4 FALSE 1505080292 94880
+## 4107 TRUE 1 FALSE 1505077202 94880
+## 4108 FALSE 1 FALSE 1505070650 94880
+## 4109 TRUE 2 FALSE 1505081596 94880
+## 4110 FALSE 3 FALSE 1505080619 94880
+## 4111 TRUE 2 FALSE 1505070741 94880
+## 4112 FALSE 1 FALSE 1505072791 94880
+## 4113 TRUE 1 FALSE 1505070620 94880
+## 4114 TRUE 1 FALSE 1505076206 94880
+## 4115 TRUE 4 TRUE 1505080714 94880
+## 4116 TRUE 1 FALSE 1505077200 94880
+## 4117 TRUE 1 FALSE 1505079647 94880
+## 4118 TRUE 1 FALSE 1505079657 94880
+## 4119 TRUE 1 FALSE 1505076210 94880
+## 4120 TRUE 1 FALSE 1505079644 94880
+## 4121 FALSE 1 FALSE 1505072904 94880
+## 4122 TRUE 1 FALSE 1505079702 94880
+## 4123 TRUE 1 FALSE 1505069929 94880
+## 4124 TRUE 2 FALSE 1505077179 94880
+## 4125 TRUE 1 FALSE 1505077187 94880
+## 4126 TRUE 1 FALSE 1505070604 94880
+## 4127 FALSE 2 FALSE 1505079881 94880
+## 4128 TRUE 1 FALSE 1505078902 94880
+## 4129 TRUE 1 FALSE 1505078907 94880
+## 4130 TRUE 1 FALSE 1505078908 94880
+## 4131 <NA> 1 FALSE 1505078909 94880
+## 4132 TRUE 1 FALSE 1505072841 94880
+## 4133 TRUE 1 FALSE 1505072870 94880
+## 4134 TRUE 1 FALSE 1505078992 94880
+## 4135 FALSE 2 FALSE 1505080594 94880
+## 4136 TRUE 1 FALSE 1505077831 94880
+## 4137 TRUE 1 FALSE 1505077893 94880
+## 4138 TRUE 1 FALSE 1505077912 94880
+## 4139 TRUE 1 FALSE 1505079740 94880
+## 4140 TRUE 1 FALSE 1505076194 94880
+## 4141 TRUE 1 FALSE 1505078684 94880
+## 4142 TRUE 1 FALSE 1505078695 94880
+## 4143 TRUE 1 FALSE 1505078710 94880
+## 4144 TRUE 1 FALSE 1505082060 94880
+## 4145 TRUE 1 FALSE 1505079666 94880
+## 4146 TRUE 1 FALSE 1505079680 94880
+## 4147 TRUE 1 FALSE 1505079696 94880
+## 4148 FALSE 1 FALSE 1505081544 94880
+## 4149 TRUE 1 FALSE 1505070381 94880
+## 4150 <NA> 1 NA 1505070390 94880
+## 4151 <NA> 1 FALSE 1505078139 94880
+## 4152 TRUE 1 FALSE 1505080738 94880
+## 4153 TRUE 1 FALSE 1505079760 94880
+## 4154 FALSE 1 FALSE 1505079803 94880
+## 4155 TRUE 1 FALSE 1505076783 94880
+## 4156 TRUE 1 FALSE 1505076809 94880
+## 4157 TRUE 1 FALSE 1505076811 94880
+## 4158 TRUE 1 FALSE 1505077255 94880
+## 4159 FALSE 1 FALSE 1505077563 94880
+## 4160 TRUE 2 FALSE 1505077581 94880
+## 4161 TRUE 1 FALSE 1505077801 94880
+## 4162 TRUE 1 FALSE 1505070533 94880
+## 4163 TRUE 1 FALSE 1505070541 94880
+## 4164 TRUE 1 FALSE 1505070577 94880
+## 4165 TRUE 1 FALSE 1505070588 94880
+## 4166 FALSE 1 FALSE 1505079400 94880
+## 4167 TRUE 1 FALSE 1505078631 94880
+## 4168 TRUE 1 FALSE 1505079333 94880
+## 4169 TRUE 1 FALSE 1505078892 94880
+## 4170 TRUE 1 FALSE 1505073097 94880
+## 4171 TRUE 5 TRUE 1505080342 94880
+## 4172 TRUE 1 FALSE 1505078937 94880
+## 4173 TRUE 1 FALSE 1505078946 94880
+## 4174 TRUE 1 FALSE 1505078959 94880
+## 4175 TRUE 2 FALSE 1505078814 94880
+## 4176 TRUE 1 FALSE 1505078823 94880
+## 4177 TRUE 1 FALSE 1505078829 94880
+## 4178 TRUE 1 FALSE 1505078838 94880
+## 4179 TRUE 1 FALSE 1505078855 94880
+## 4180 TRUE 1 FALSE 1505078866 94880
+## 4181 TRUE 1 FALSE 1505078881 94880
+## 4182 TRUE 1 FALSE 1505081027 94880
+## 4183 TRUE 1 FALSE 1505081038 94880
+## 4184 TRUE 1 FALSE 1505076227 94880
+## 4185 TRUE 1 FALSE 1505076462 94880
+## 4186 TRUE 1 FALSE 1505076469 94880
+## 4187 FALSE 1 FALSE 1505078776 94880
+## 4188 FALSE 1 FALSE 1505073499 94880
+## 4189 TRUE 2 FALSE 1505073511 94880
+## 4190 TRUE 1 FALSE 1505073548 94880
+## 4191 TRUE 1 FALSE 1505073582 94880
+## 4192 TRUE 1 FALSE 1505073584 94880
+## 4193 <NA> 1 FALSE 1505073588 94880
+## 4194 TRUE 1 FALSE 1505078245 94880
+## 4195 TRUE 1 FALSE 1505079318 94880
+## 4196 TRUE 1 FALSE 1505076764 94880
+## 4197 TRUE 1 FALSE 1505073157 94880
+## 4198 TRUE 1 FALSE 1505073239 94880
+## 4199 TRUE 1 FALSE 1505073398 94880
+## 4200 TRUE 1 FALSE 1505073416 94880
+## 4201 TRUE 1 FALSE 1505078462 94880
+## 4202 TRUE 1 FALSE 1505081325 94880
+## 4203 FALSE 1 FALSE 1505081438 94880
+## 4204 TRUE 2 TRUE 1505081484 94880
+## 4205 TRUE 1 FALSE 1505078538 94880
+## 4206 TRUE 1 FALSE 1505078548 94880
+## 4207 TRUE 1 FALSE 1505076163 94880
+## 4208 TRUE 1 FALSE 1505076688 94880
+## 4209 TRUE 2 TRUE 1505081016 94880
+## 4210 TRUE 1 FALSE 1505070233 94880
+## 4211 TRUE 1 FALSE 1505070241 94880
+## 4212 TRUE 1 FALSE 1505070293 94880
+## 4213 TRUE 1 FALSE 1505070306 94880
+## 4214 TRUE 1 FALSE 1505076483 94880
+## 4215 TRUE 1 FALSE 1505076549 94880
+## 4216 TRUE 1 FALSE 1505076558 94880
+## 4217 TRUE 1 FALSE 1505076587 94880
+## 4218 TRUE 1 FALSE 1505076639 94880
+## 4219 TRUE 1 FALSE 1505076646 94880
+## 4220 TRUE 1 FALSE 1505076666 94880
+## 4221 FALSE 1 FALSE 1505080842 94880
+## 4222 TRUE 1 FALSE 1505070163 94880
+## 4223 TRUE 1 FALSE 1505077033 94880
+## 4224 TRUE 1 FALSE 1505077044 94880
+## 4225 TRUE 1 FALSE 1505081049 94880
+## 4226 TRUE 1 FALSE 1505078421 94880
+## 4227 TRUE 1 FALSE 1505080389 94880
+## 4228 TRUE 1 FALSE 1505080406 94880
+## 4229 FALSE 1 FALSE 1505080545 94880
+## 4230 TRUE 1 FALSE 1505076912 94880
+## 4231 FALSE 1 FALSE 1505076951 94880
+## 4232 TRUE 2 FALSE 1505076962 94880
+## 4233 TRUE 1 FALSE 1505076969 94880
+## 4234 TRUE 1 FALSE 1505079305 94880
+## 4235 TRUE 1 FALSE 1505078217 94880
+## 4236 TRUE 1 FALSE 1505070219 94880
+## 4237 TRUE 1 FALSE 1505073005 94880
+## 4238 TRUE 1 FALSE 1505077986 94880
+## 4239 TRUE 1 FALSE 1505078007 94880
+## 4240 TRUE 1 FALSE 1505078436 94880
+## 4241 TRUE 1 TRUE 1505081192 94880
+## 4242 TRUE 1 FALSE 1505078470 94880
+## 4243 TRUE 1 FALSE 1505078483 94880
+## 4244 TRUE 1 FALSE 1505078527 94880
+## 4245 FALSE 1 FALSE 1505077167 94880
+## 4246 TRUE 1 FALSE 1505079292 94880
+## 4247 TRUE 1 FALSE 1505070154 94880
+## 4248 TRUE 1 FALSE 1505082347 94880
+## 4249 TRUE 1 FALSE 1505078224 94880
+## 4250 TRUE 1 FALSE 1505079045 94880
+## 4251 TRUE 1 FALSE 1505078256 94880
+## 4252 TRUE 1 FALSE 1505078267 94880
+## 4253 TRUE 1 FALSE 1505078039 94880
+## 4254 TRUE 1 TRUE 1505082186 94880
+## 4255 TRUE 1 FALSE 1505082232 94880
+## 4256 FALSE 1 FALSE 1505070057 94880
+## 4257 TRUE 2 FALSE 1505070073 94880
+## 4258 TRUE 1 FALSE 1505070088 94880
+## 4259 TRUE 1 FALSE 1505070140 94880
+## 4260 TRUE 1 FALSE 1505078206 94880
+## 4261 TRUE 1 FALSE 1505079053 94880
+## 4262 <NA> 1 FALSE 1505082351 94880
+## 4263 TRUE 1 FALSE 1505072977 94880
+## 4264 TRUE 1 FALSE 1505077958 94880
+## 4265 TRUE 1 FALSE 1505070376 94880
+## 4266 TRUE 1 FALSE 1505081065 94880
+## 4267 TRUE 1 FALSE 1505070341 94880
+## 4268 TRUE 1 FALSE 1505070367 94880
+## 4269 TRUE 1 FALSE 1505082339 94880
+## 4270 TRUE 1 FALSE 1505078132 94880
+## 4271 TRUE 1 FALSE 1505078136 94880
+## 4272 TRUE 1 FALSE 1505076897 94880
+## 4273 TRUE 1 FALSE 1505077948 94880
+## 4274 TRUE 1 TRUE 1505081303 94880
+## 4275 TRUE 1 FALSE 1505079020 94880
+## 4276 TRUE 1 FALSE 1505079043 94880
+## 4277 TRUE 1 FALSE 1505078409 94880
+## 4278 TRUE 1 FALSE 1505079272 94880
+## 4279 TRUE 1 FALSE 1505079070 94880
+## 4280 TRUE 1 FALSE 1505081080 94880
+## 4281 TRUE 1 FALSE 1505079282 94880
+## 4282 TRUE 1 FALSE 1505078055 94880
+## 4283 TRUE 1 FALSE 1505077139 94880
+## 4284 TRUE 1 FALSE 1505077153 94880
+## 4285 TRUE 1 FALSE 1505078275 94880
+## 4286 TRUE 1 FALSE 1505082332 94880
+## 4287 <NA> 1 NA 1505076818 94880
+## 4288 TRUE 1 FALSE 1505076989 94880
+## 4289 TRUE 1 TRUE 1505082292 94880
+## 4290 TRUE 1 FALSE 1505076870 94880
+## 4291 TRUE 1 FALSE 1505078303 94880
+## 4292 TRUE 1 FALSE 1505076860 94880
+## 4293 TRUE 1 FALSE 1505077107 94880
+## 4294 TRUE 1 FALSE 1505078088 94880
+## 4295 TRUE 1 FALSE 1505076885 94880
+## 4296 TRUE 2 FALSE 1505079257 94880
+## 4297 FALSE 1 FALSE 1505077090 94880
+## 4298 TRUE 1 FALSE 1505079263 94880
+## 4299 TRUE 1 FALSE 1505077110 94880
+## 4300 TRUE 1 FALSE 1505077072 94880
+## 4301 TRUE 1 FALSE 1505078106 94880
+## 4302 TRUE 2 FALSE 1505077102 94880
+## 4303 <NA> 1 FALSE 1505077112 94880
+## 4304 FALSE 1 FALSE 1505079245 94880
+## 4305 TRUE 1 FALSE 1505078097 94880
+## 4306 TRUE 1 FALSE 1505079242 94880
+## 4307 TRUE 1 FALSE 1505429062 46250
+## 4308 TRUE 1 FALSE 1505428531 46250
+## 4309 TRUE 1 FALSE 1505443634 46250
+## 4310 TRUE 1 FALSE 1505433466 46250
+## 4311 TRUE 1 FALSE 1505443584 46250
+## 4312 TRUE 1 FALSE 1505438543 46250
+## 4313 TRUE 1 FALSE 1505428637 46250
+## 4314 FALSE 1 FALSE 1505429328 46250
+## 4315 TRUE 1 FALSE 1505433459 46250
+## 4316 FALSE 1 FALSE 1505428430 46250
+## 4317 TRUE 2 FALSE 1505428464 46250
+## 4318 TRUE 1 FALSE 1505443611 46250
+## 4319 TRUE 1 FALSE 1505445126 46250
+## 4320 TRUE 1 FALSE 1505443522 46250
+## 4321 TRUE 1 FALSE 1505434127 46250
+## 4322 TRUE 1 FALSE 1505443540 46250
+## 4323 TRUE 1 TRUE 1505786752 46250
+## 4324 <NA> 1 FALSE 1505439976 46250
+## 4325 TRUE 1 FALSE 1505433073 46250
+## 4326 TRUE 1 FALSE 1505434799 46250
+## 4327 TRUE 1 FALSE 1505153044 46250
+## 4328 TRUE 1 FALSE 1505438255 46250
+## 4329 TRUE 1 FALSE 1505438266 46250
+## 4330 TRUE 2 FALSE 1505406032 46250
+## 4331 TRUE 1 FALSE 1505406198 46250
+## 4332 TRUE 3 FALSE 1505443478 46250
+## 4333 TRUE 1 FALSE 1505153843 46250
+## 4334 TRUE 1 FALSE 1505438346 46250
+## 4335 TRUE 1 FALSE 1505429073 46250
+## 4336 TRUE 1 FALSE 1505438519 46250
+## 4337 TRUE 1 FALSE 1505153307 46250
+## 4338 TRUE 1 FALSE 1505153314 46250
+## 4339 TRUE 2 FALSE 1505429450 46250
+## 4340 TRUE 1 FALSE 1505434734 46250
+## 4341 TRUE 1 FALSE 1505443363 46250
+## 4342 FALSE 1 FALSE 1505153099 46250
+## 4343 TRUE 1 FALSE 1505438285 46250
+## 4344 TRUE 1 FALSE 1505438287 46250
+## 4345 FALSE 1 FALSE 1505153176 46250
+## 4346 TRUE 2 FALSE 1505153195 46250
+## 4347 TRUE 1 FALSE 1505438335 46250
+## 4348 TRUE 1 FALSE 1505438386 46250
+## 4349 TRUE 1 FALSE 1505445065 46250
+## 4350 TRUE 2 FALSE 1505431589 46250
+## 4351 TRUE 1 FALSE 1505431594 46250
+## 4352 TRUE 1 FALSE 1505153317 46250
+## 4353 TRUE 1 FALSE 1505443692 46250
+## 4354 TRUE 1 FALSE 1505429574 46250
+## 4355 TRUE 1 FALSE 1505429650 46250
+## 4356 TRUE 2 FALSE 1505153106 46250
+## 4357 TRUE 1 FALSE 1505153112 46250
+## 4358 TRUE 1 FALSE 1505785852 46250
+## 4359 TRUE 1 FALSE 1505785912 46250
+## 4360 TRUE 1 FALSE 1505438327 46250
+## 4361 TRUE 1 FALSE 1505445054 46250
+## 4362 TRUE 1 FALSE 1505153263 46250
+## 4363 TRUE 1 FALSE 1505439974 46250
+## 4364 TRUE 1 FALSE 1505786079 46250
+## 4365 TRUE 1 FALSE 1505786139 46250
+## 4366 TRUE 1 FALSE 1505433079 46250
+## 4367 <NA> 1 FALSE 1505433083 46250
+## 4368 TRUE 2 FALSE 1505786317 46250
+## 4369 TRUE 1 FALSE 1505402599 46250
+## 4370 TRUE 1 FALSE 1505402659 46250
+## 4371 FALSE 1 FALSE 1505402667 46250
+## 4372 FALSE 2 FALSE 1505402684 46250
+## 4373 FALSE 1 FALSE 1505785989 46250
+## 4374 TRUE 1 FALSE 1505153223 46250
+## 4375 FALSE 1 FALSE 1505431586 46250
+## 4376 TRUE 1 FALSE 1505786722 46250
+## 4377 TRUE 1 FALSE 1505445051 46250
+## 4378 TRUE 1 FALSE 1505445031 46250
+## 4379 TRUE 1 FALSE 1505431630 46250
+## 4380 <NA> 1 NA 1505153333 46250
+## 4381 TRUE 1 FALSE 1505443705 46250
+## 4382 TRUE 1 FALSE 1505443742 46250
+## 4383 TRUE 1 FALSE 1505429656 46250
+## 4384 <NA> 1 FALSE 1505429661 46250
+## 4385 FALSE 1 FALSE 1505431452 46250
+## 4386 TRUE 3 FALSE 1505402946 46250
+## 4387 TRUE 1 FALSE 1505153890 46250
+## 4388 TRUE 1 FALSE 1505439971 46250
+## 4389 TRUE 2 FALSE 1505431573 46250
+## 4390 FALSE 2 FALSE 1505444074 46250
+## 4391 FALSE 3 FALSE 1505444079 46250
+## 4392 TRUE 1 FALSE 1505432941 46250
+## 4393 TRUE 1 FALSE 1505444119 46250
+## 4394 TRUE 1 FALSE 1505432036 46250
+## 4395 TRUE 1 FALSE 1505432041 46250
+## 4396 TRUE 1 FALSE 1505444124 46250
+## 4397 TRUE 1 FALSE 1505432092 46250
+## 4398 TRUE 1 FALSE 1505432333 46250
+## 4399 TRUE 1 FALSE 1505432391 46250
+## 4400 FALSE 1 FALSE 1505406012 46250
+## 4401 FALSE 2 FALSE 1505443471 46250
+## 4402 TRUE 3 FALSE 1505786022 46250
+## 4403 TRUE 1 FALSE 1505786052 46250
+## 4404 TRUE 1 FALSE 1505432892 46250
+## 4405 TRUE 2 FALSE 1505445018 46250
+## 4406 TRUE 1 FALSE 1505152849 46250
+## 4407 TRUE 1 FALSE 1505152974 46250
+## 4408 TRUE 1 FALSE 1505152995 46250
+## 4409 TRUE 1 FALSE 1505153008 46250
+## 4410 TRUE 1 FALSE 1505443371 46250
+## 4411 TRUE 1 FALSE 1505443389 46250
+## 4412 TRUE 1 FALSE 1505443397 46250
+## 4413 TRUE 1 FALSE 1505432509 46250
+## 4414 FALSE 2 FALSE 1505786001 46250
+## 4415 TRUE 1 TRUE 1505786532 46250
+## 4416 TRUE 1 FALSE 1505433385 46250
+## 4417 TRUE 1 FALSE 1505433422 46250
+## 4418 TRUE 1 FALSE 1505444022 46250
+## 4419 TRUE 4 FALSE 1505444100 46250
+## 4420 TRUE 1 FALSE 1505786808 46250
+## 4421 TRUE 1 FALSE 1505438559 46250
+## 4422 TRUE 1 FALSE 1505434218 46250
+## 4423 FALSE 1 FALSE 1505443772 46250
+## 4424 TRUE 2 FALSE 1505443884 46250
+## 4425 TRUE 1 FALSE 1505443930 46250
+## 4426 TRUE 1 FALSE 1505443408 46250
+## 4427 FALSE 1 FALSE 1505443447 46250
+## 4428 FALSE 1 FALSE 1505431559 46250
+## 4429 TRUE 1 FALSE 1505443981 46250
+## 4430 TRUE 1 FALSE 1505443996 46250
+## 4431 TRUE 1 FALSE 1505153898 46250
+## 4432 TRUE 1 FALSE 1505153915 46250
+## 4433 FALSE 2 FALSE 1505438835 46250
+## 4434 FALSE 3 FALSE 1505438854 46250
+## 4435 FALSE 4 FALSE 1505438877 46250
+## 4436 TRUE 1 FALSE 1505432041 46250
+## 4437 TRUE 1 FALSE 1505438938 46250
+## 4438 FALSE 1 FALSE 1505438958 46250
+## 4439 TRUE 2 FALSE 1505438977 46250
+## 4440 TRUE 1 FALSE 1505153790 46250
+## 4441 TRUE 2 FALSE 1505439921 46250
+## 4442 TRUE 1 FALSE 1505439950 46250
+## 4443 TRUE 1 FALSE 1505432509 46250
+## 4444 FALSE 1 FALSE 1505445007 46250
+## 4445 FALSE 2 FALSE 1505438761 46250
+## 4446 TRUE 1 FALSE 1505443316 46250
+## 4447 TRUE 1 FALSE 1505443338 46250
+## 4448 TRUE 1 FALSE 1505443345 46250
+## 4449 TRUE 2 FALSE 1505402130 46250
+## 4450 TRUE 1 FALSE 1505786324 46250
+## 4451 TRUE 1 FALSE 1505786341 46250
+## 4452 TRUE 1 FALSE 1505786360 46250
+## 4453 TRUE 1 FALSE 1505786385 46250
+## 4454 TRUE 1 FALSE 1505786406 46250
+## 4455 TRUE 1 FALSE 1505433362 46250
+## 4456 TRUE 1 FALSE 1505444938 46250
+## 4457 FALSE 1 FALSE 1505438743 46250
+## 4458 TRUE 1 FALSE 1505432514 46250
+## 4459 FALSE 1 FALSE 1505444040 46250
+## 4460 TRUE 3 FALSE 1505438776 46250
+## 4461 FALSE 1 FALSE 1505438814 46250
+## 4462 TRUE 1 FALSE 1505431594 46250
+## 4463 FALSE 1 TRUE 1505786840 46250
+## 4464 FALSE 1 FALSE 1505434486 46250
+## 4465 TRUE 2 FALSE 1505434497 46250
+## 4466 TRUE 1 FALSE 1505443952 46250
+## 4467 TRUE 2 FALSE 1505431519 46250
+## 4468 TRUE 1 FALSE 1505443969 46250
+## 4469 TRUE 1 FALSE 1505438719 46250
+## 4470 TRUE 1 FALSE 1505432514 46250
+## 4471 TRUE 2 FALSE 1505431519 46250
+## 4472 TRUE 1 FALSE 1505432742 46250
+## 4473 TRUE 1 FALSE 1505432813 46250
+## 4474 TRUE 1 FALSE 1505786150 46250
+## 4475 FALSE 1 FALSE 1505786262 46250
+## 4476 TRUE 5 FALSE 1505438898 46250
+## 4477 TRUE 1 FALSE 1505152636 46250
+## 4478 TRUE 1 FALSE 1505444139 46250
+## 4479 TRUE 1 FALSE 1505444240 46250
+## 4480 TRUE 1 FALSE 1505432327 46250
+## 4481 TRUE 1 FALSE 1505432333 46250
+## 4482 TRUE 1 FALSE 1505432391 46250
+## 4483 TRUE 1 FALSE 1505438665 46250
+## 4484 TRUE 1 FALSE 1505444283 46250
+## 4485 FALSE 1 FALSE 1505431559 46250
+## 4486 TRUE 2 FALSE 1505431573 46250
+## 4487 FALSE 1 FALSE 1505431586 46250
+## 4488 TRUE 2 FALSE 1505431589 46250
+## 4489 TRUE 1 FALSE 1505433073 46250
+## 4490 TRUE 1 FALSE 1505431630 46250
+## 4491 TRUE 1 FALSE 1505402521 46250
+## 4492 <NA> 1 FALSE 1505433083 46250
+## 4493 TRUE 1 FALSE 1505433309 46250
+## 4494 TRUE 1 FALSE 1505433315 46250
+## 4495 TRUE 1 FALSE 1505444919 46250
+## 4496 TRUE 1 FALSE 1505152748 46250
+## 4497 FALSE 1 FALSE 1505431452 46250
+## 4498 TRUE 1 FALSE 1505432742 46250
+## 4499 TRUE 1 FALSE 1505432813 46250
+## 4500 TRUE 2 FALSE 1505152830 46250
+## 4501 TRUE 1 FALSE 1505153964 46250
+## 4502 TRUE 1 FALSE 1505788538 46250
+## 4503 FALSE 1 FALSE 1505401814 46250
+## 4504 TRUE 1 FALSE 1505445196 46250
+## 4505 TRUE 1 FALSE 1505434432 46250
+## 4506 TRUE 1 FALSE 1505434502 46250
+## 4507 TRUE 1 FALSE 1505434503 46250
+## 4508 TRUE 1 FALSE 1505438658 46250
+## 4509 <NA> 1 FALSE 1505434504 46250
+## 4510 TRUE 1 FALSE 1505444275 46250
+## 4511 TRUE 1 FALSE 1505787177 46250
+## 4512 TRUE 1 TRUE 1505787203 46250
+## 4513 TRUE 1 TRUE 1505788018 46250
+## 4514 TRUE 1 TRUE 1505788244 46250
+## 4515 TRUE 1 FALSE 1505154128 46250
+## 4516 TRUE 1 FALSE 1505445327 46250
+## 4517 TRUE 1 FALSE 1505432036 46250
+## 4518 TRUE 1 FALSE 1505432092 46250
+## 4519 TRUE 1 FALSE 1505432327 46250
+## 4520 TRUE 1 FALSE 1505152663 46250
+## 4521 TRUE 1 FALSE 1505152667 46250
+## 4522 FALSE 1 FALSE 1505439912 46250
+## 4523 TRUE 1 FALSE 1505438630 46250
+## 4524 TRUE 1 FALSE 1505445870 46250
+## 4525 TRUE 1 FALSE 1505444301 46250
+## 4526 TRUE 1 FALSE 1505444305 46250
+## 4527 TRUE 1 FALSE 1505444307 46250
+## 4528 TRUE 1 TRUE 1505788464 46250
+## 4529 TRUE 1 FALSE 1505432892 46250
+## 4530 TRUE 1 FALSE 1505788547 46250
+## 4531 TRUE 1 FALSE 1505433079 46250
+## 4532 TRUE 1 FALSE 1505152256 46250
+## 4533 TRUE 1 FALSE 1505444896 46250
+## 4534 TRUE 1 FALSE 1505444906 46250
+## 4535 TRUE 2 FALSE 1505786858 46250
+## 4536 TRUE 1 FALSE 1505444255 46250
+## 4537 TRUE 1 FALSE 1505786924 46250
+## 4538 TRUE 1 FALSE 1505445262 46250
+## 4539 TRUE 1 FALSE 1505445273 46250
+## 4540 TRUE 1 FALSE 1505445296 46250
+## 4541 <NA> 1 FALSE 1505444308 46250
+## 4542 TRUE 2 FALSE 1505445317 46250
+## 4543 TRUE 1 FALSE 1505432941 46250
+## 4544 TRUE 1 FALSE 1505788549 46250
+## 4545 TRUE 2 TRUE 1505445747 46250
+## 4546 TRUE 1 FALSE 1505434448 46250
+## 4547 TRUE 1 FALSE 1505438601 46250
+## 4548 TRUE 1 FALSE 1505445826 46250
+## 4549 FALSE 1 FALSE 1505445210 46250
+## 4550 TRUE 1 FALSE 1505445868 46250
+## 4551 TRUE 1 FALSE 1505445249 46250
+## 4552 TRUE 1 FALSE 1505152763 46250
+## 4553 TRUE 1 FALSE 1505152774 46250
+## 4554 FALSE 1 FALSE 1505445307 46250
+## 4555 TRUE 1 FALSE 1505445860 46250
+## 4556 TRUE 1 FALSE 1505152653 46250
+## 4557 FALSE 1 FALSE 1505445408 46250
+## 4558 TRUE 1 FALSE 1505445799 46250
+## 4559 TRUE 1 FALSE 1505786886 46250
+## 4560 TRUE 2 FALSE 1505445214 46250
+## 4561 TRUE 1 FALSE 1505445790 46250
+## 4562 FALSE 1 FALSE 1505152801 46250
+## 4563 <NA> 1 NA 1505788551 46250
+## 4564 TRUE 1 FALSE 1505445201 46250
+## 4565 TRUE 1 FALSE 1505445787 46250
+## 4566 TRUE 1 FALSE 1505445842 46250
+## 4567 <NA> 1 FALSE 1505445871 46250
+## 4568 TRUE 1 FALSE 1505145039 92108
+## 4569 TRUE 1 FALSE 1505090765 92108
+## 4570 TRUE 1 FALSE 1505145021 92108
+## 4571 TRUE 1 FALSE 1505145077 92108
+## 4572 TRUE 1 FALSE 1505090735 92108
+## 4573 TRUE 1 FALSE 1505145096 92108
+## 4574 TRUE 1 FALSE 1505145066 92108
+## 4575 TRUE 1 FALSE 1505144936 92108
+## 4576 TRUE 2 FALSE 1505092230 92108
+## 4577 <NA> 1 FALSE 1505145104 92108
+## 4578 TRUE 1 FALSE 1505092298 92108
+## 4579 FALSE 1 FALSE 1505092204 92108
+## 4580 TRUE 1 FALSE 1505091626 92108
+## 4581 TRUE 1 FALSE 1505091868 92108
+## 4582 TRUE 1 FALSE 1505140406 92108
+## 4583 TRUE 1 FALSE 1505090771 92108
+## 4584 TRUE 1 FALSE 1505144897 92108
+## 4585 TRUE 1 FALSE 1505144908 92108
+## 4586 TRUE 1 FALSE 1505092260 92108
+## 4587 <NA> 1 NA 1505140415 92108
+## 4588 TRUE 1 FALSE 1505145101 92108
+## 4589 TRUE 1 FALSE 1505145102 92108
+## 4590 TRUE 1 FALSE 1505091060 92108
+## 4591 TRUE 1 FALSE 1505145388 92108
+## 4592 <NA> 1 NA 1505146414 92108
+## 4593 TRUE 1 FALSE 1505091584 92108
+## 4594 TRUE 2 FALSE 1505139741 92108
+## 4595 TRUE 1 FALSE 1505139981 92108
+## 4596 TRUE 1 FALSE 1505092052 92108
+## 4597 TRUE 1 FALSE 1505090641 92108
+## 4598 TRUE 1 FALSE 1505090664 92108
+## 4599 TRUE 1 FALSE 1505140411 92108
+## 4600 TRUE 1 FALSE 1505143044 92108
+## 4601 TRUE 1 FALSE 1505141123 92108
+## 4602 TRUE 1 FALSE 1505090991 92108
+## 4603 TRUE 1 FALSE 1505090382 92108
+## 4604 TRUE 1 FALSE 1505091273 92108
+## 4605 TRUE 1 FALSE 1505146411 92108
+## 4606 FALSE 1 FALSE 1505145403 92108
+## 4607 TRUE 1 FALSE 1505146395 92108
+## 4608 FALSE 1 FALSE 1505139728 92108
+## 4609 TRUE 1 FALSE 1505090697 92108
+## 4610 TRUE 1 FALSE 1505145501 92108
+## 4611 TRUE 1 FALSE 1505145522 92108
+## 4612 TRUE 1 FALSE 1505144883 92108
+## 4613 TRUE 1 FALSE 1505145560 92108
+## 4614 TRUE 1 FALSE 1505143095 92108
+## 4615 TRUE 1 FALSE 1505143126 92108
+## 4616 TRUE 1 FALSE 1505141146 92108
+## 4617 FALSE 1 FALSE 1505092330 92108
+## 4618 TRUE 1 FALSE 1505091319 92108
+## 4619 TRUE 1 FALSE 1505146408 92108
+## 4620 TRUE 1 FALSE 1505091327 92108
+## 4621 TRUE 2 FALSE 1505145411 92108
+## 4622 TRUE 1 FALSE 1505091571 92108
+## 4623 TRUE 1 FALSE 1505090588 92108
+## 4624 TRUE 1 FALSE 1505091564 92108
+## 4625 TRUE 1 FALSE 1505145553 92108
+## 4626 TRUE 1 FALSE 1505144750 92108
+## 4627 TRUE 1 FALSE 1505145597 92108
+## 4628 FALSE 1 FALSE 1505146222 92108
+## 4629 TRUE 1 FALSE 1505145605 92108
+## 4630 TRUE 1 FALSE 1505090376 92108
+## 4631 FALSE 1 FALSE 1505141208 92108
+## 4632 TRUE 2 FALSE 1505092503 92108
+## 4633 TRUE 1 FALSE 1505146363 92108
+## 4634 TRUE 1 FALSE 1505139610 92108
+## 4635 TRUE 1 FALSE 1505090565 92108
+## 4636 <NA> 1 NA 1505091335 92108
+## 4637 TRUE 1 FALSE 1505143392 92108
+## 4638 TRUE 1 FALSE 1505144724 92108
+## 4639 TRUE 1 FALSE 1505143418 92108
+## 4640 TRUE 1 FALSE 1505143480 92108
+## 4641 TRUE 1 FALSE 1505145594 92108
+## 4642 TRUE 1 FALSE 1505090346 92108
+## 4643 FALSE 1 FALSE 1505143173 92108
+## 4644 FALSE 2 FALSE 1505143185 92108
+## 4645 TRUE 1 FALSE 1505143241 92108
+## 4646 TRUE 1 FALSE 1505143251 92108
+## 4647 TRUE 1 FALSE 1505143264 92108
+## 4648 TRUE 1 FALSE 1505091330 92108
+## 4649 TRUE 1 FALSE 1505145719 92108
+## 4650 TRUE 1 FALSE 1505145737 92108
+## 4651 TRUE 1 FALSE 1505143408 92108
+## 4652 TRUE 1 FALSE 1505145897 92108
+## 4653 TRUE 1 FALSE 1505143014 92108
+## 4654 TRUE 1 FALSE 1505092743 92108
+## 4655 TRUE 1 FALSE 1505092784 92108
+## 4656 TRUE 1 FALSE 1505090359 92108
+## 4657 TRUE 2 FALSE 1505146228 92108
+## 4658 FALSE 1 FALSE 1505144445 92108
+## 4659 TRUE 1 FALSE 1505090450 92108
+## 4660 TRUE 1 FALSE 1505090465 92108
+## 4661 TRUE 1 FALSE 1505090475 92108
+## 4662 TRUE 2 FALSE 1505139384 92108
+## 4663 TRUE 1 FALSE 1505091447 92108
+## 4664 TRUE 1 FALSE 1505144676 92108
+## 4665 TRUE 1 FALSE 1505142873 92108
+## 4666 TRUE 2 FALSE 1505092676 92108
+## 4667 TRUE 1 FALSE 1505138935 92108
+## 4668 TRUE 1 FALSE 1505145924 92108
+## 4669 TRUE 1 FALSE 1505143498 92108
+## 4670 TRUE 1 FALSE 1505143596 92108
+## 4671 TRUE 1 FALSE 1505145626 92108
+## 4672 FALSE 3 FALSE 1505143191 92108
+## 4673 TRUE 4 FALSE 1505143205 92108
+## 4674 TRUE 2 FALSE 1505141252 92108
+## 4675 TRUE 1 FALSE 1505141263 92108
+## 4676 TRUE 1 FALSE 1505092538 92108
+## 4677 TRUE 1 FALSE 1505092565 92108
+## 4678 FALSE 1 FALSE 1505092665 92108
+## 4679 TRUE 1 FALSE 1505138928 92108
+## 4680 TRUE 2 FALSE 1505141666 92108
+## 4681 TRUE 1 FALSE 1505141700 92108
+## 4682 FALSE 1 FALSE 1505138977 92108
+## 4683 TRUE 2 FALSE 1505139023 92108
+## 4684 FALSE 1 FALSE 1505144339 92108
+## 4685 TRUE 1 FALSE 1505143685 92108
+## 4686 TRUE 1 FALSE 1505145693 92108
+## 4687 FALSE 1 FALSE 1505145696 92108
+## 4688 TRUE 2 FALSE 1505145702 92108
+## 4689 TRUE 1 FALSE 1505145711 92108
+## 4690 TRUE 1 FALSE 1505137768 92108
+## 4691 TRUE 1 FALSE 1505145763 92108
+## 4692 <NA> 1 FALSE 1505143271 92108
+## 4693 TRUE 1 FALSE 1505142212 92108
+## 4694 TRUE 1 FALSE 1505142237 92108
+## 4695 TRUE 1 FALSE 1505141887 92108
+## 4696 TRUE 1 FALSE 1505141948 92108
+## 4697 TRUE 1 FALSE 1505092842 92108
+## 4698 TRUE 1 FALSE 1505146272 92108
+## 4699 TRUE 1 FALSE 1505146277 92108
+## 4700 TRUE 1 FALSE 1505146286 92108
+## 4701 TRUE 1 FALSE 1505146350 92108
+## 4702 TRUE 1 FALSE 1505144640 92108
+## 4703 TRUE 1 FALSE 1505144660 92108
+## 4704 TRUE 1 FALSE 1505142866 92108
+## 4705 TRUE 1 FALSE 1505137785 92108
+## 4706 FALSE 1 FALSE 1505141636 92108
+## 4707 TRUE 1 FALSE 1505142096 92108
+## 4708 TRUE 1 FALSE 1505145914 92108
+## 4709 TRUE 1 FALSE 1505090265 92108
+## 4710 TRUE 1 FALSE 1505144142 92108
+## 4711 TRUE 1 FALSE 1505143609 92108
+## 4712 TRUE 1 FALSE 1505143628 92108
+## 4713 FALSE 1 FALSE 1505143734 92108
+## 4714 TRUE 2 FALSE 1505143748 92108
+## 4715 TRUE 1 FALSE 1505143769 92108
+## 4716 TRUE 1 FALSE 1505143809 92108
+## 4717 TRUE 1 FALSE 1505143268 92108
+## 4718 TRUE 1 FALSE 1505141371 92108
+## 4719 TRUE 1 FALSE 1505143934 92108
+## 4720 TRUE 1 FALSE 1505137765 92108
+## 4721 TRUE 1 FALSE 1505142077 92108
+## 4722 TRUE 1 FALSE 1505139049 92108
+## 4723 TRUE 1 FALSE 1505144000 92108
+## 4724 TRUE 1 FALSE 1505142330 92108
+## 4725 TRUE 2 FALSE 1505144374 92108
+## 4726 TRUE 1 FALSE 1505143886 92108
+## 4727 FALSE 2 FALSE 1505144555 92108
+## 4728 TRUE 3 FALSE 1505144603 92108
+## 4729 FALSE 1 FALSE 1505139356 92108
+## 4730 <NA> 1 FALSE 1505142019 92108
+## 4731 TRUE 1 FALSE 1505137761 92108
+## 4732 <NA> 1 FALSE 1505094727 92108
+## 4733 TRUE 1 FALSE 1505142018 92108
+## 4734 TRUE 1 FALSE 1505092863 92108
+## 4735 FALSE 1 FALSE 1505093687 92108
+## 4736 TRUE 2 FALSE 1505093719 92108
+## 4737 TRUE 1 FALSE 1505138940 92108
+## 4738 TRUE 1 FALSE 1505094722 92108
+## 4739 TRUE 1 FALSE 1505091438 92108
+## 4740 TRUE 1 FALSE 1505142823 92108
+## 4741 TRUE 1 FALSE 1505094471 92108
+## 4742 TRUE 1 FALSE 1505142262 92108
+## 4743 TRUE 1 FALSE 1505142293 92108
+## 4744 TRUE 1 FALSE 1505139029 92108
+## 4745 TRUE 1 FALSE 1505142689 92108
+## 4746 TRUE 1 FALSE 1505139161 92108
+## 4747 TRUE 1 FALSE 1505139167 92108
+## 4748 TRUE 1 FALSE 1505137743 92108
+## 4749 TRUE 1 FALSE 1505141958 92108
+## 4750 TRUE 1 FALSE 1505142017 92108
+## 4751 TRUE 1 FALSE 1505141980 92108
+## 4752 TRUE 1 FALSE 1505144025 92108
+## 4753 TRUE 1 FALSE 1505094724 92108
+## 4754 TRUE 1 FALSE 1505142305 92108
+## 4755 TRUE 1 FALSE 1505142639 92108
+## 4756 FALSE 1 FALSE 1505142005 92108
+## 4757 TRUE 1 FALSE 1505142265 92108
+## 4758 TRUE 1 FALSE 1505142669 92108
+## 4759 TRUE 1 FALSE 1505142746 92108
+## 4760 TRUE 2 FALSE 1505142014 92108
+## 4761 TRUE 1 FALSE 1505142357 92108
+## 4762 FALSE 1 FALSE 1506007727 12264
+## 4763 FALSE 2 FALSE 1505938965 12264
+## 4764 TRUE 1 FALSE 1506008641 12264
+## 4765 TRUE 1 FALSE 1506008667 12264
+## 4766 TRUE 2 FALSE 1505158699 12264
+## 4767 TRUE 6 TRUE 1506302433 12264
+## 4768 FALSE 2 FALSE 1506008856 12264
+## 4769 TRUE 3 TRUE 1506008869 12264
+## 4770 TRUE 2 TRUE 1506094840 12264
+## 4771 TRUE 3 FALSE 1505939024 12264
+## 4772 TRUE 1 FALSE 1506008619 12264
+## 4773 TRUE 1 FALSE 1506008498 12264
+## 4774 FALSE 1 FALSE 1506008843 12264
+## 4775 FALSE 1 FALSE 1505159167 12264
+## 4776 FALSE 3 FALSE 1506302205 12264
+## 4777 FALSE 4 FALSE 1506302270 12264
+## 4778 TRUE 2 FALSE 1506301497 12264
+## 4779 TRUE 1 FALSE 1506301699 12264
+## 4780 TRUE 1 FALSE 1506093876 12264
+## 4781 FALSE 1 FALSE 1506301446 12264
+## 4782 TRUE 1 FALSE 1506008458 12264
+## 4783 FALSE 1 TRUE 1505159015 12264
+## 4784 TRUE 1 FALSE 1506096166 12264
+## 4785 TRUE 1 FALSE 1506008351 12264
+## 4786 FALSE 1 FALSE 1506096103 12264
+## 4787 FALSE 5 FALSE 1506302310 12264
+## 4788 TRUE 1 FALSE 1506096169 12264
+## 4789 TRUE 1 FALSE 1505158903 12264
+## 4790 FALSE 2 TRUE 1505159223 12264
+## 4791 TRUE 1 FALSE 1505939129 12264
+## 4792 TRUE 1 FALSE 1505939142 12264
+## 4793 TRUE 1 FALSE 1506266384 12264
+## 4794 TRUE 1 FALSE 1506008227 12264
+## 4795 TRUE 1 FALSE 1506007974 12264
+## 4796 FALSE 1 FALSE 1505938948 12264
+## 4797 FALSE 2 FALSE 1506302176 12264
+## 4798 TRUE 2 FALSE 1506096114 12264
+## 4799 TRUE 1 FALSE 1505158892 12264
+## 4800 TRUE 2 FALSE 1505159127 12264
+## 4801 TRUE 1 FALSE 1506265621 12264
+## 4802 TRUE 1 TRUE 1506093701 12264
+## 4803 TRUE 1 FALSE 1506266438 12264
+## 4804 FALSE 1 FALSE 1506094837 12264
+## 4805 <NA> 1 NA 1505958403 12264
+## 4806 TRUE 2 FALSE 1506007758 12264
+## 4807 TRUE 1 FALSE 1506007769 12264
+## 4808 TRUE 1 FALSE 1506007957 12264
+## 4809 TRUE 1 FALSE 1506008120 12264
+## 4810 FALSE 1 FALSE 1506302155 12264
+## 4811 TRUE 1 FALSE 1506007851 12264
+## 4812 TRUE 1 FALSE 1506010908 12264
+## 4813 TRUE 1 FALSE 1505158845 12264
+## 4814 TRUE 1 FALSE 1506011434 12264
+## 4815 TRUE 1 FALSE 1506094525 12264
+## 4816 TRUE 1 TRUE 1505957595 12264
+## 4817 TRUE 1 FALSE 1505957867 12264
+## 4818 TRUE 3 FALSE 1505159231 12264
+## 4819 FALSE 1 FALSE 1506094851 12264
+## 4820 FALSE 1 FALSE 1506301810 12264
+## 4821 FALSE 2 FALSE 1506301894 12264
+## 4822 TRUE 1 FALSE 1506302021 12264
+## 4823 TRUE 1 FALSE 1505158462 12264
+## 4824 TRUE 1 FALSE 1506010563 12264
+## 4825 TRUE 1 FALSE 1506265326 12264
+## 4826 FALSE 1 FALSE 1506011396 12264
+## 4827 TRUE 1 FALSE 1505158549 12264
+## 4828 TRUE 2 FALSE 1506011413 12264
+## 4829 TRUE 1 FALSE 1506094685 12264
+## 4830 TRUE 1 FALSE 1506094759 12264
+## 4831 FALSE 1 FALSE 1506094012 12264
+## 4832 TRUE 1 FALSE 1505159244 12264
+## 4833 TRUE 1 FALSE 1506008914 12264
+## 4834 FALSE 1 FALSE 1506265236 12264
+## 4835 TRUE 1 FALSE 1506007790 12264
+## 4836 TRUE 1 FALSE 1506007830 12264
+## 4837 TRUE 4 FALSE 1506265322 12264
+## 4838 TRUE 5 TRUE 1506301984 12264
+## 4839 TRUE 1 FALSE 1506302000 12264
+## 4840 TRUE 2 FALSE 1506095938 12264
+## 4841 TRUE 1 FALSE 1506265351 12264
+## 4842 TRUE 1 FALSE 1505957518 12264
+## 4843 TRUE 2 FALSE 1506264257 12264
+## 4844 TRUE 1 FALSE 1505958402 12264
+## 4845 TRUE 1 FALSE 1505158564 12264
+## 4846 FALSE 1 FALSE 1505158680 12264
+## 4847 TRUE 1 FALSE 1505939185 12264
+## 4848 TRUE 1 FALSE 1505158710 12264
+## 4849 FALSE 3 FALSE 1506265304 12264
+## 4850 FALSE 4 FALSE 1506301963 12264
+## 4851 TRUE 1 FALSE 1505939585 12264
+## 4852 TRUE 1 FALSE 1505939652 12264
+## 4853 TRUE 1 FALSE 1505939676 12264
+## 4854 TRUE 1 FALSE 1506302883 12264
+## 4855 TRUE 2 FALSE 1505958382 12264
+## 4856 TRUE 1 FALSE 1505958387 12264
+## 4857 TRUE 1 FALSE 1506264277 12264
+## 4858 TRUE 1 FALSE 1506264475 12264
+## 4859 <NA> 1 FALSE 1506096173 12264
+## 4860 TRUE 1 FALSE 1506265203 12264
+## 4861 TRUE 1 FALSE 1506008932 12264
+## 4862 FALSE 3 FALSE 1506301933 12264
+## 4863 TRUE 1 FALSE 1506008962 12264
+## 4864 TRUE 1 FALSE 1505158388 12264
+## 4865 TRUE 1 FALSE 1505158405 12264
+## 4866 TRUE 1 FALSE 1505158513 12264
+## 4867 TRUE 1 FALSE 1505158433 12264
+## 4868 FALSE 1 FALSE 1505939888 12264
+## 4869 TRUE 2 FALSE 1505939900 12264
+## 4870 TRUE 1 FALSE 1505958400 12264
+## 4871 TRUE 1 FALSE 1505160286 12264
+## 4872 TRUE 1 FALSE 1506265075 12264
+## 4873 FALSE 3 FALSE 1506304198 12264
+## 4874 FALSE 1 FALSE 1506094169 12264
+## 4875 TRUE 1 FALSE 1505958109 12264
+## 4876 FALSE 2 FALSE 1506265240 12264
+## 4877 TRUE 1 FALSE 1505158729 12264
+## 4878 TRUE 1 FALSE 1505158771 12264
+## 4879 TRUE 1 FALSE 1505158783 12264
+## 4880 FALSE 1 FALSE 1506095925 12264
+## 4881 TRUE 1 FALSE 1506094463 12264
+## 4882 <NA> 1 FALSE 1506304461 12264
+## 4883 FALSE 1 FALSE 1505957056 12264
+## 4884 TRUE 2 FALSE 1505957110 12264
+## 4885 <NA> 1 NA 1505160289 12264
+## 4886 TRUE 1 FALSE 1506303433 12264
+## 4887 TRUE 1 FALSE 1505159262 12264
+## 4888 FALSE 2 FALSE 1506094867 12264
+## 4889 TRUE 1 FALSE 1505158720 12264
+## 4890 FALSE 1 FALSE 1505159342 12264
+## 4891 TRUE 1 FALSE 1506302706 12264
+## 4892 TRUE 1 FALSE 1506302781 12264
+## 4893 TRUE 1 FALSE 1505958159 12264
+## 4894 TRUE 2 FALSE 1506094360 12264
+## 4895 TRUE 1 FALSE 1506302887 12264
+## 4896 TRUE 1 FALSE 1505160278 12264
+## 4897 TRUE 1 FALSE 1505160283 12264
+## 4898 FALSE 2 FALSE 1506304176 12264
+## 4899 TRUE 1 FALSE 1506303127 12264
+## 4900 TRUE 2 FALSE 1506094024 12264
+## 4901 TRUE 1 FALSE 1505939264 12264
+## 4902 TRUE 1 FALSE 1505939571 12264
+## 4903 TRUE 1 FALSE 1505958126 12264
+## 4904 TRUE 2 FALSE 1506094193 12264
+## 4905 FALSE 1 FALSE 1506094339 12264
+## 4906 TRUE 1 FALSE 1506263855 12264
+## 4907 FALSE 2 FALSE 1505160062 12264
+## 4908 FALSE 1 FALSE 1505958369 12264
+## 4909 FALSE 1 FALSE 1506303021 12264
+## 4910 TRUE 1 FALSE 1505957951 12264
+## 4911 FALSE 1 FALSE 1506264002 12264
+## 4912 FALSE 4 FALSE 1505159536 12264
+## 4913 TRUE 1 FALSE 1506303477 12264
+## 4914 TRUE 1 FALSE 1506095699 12264
+## 4915 TRUE 1 FALSE 1505159301 12264
+## 4916 TRUE 3 FALSE 1506094870 12264
+## 4917 TRUE 1 FALSE 1506094890 12264
+## 4918 FALSE 4 TRUE 1505160120 12264
+## 4919 TRUE 5 FALSE 1505160247 12264
+## 4920 TRUE 2 FALSE 1506303032 12264
+## 4921 TRUE 1 FALSE 1505958321 12264
+## 4922 FALSE 6 TRUE 1505159652 12264
+## 4923 FALSE 1 FALSE 1506304016 12264
+## 4924 FALSE 1 FALSE 1505159974 12264
+## 4925 TRUE 1 FALSE 1505159322 12264
+## 4926 TRUE 1 FALSE 1506302606 12264
+## 4927 TRUE 1 FALSE 1506304448 12264
+## 4928 FALSE 3 FALSE 1505159475 12264
+## 4929 TRUE 1 FALSE 1505159792 12264
+## 4930 FALSE 2 FALSE 1505159462 12264
+## 4931 TRUE 7 FALSE 1505159714 12264
+## 4932 FALSE 3 FALSE 1505160097 12264
+## 4933 FALSE 5 FALSE 1505159558 12264
+## 4934 TRUE 1 FALSE 1506304459 12264
+## 4935 TRUE 1 FALSE 1506304456 12264
+## 4936 TRUE 4 TRUE 1506304331 12264
+## 4937 TRUE 1 FALSE 1506302512 12264
+## 4938 TRUE 1 FALSE 1505662449 77484
+## 4939 FALSE 1 FALSE 1505658659 77484
+## 4940 TRUE 1 FALSE 1505933352 77484
+## 4941 TRUE 1 FALSE 1505620711 77484
+## 4942 TRUE 7 TRUE 1505933336 77484
+## 4943 TRUE 2 FALSE 1505658665 77484
+## 4944 FALSE 1 FALSE 1505933443 77484
+## 4945 FALSE 5 FALSE 1505933178 77484
+## 4946 TRUE 1 FALSE 1505662375 77484
+## 4947 TRUE 1 FALSE 1505662418 77484
+## 4948 TRUE 1 FALSE 1505620655 77484
+## 4949 <NA> 1 NA 1505661567 77484
+## 4950 TRUE 1 FALSE 1505658800 77484
+## 4951 TRUE 1 FALSE 1505658716 77484
+## 4952 TRUE 1 FALSE 1505663220 77484
+## 4953 TRUE 1 FALSE 1505658751 77484
+## 4954 TRUE 1 FALSE 1506109530 77484
+## 4955 FALSE 6 FALSE 1505933210 77484
+## 4956 TRUE 1 FALSE 1505620513 77484
+## 4957 TRUE 1 FALSE 1505620638 77484
+## 4958 TRUE 1 FALSE 1505663649 77484
+## 4959 TRUE 1 FALSE 1506109538 77484
+## 4960 TRUE 1 FALSE 1505662391 77484
+## 4961 TRUE 1 FALSE 1505662399 77484
+## 4962 TRUE 1 FALSE 1506110081 77484
+## 4963 TRUE 1 FALSE 1505663660 77484
+## 4964 TRUE 2 FALSE 1505933677 77484
+## 4965 TRUE 1 FALSE 1506110075 77484
+## 4966 TRUE 1 FALSE 1506109594 77484
+## 4967 TRUE 1 FALSE 1506110084 77484
+## 4968 <NA> 1 FALSE 1506110087 77484
+## 4969 TRUE 1 FALSE 1506109584 77484
+## 4970 TRUE 1 FALSE 1505662493 77484
+## 4971 TRUE 1 FALSE 1505938576 77484
+## 4972 TRUE 1 FALSE 1505938577 77484
+## 4973 TRUE 1 FALSE 1505662471 77484
+## 4974 TRUE 1 FALSE 1505620499 77484
+## 4975 TRUE 1 FALSE 1505661565 77484
+## 4976 TRUE 1 FALSE 1505661566 77484
+## 4977 TRUE 1 FALSE 1505755390 77484
+## 4978 TRUE 1 FALSE 1505755431 77484
+## 4979 TRUE 1 FALSE 1505755605 77484
+## 4980 TRUE 1 FALSE 1506109662 77484
+## 4981 TRUE 1 FALSE 1506109895 77484
+## 4982 TRUE 1 FALSE 1506109907 77484
+## 4983 TRUE 1 FALSE 1506109919 77484
+## 4984 TRUE 1 FALSE 1505933696 77484
+## 4985 TRUE 1 FALSE 1505934001 77484
+## 4986 TRUE 1 FALSE 1505620438 77484
+## 4987 TRUE 2 FALSE 1505756415 77484
+## 4988 TRUE 1 FALSE 1505926825 77484
+## 4989 TRUE 1 FALSE 1505926865 77484
+## 4990 FALSE 1 FALSE 1505932115 77484
+## 4991 FALSE 2 FALSE 1505932618 77484
+## 4992 FALSE 3 FALSE 1505932634 77484
+## 4993 FALSE 1 FALSE 1505755740 77484
+## 4994 FALSE 2 FALSE 1505755774 77484
+## 4995 FALSE 3 FALSE 1505755790 77484
+## 4996 TRUE 4 FALSE 1505755825 77484
+## 4997 TRUE 1 FALSE 1505755831 77484
+## 4998 TRUE 1 FALSE 1505756324 77484
+## 4999 FALSE 1 FALSE 1505756396 77484
+## 5000 FALSE 2 FALSE 1505660325 77484
+## 5001 TRUE 3 FALSE 1505660376 77484
+## 5002 TRUE 1 FALSE 1505934654 77484
+## 5003 TRUE 1 FALSE 1505934668 77484
+## 5004 TRUE 1 FALSE 1505934805 77484
+## 5005 TRUE 1 FALSE 1505934870 77484
+## 5006 FALSE 4 FALSE 1505933104 77484
+## 5007 TRUE 1 FALSE 1505659399 77484
+## 5008 TRUE 1 FALSE 1505660136 77484
+## 5009 TRUE 1 FALSE 1505660153 77484
+## 5010 TRUE 1 FALSE 1505660199 77484
+## 5011 TRUE 1 FALSE 1505660228 77484
+## 5012 FALSE 1 FALSE 1505660294 77484
+## 5013 TRUE 1 FALSE 1505620388 77484
+## 5014 TRUE 1 FALSE 1505754718 77484
+## 5015 TRUE 1 FALSE 1505755287 77484
+## 5016 TRUE 1 FALSE 1505755315 77484
+## 5017 FALSE 2 FALSE 1505937656 77484
+## 5018 FALSE 3 FALSE 1505937703 77484
+## 5019 FALSE 4 FALSE 1505937790 77484
+## 5020 TRUE 5 FALSE 1505937820 77484
+## 5021 TRUE 1 FALSE 1505938564 77484
+## 5022 TRUE 1 FALSE 1506109310 77484
+## 5023 TRUE 1 FALSE 1506109343 77484
+## 5024 FALSE 1 FALSE 1506109374 77484
+## 5025 <NA> 1 FALSE 1505938578 77484
+## 5026 TRUE 1 FALSE 1505662530 77484
+## 5027 TRUE 1 FALSE 1505662545 77484
+## 5028 TRUE 1 FALSE 1505662570 77484
+## 5029 TRUE 1 FALSE 1505662588 77484
+## 5030 FALSE 1 FALSE 1505662956 77484
+## 5031 FALSE 2 FALSE 1505662970 77484
+## 5032 TRUE 3 FALSE 1505663033 77484
+## 5033 TRUE 1 FALSE 1505663053 77484
+## 5034 TRUE 1 FALSE 1505663166 77484
+## 5035 FALSE 1 FALSE 1506107523 77484
+## 5036 FALSE 2 FALSE 1506107571 77484
+## 5037 TRUE 3 TRUE 1506107780 77484
+## 5038 TRUE 1 FALSE 1505663738 77484
+## 5039 TRUE 1 FALSE 1505663803 77484
+## 5040 FALSE 1 FALSE 1505663824 77484
+## 5041 TRUE 2 FALSE 1505663836 77484
+## 5042 TRUE 1 FALSE 1505663848 77484
+## 5043 TRUE 1 FALSE 1505663856 77484
+## 5044 TRUE 1 FALSE 1505663858 77484
+## 5045 <NA> 1 FALSE 1505663860 77484
+## 5046 FALSE 1 FALSE 1505934919 77484
+## 5047 FALSE 2 FALSE 1505935031 77484
+## 5048 TRUE 3 FALSE 1505935095 77484
+## 5049 TRUE 1 FALSE 1505935144 77484
+## 5050 TRUE 1 FALSE 1505935150 77484
+## 5051 FALSE 1 FALSE 1505935482 77484
+## 5052 TRUE 2 FALSE 1505935796 77484
+## 5053 TRUE 1 FALSE 1505936230 77484
+## 5054 TRUE 1 FALSE 1505936416 77484
+## 5055 TRUE 1 FALSE 1505936509 77484
+## 5056 FALSE 1 FALSE 1505937639 77484
+## 5057 TRUE 2 FALSE 1506109069 77484
+## 5058 TRUE 1 FALSE 1506109090 77484
+## 5059 TRUE 1 FALSE 1506109096 77484
+## 5060 TRUE 1 FALSE 1506109211 77484
+## 5061 TRUE 1 FALSE 1506109298 77484
+## 5062 TRUE 1 FALSE 1506308161 77484
+## 5063 TRUE 1 FALSE 1506308182 77484
+## 5064 TRUE 1 FALSE 1506308188 77484
+## 5065 TRUE 2 FALSE 1506109393 77484
+## 5066 TRUE 1 FALSE 1506109397 77484
+## 5067 TRUE 1 FALSE 1506109407 77484
+## 5068 TRUE 1 FALSE 1506109440 77484
+## 5069 TRUE 1 FALSE 1506109471 77484
+## 5070 TRUE 1 FALSE 1506109501 77484
+## 5071 TRUE 1 FALSE 1505659111 77484
+## 5072 TRUE 1 FALSE 1505659140 77484
+## 5073 TRUE 1 FALSE 1505659206 77484
+## 5074 TRUE 1 FALSE 1505659365 77484
+## 5075 TRUE 1 FALSE 1506307451 77484
+## 5076 TRUE 1 FALSE 1506307522 77484
+## 5077 FALSE 1 FALSE 1506307692 77484
+## 5078 TRUE 2 FALSE 1506307728 77484
+## 5079 TRUE 1 FALSE 1506108154 77484
+## 5080 TRUE 1 FALSE 1506109954 77484
+## 5081 TRUE 1 FALSE 1506109988 77484
+## 5082 TRUE 1 FALSE 1506110033 77484
+## 5083 FALSE 1 FALSE 1506306321 77484
+## 5084 TRUE 2 FALSE 1506306338 77484
+## 5085 TRUE 1 TRUE 1506306399 77484
+## 5086 TRUE 1 FALSE 1506306770 77484
+## 5087 TRUE 1 FALSE 1506306922 77484
+## 5088 TRUE 2 FALSE 1506308153 77484
+## 5089 TRUE 1 FALSE 1505661064 77484
+## 5090 TRUE 1 FALSE 1505661098 77484
+## 5091 TRUE 1 FALSE 1505661140 77484
+## 5092 TRUE 1 FALSE 1506307745 77484
+## 5093 TRUE 1 FALSE 1506307765 77484
+## 5094 TRUE 1 FALSE 1506307896 77484
+## 5095 TRUE 1 FALSE 1505620428 77484
+## 5096 TRUE 1 FALSE 1506308045 77484
+## 5097 TRUE 1 FALSE 1506308102 77484
+## 5098 TRUE 1 FALSE 1506308109 77484
+## 5099 TRUE 1 FALSE 1506308115 77484
+## 5100 FALSE 1 FALSE 1506308119 77484
+## 5101 TRUE 1 FALSE 1505661011 77484
+## 5102 TRUE 1 FALSE 1506108798 77484
+## 5103 TRUE 1 FALSE 1506108814 77484
+## 5104 TRUE 1 FALSE 1506108880 77484
+## 5105 TRUE 1 FALSE 1506308189 77484
+## 5106 <NA> 1 NA 1506308190 77484
+## 5107 FALSE 1 FALSE 1505659021 77484
+## 5108 FALSE 2 FALSE 1505659049 77484
+## 5109 TRUE 3 FALSE 1505659083 77484
+## 5110 TRUE 1 FALSE 1505659097 77484
+## 5111 TRUE 1 FALSE 1505660420 77484
+## 5112 TRUE 1 FALSE 1505660488 77484
+## 5113 TRUE 1 FALSE 1505660956 77484
+## 5114 TRUE 1 FALSE 1506108785 77484
+## 5115 TRUE 1 FALSE 1505661181 77484
+## 5116 TRUE 1 FALSE 1506108182 77484
+## 5117 TRUE 1 FALSE 1506108196 77484
+## 5118 TRUE 1 FALSE 1505661177 77484
+## 5119 TRUE 1 FALSE 1505660409 77484
+## 5120 TRUE 1 FALSE 1505661510 77484
+## 5121 FALSE 1 FALSE 1506109045 77484
+## 5122 TRUE 1 FALSE 1506108225 77484
+## 5123 TRUE 1 FALSE 1506108905 77484
+## 5124 TRUE 1 FALSE 1506108938 77484
+## 5125 TRUE 1 FALSE 1505661289 77484
+## 5126 TRUE 1 FALSE 1506108387 77484
+## 5127 FALSE 1 FALSE 1505661420 77484
+## 5128 TRUE 2 FALSE 1505661446 77484
+## 5129 TRUE 1 FALSE 1506108269 77484
+## 5130 TRUE 1 FALSE 1505661365 77484
+## 5131 TRUE 1 FALSE 1506307929 77484
+## 5132 TRUE 1 FALSE 1506108980 77484
+## 5133 TRUE 1 FALSE 1506109008 77484
+## 5134 TRUE 1 FALSE 1506108350 77484
+## 5135 <NA> 1 FALSE 1506108940 77484
+## 5136 TRUE 1 FALSE 1506307910 77484
+## 5137 TRUE 1 FALSE 1506108940 77484
+## 5138 TRUE 1 FALSE 1506109018 77484
+## 5139 TRUE 1 FALSE 1506109016 77484
+## 5140 TRUE 1 FALSE 1505148695 24042
+## 5141 TRUE 1 FALSE 1505174460 24042
+## 5142 TRUE 1 FALSE 1505142875 24042
+## 5143 TRUE 1 FALSE 1505142909 24042
+## 5144 TRUE 1 FALSE 1505174452 24042
+## 5145 TRUE 2 FALSE 1505150098 24042
+## 5146 TRUE 1 FALSE 1505174333 24042
+## 5147 FALSE 1 FALSE 1505098192 24042
+## 5148 TRUE 1 FALSE 1505142901 24042
+## 5149 TRUE 1 FALSE 1505148724 24042
+## 5150 TRUE 1 FALSE 1505098173 24042
+## 5151 TRUE 1 FALSE 1505098242 24042
+## 5152 FALSE 1 FALSE 1505150059 24042
+## 5153 TRUE 1 FALSE 1505097967 24042
+## 5154 TRUE 1 FALSE 1505150131 24042
+## 5155 TRUE 1 FALSE 1505098164 24042
+## 5156 FALSE 2 FALSE 1505154017 24042
+## 5157 TRUE 2 FALSE 1505098212 24042
+## 5158 TRUE 1 FALSE 1505091065 24042
+## 5159 TRUE 1 FALSE 1505098215 24042
+## 5160 TRUE 1 FALSE 1505091605 24042
+## 5161 TRUE 1 FALSE 1505097939 24042
+## 5162 TRUE 1 FALSE 1505091585 24042
+## 5163 TRUE 2 FALSE 1505153481 24042
+## 5164 TRUE 1 FALSE 1505153537 24042
+## 5165 FALSE 3 FALSE 1505154101 24042
+## 5166 FALSE 1 FALSE 1505087519 24042
+## 5167 <NA> 1 NA 1505087953 24042
+## 5168 TRUE 1 FALSE 1505091590 24042
+## 5169 FALSE 1 FALSE 1505153970 24042
+## 5170 TRUE 1 FALSE 1505097625 24042
+## 5171 TRUE 2 FALSE 1505098285 24042
+## 5172 TRUE 2 FALSE 1505098627 24042
+## 5173 TRUE 5 FALSE 1505154198 24042
+## 5174 FALSE 1 FALSE 1505098263 24042
+## 5175 <NA> 1 FALSE 1505097856 24042
+## 5176 TRUE 1 FALSE 1505091361 24042
+## 5177 TRUE 1 FALSE 1505098970 24042
+## 5178 TRUE 1 FALSE 1505098987 24042
+## 5179 TRUE 1 FALSE 1505087947 24042
+## 5180 TRUE 2 FALSE 1505173726 24042
+## 5181 FALSE 4 FALSE 1505154169 24042
+## 5182 TRUE 1 FALSE 1505089948 24042
+## 5183 FALSE 1 FALSE 1505173616 24042
+## 5184 FALSE 1 FALSE 1505098573 24042
+## 5185 TRUE 1 FALSE 1505090824 24042
+## 5186 FALSE 2 FALSE 1505091987 24042
+## 5187 TRUE 3 FALSE 1505091998 24042
+## 5188 TRUE 1 FALSE 1505092006 24042
+## 5189 TRUE 1 FALSE 1505092054 24042
+## 5190 TRUE 1 FALSE 1505089874 24042
+## 5191 FALSE 1 FALSE 1505092295 24042
+## 5192 FALSE 1 FALSE 1505090039 24042
+## 5193 TRUE 2 FALSE 1505090050 24042
+## 5194 TRUE 1 FALSE 1505098298 24042
+## 5195 FALSE 1 FALSE 1505150337 24042
+## 5196 TRUE 1 FALSE 1505098394 24042
+## 5197 TRUE 2 FALSE 1505090731 24042
+## 5198 FALSE 1 FALSE 1505153439 24042
+## 5199 TRUE 1 FALSE 1505087885 24042
+## 5200 TRUE 1 FALSE 1505087934 24042
+## 5201 TRUE 1 FALSE 1505087942 24042
+## 5202 TRUE 1 FALSE 1505144344 24042
+## 5203 <NA> 1 NA 1505144345 24042
+## 5204 TRUE 1 FALSE 1505088043 24042
+## 5205 TRUE 1 FALSE 1505088054 24042
+## 5206 TRUE 1 FALSE 1505088076 24042
+## 5207 TRUE 1 FALSE 1505150243 24042
+## 5208 TRUE 2 FALSE 1505097845 24042
+## 5209 TRUE 1 FALSE 1505088343 24042
+## 5210 TRUE 1 FALSE 1505089113 24042
+## 5211 TRUE 1 FALSE 1505174462 24042
+## 5212 <NA> 1 FALSE 1505174462 24042
+## 5213 TRUE 1 FALSE 1505089284 24042
+## 5214 FALSE 1 FALSE 1505091208 24042
+## 5215 TRUE 2 FALSE 1505091254 24042
+## 5216 TRUE 1 FALSE 1505091305 24042
+## 5217 TRUE 1 FALSE 1505091325 24042
+## 5218 TRUE 1 FALSE 1505091330 24042
+## 5219 TRUE 2 FALSE 1505147434 24042
+## 5220 TRUE 1 FALSE 1505088082 24042
+## 5221 TRUE 1 FALSE 1505088122 24042
+## 5222 TRUE 1 FALSE 1505090376 24042
+## 5223 FALSE 1 FALSE 1505090699 24042
+## 5224 TRUE 1 FALSE 1505087453 24042
+## 5225 TRUE 1 FALSE 1505087495 24042
+## 5226 TRUE 1 FALSE 1505097302 24042
+## 5227 TRUE 1 FALSE 1505097321 24042
+## 5228 TRUE 1 FALSE 1505097550 24042
+## 5229 TRUE 1 FALSE 1505097618 24042
+## 5230 TRUE 1 FALSE 1505152664 24042
+## 5231 TRUE 1 FALSE 1505097654 24042
+## 5232 TRUE 1 FALSE 1505097763 24042
+## 5233 TRUE 1 FALSE 1505147445 24042
+## 5234 TRUE 1 FALSE 1505090285 24042
+## 5235 FALSE 1 FALSE 1505097835 24042
+## 5236 TRUE 1 FALSE 1505097851 24042
+## 5237 TRUE 1 FALSE 1505097854 24042
+## 5238 <NA> 1 FALSE 1505092401 24042
+## 5239 TRUE 1 FALSE 1505144309 24042
+## 5240 TRUE 1 FALSE 1505144326 24042
+## 5241 TRUE 1 FALSE 1505144340 24042
+## 5242 FALSE 1 FALSE 1505089381 24042
+## 5243 TRUE 2 FALSE 1505089423 24042
+## 5244 TRUE 1 FALSE 1505146706 24042
+## 5245 TRUE 1 FALSE 1505146718 24042
+## 5246 TRUE 1 FALSE 1505146764 24042
+## 5247 TRUE 1 FALSE 1505146773 24042
+## 5248 TRUE 1 FALSE 1505088103 24042
+## 5249 TRUE 1 FALSE 1505146939 24042
+## 5250 TRUE 1 FALSE 1505142927 24042
+## 5251 FALSE 2 FALSE 1505150358 24042
+## 5252 FALSE 3 FALSE 1505150465 24042
+## 5253 FALSE 4 FALSE 1505150638 24042
+## 5254 TRUE 1 FALSE 1505089363 24042
+## 5255 TRUE 1 FALSE 1505091068 24042
+## 5256 <NA> 1 FALSE 1505091077 24042
+## 5257 TRUE 1 FALSE 1505089466 24042
+## 5258 TRUE 1 FALSE 1505089567 24042
+## 5259 TRUE 1 FALSE 1505087201 24042
+## 5260 TRUE 1 FALSE 1505087202 24042
+## 5261 FALSE 1 FALSE 1505147731 24042
+## 5262 FALSE 2 FALSE 1505147762 24042
+## 5263 FALSE 3 FALSE 1505147776 24042
+## 5264 TRUE 4 FALSE 1505147788 24042
+## 5265 TRUE 1 FALSE 1505147843 24042
+## 5266 TRUE 1 FALSE 1505147848 24042
+## 5267 TRUE 1 FALSE 1505147878 24042
+## 5268 FALSE 5 FALSE 1505150664 24042
+## 5269 FALSE 6 FALSE 1505150692 24042
+## 5270 TRUE 1 FALSE 1505148556 24042
+## 5271 TRUE 1 FALSE 1505148558 24042
+## 5272 <NA> 1 FALSE 1505148559 24042
+## 5273 TRUE 1 FALSE 1505097776 24042
+## 5274 TRUE 1 FALSE 1505097822 24042
+## 5275 TRUE 1 FALSE 1505092351 24042
+## 5276 TRUE 1 FALSE 1505153082 24042
+## 5277 TRUE 1 FALSE 1505153138 24042
+## 5278 TRUE 1 FALSE 1505087800 24042
+## 5279 TRUE 1 FALSE 1505144300 24042
+## 5280 TRUE 2 FALSE 1505089237 24042
+## 5281 TRUE 1 FALSE 1505143853 24042
+## 5282 TRUE 1 FALSE 1505143890 24042
+## 5283 TRUE 1 FALSE 1505087082 24042
+## 5284 TRUE 1 FALSE 1505087168 24042
+## 5285 TRUE 1 FALSE 1505087191 24042
+## 5286 TRUE 1 FALSE 1505099070 24042
+## 5287 TRUE 1 FALSE 1505099151 24042
+## 5288 TRUE 1 FALSE 1505146807 24042
+## 5289 TRUE 1 FALSE 1505146815 24042
+## 5290 TRUE 1 FALSE 1505146942 24042
+## 5291 TRUE 1 FALSE 1505146950 24042
+## 5292 FALSE 1 FALSE 1505089205 24042
+## 5293 FALSE 1 FALSE 1505091904 24042
+## 5294 TRUE 1 FALSE 1505142947 24042
+## 5295 FALSE 1 FALSE 1505146994 24042
+## 5296 FALSE 2 FALSE 1505087533 24042
+## 5297 FALSE 3 FALSE 1505087538 24042
+## 5298 TRUE 1 FALSE 1505092135 24042
+## 5299 TRUE 5 FALSE 1505087585 24042
+## 5300 TRUE 1 FALSE 1505087594 24042
+## 5301 TRUE 1 FALSE 1505087368 24042
+## 5302 TRUE 1 FALSE 1505087385 24042
+## 5303 TRUE 1 FALSE 1505091720 24042
+## 5304 TRUE 1 FALSE 1505091726 24042
+## 5305 TRUE 1 FALSE 1505091821 24042
+## 5306 TRUE 1 FALSE 1505142936 24042
+## 5307 TRUE 1 FALSE 1505143839 24042
+## 5308 TRUE 1 FALSE 1505100176 24042
+## 5309 TRUE 2 FALSE 1505147010 24042
+## 5310 TRUE 1 FALSE 1505147090 24042
+## 5311 TRUE 1 FALSE 1505147193 24042
+## 5312 TRUE 1 FALSE 1505099046 24042
+## 5313 FALSE 7 FALSE 1505150753 24042
+## 5314 TRUE 2 FALSE 1505092316 24042
+## 5315 TRUE 1 FALSE 1505087637 24042
+## 5316 TRUE 1 FALSE 1505092396 24042
+## 5317 TRUE 1 FALSE 1505092400 24042
+## 5318 TRUE 2 FALSE 1505153072 24042
+## 5319 TRUE 2 FALSE 1505087440 24042
+## 5320 TRUE 1 FALSE 1505100071 24042
+## 5321 TRUE 1 FALSE 1505146968 24042
+## 5322 TRUE 1 FALSE 1505100183 24042
+## 5323 TRUE 1 FALSE 1505148220 24042
+## 5324 TRUE 1 FALSE 1505148260 24042
+## 5325 FALSE 4 FALSE 1505087551 24042
+## 5326 <NA> 1 FALSE 1505100207 24042
+## 5327 FALSE 8 FALSE 1505150819 24042
+## 5328 TRUE 1 FALSE 1505099161 24042
+## 5329 TRUE 1 FALSE 1505099202 24042
+## 5330 TRUE 1 FALSE 1505087396 24042
+## 5331 FALSE 1 FALSE 1505087423 24042
+## 5332 TRUE 1 FALSE 1505144112 24042
+## 5333 TRUE 12 FALSE 1505151039 24042
+## 5334 TRUE 1 FALSE 1505100139 24042
+## 5335 TRUE 1 FALSE 1505143077 24042
+## 5336 TRUE 1 FALSE 1505143226 24042
+## 5337 TRUE 1 FALSE 1505143319 24042
+## 5338 TRUE 1 FALSE 1505143347 24042
+## 5339 TRUE 1 FALSE 1505143373 24042
+## 5340 TRUE 1 FALSE 1505152490 24042
+## 5341 TRUE 1 FALSE 1505087626 24042
+## 5342 TRUE 1 FALSE 1505152697 24042
+## 5343 TRUE 1 FALSE 1505087643 24042
+## 5344 TRUE 1 FALSE 1505087759 24042
+## 5345 TRUE 2 FALSE 1505100034 24042
+## 5346 TRUE 1 FALSE 1505144098 24042
+## 5347 TRUE 1 FALSE 1505151072 24042
+## 5348 TRUE 1 FALSE 1505096812 24042
+## 5349 TRUE 1 FALSE 1505096821 24042
+## 5350 TRUE 1 FALSE 1505151564 24042
+## 5351 TRUE 1 FALSE 1505151585 24042
+## 5352 TRUE 1 FALSE 1505148510 24042
+## 5353 TRUE 1 FALSE 1505147346 24042
+## 5354 TRUE 1 FALSE 1505147380 24042
+## 5355 FALSE 9 FALSE 1505150835 24042
+## 5356 FALSE 10 FALSE 1505150846 24042
+## 5357 FALSE 1 FALSE 1505099998 24042
+## 5358 FALSE 1 FALSE 1505153014 24042
+## 5359 TRUE 1 FALSE 1505143514 24042
+## 5360 TRUE 1 FALSE 1505143527 24042
+## 5361 FALSE 1 FALSE 1505151502 24042
+## 5362 TRUE 1 FALSE 1505146992 24042
+## 5363 TRUE 2 FALSE 1505151538 24042
+## 5364 TRUE 1 FALSE 1505151551 24042
+## 5365 TRUE 1 FALSE 1505100194 24042
+## 5366 TRUE 1 FALSE 1505151649 24042
+## 5367 TRUE 1 FALSE 1505143996 24042
+## 5368 TRUE 1 FALSE 1505144028 24042
+## 5369 TRUE 1 FALSE 1505147405 24042
+## 5370 TRUE 1 FALSE 1505152972 24042
+## 5371 FALSE 11 FALSE 1505151008 24042
+## 5372 TRUE 1 FALSE 1505100206 24042
+## 5373 TRUE 1 FALSE 1505143419 24042
+## 5374 TRUE 1 FALSE 1505143681 24042
+## 5375 TRUE 1 FALSE 1505143775 24042
+## 5376 TRUE 1 FALSE 1505144043 24042
+## 5377 TRUE 1 FALSE 1505100205 24042
+## 5378 TRUE 1 FALSE 1505143800 24042
+## 5379 TRUE 1 FALSE 1505151599 24042
+## 5380 TRUE 1 FALSE 1505143720 24042
+## 5381 TRUE 1 FALSE 1505143462 24042
+## 5382 TRUE 1 FALSE 1505144022 24042
+## 5383 FALSE 1 FALSE 1505147420 24042
+## 5384 TRUE 1 FALSE 1505143437 24042
+## 5385 TRUE 1 FALSE 1505143941 24042
+## 5386 TRUE 1 FALSE 1504839912 64610
+## 5387 TRUE 1 FALSE 1504840037 64610
+## 5388 <NA> 1 NA 1504841457 64610
+## 5389 TRUE 1 FALSE 1504840960 64610
+## 5390 TRUE 1 FALSE 1504841449 64610
+## 5391 TRUE 1 FALSE 1504840061 64610
+## 5392 TRUE 1 FALSE 1504840087 64610
+## 5393 TRUE 1 FALSE 1504841020 64610
+## 5394 TRUE 1 FALSE 1504841054 64610
+## 5395 TRUE 1 FALSE 1504840305 64610
+## 5396 TRUE 1 FALSE 1504840316 64610
+## 5397 TRUE 1 FALSE 1504840367 64610
+## 5398 TRUE 1 FALSE 1504840398 64610
+## 5399 TRUE 1 FALSE 1504840486 64610
+## 5400 TRUE 1 FALSE 1504840913 64610
+## 5401 FALSE 1 FALSE 1504841196 64610
+## 5402 TRUE 1 FALSE 1504840095 64610
+## 5403 TRUE 1 FALSE 1504840262 64610
+## 5404 TRUE 1 FALSE 1504841063 64610
+## 5405 TRUE 1 FALSE 1504841311 64610
+## 5406 TRUE 1 FALSE 1504841395 64610
+## 5407 TRUE 1 FALSE 1504841435 64610
+## 5408 TRUE 2 FALSE 1504841253 64610
+## 5409 TRUE 1 FALSE 1504841445 64610
+## 5410 TRUE 1 FALSE 1504888964 34362
+## 5411 TRUE 2 FALSE 1506118825 34362
+## 5412 TRUE 2 TRUE 1504888707 34362
+## 5413 FALSE 1 FALSE 1504888184 34362
+## 5414 TRUE 2 FALSE 1504888209 34362
+## 5415 TRUE 1 FALSE 1504888294 34362
+## 5416 TRUE 1 FALSE 1504888888 34362
+## 5417 FALSE 1 FALSE 1506117738 34362
+## 5418 FALSE 2 FALSE 1506117755 34362
+## 5419 TRUE 3 FALSE 1506117762 34362
+## 5420 FALSE 1 FALSE 1504888327 34362
+## 5421 FALSE 1 FALSE 1506118793 34362
+## 5422 TRUE 1 FALSE 1506136575 34362
+## 5423 TRUE 1 FALSE 1506118837 34362
+## 5424 TRUE 1 FALSE 1506118744 34362
+## 5425 TRUE 1 FALSE 1504888015 34362
+## 5426 TRUE 3 FALSE 1504886090 34362
+## 5427 TRUE 1 TRUE 1504886933 34362
+## 5428 FALSE 1 FALSE 1504886956 34362
+## 5429 TRUE 2 FALSE 1504886997 34362
+## 5430 TRUE 1 TRUE 1504887286 34362
+## 5431 TRUE 1 FALSE 1504887532 34362
+## 5432 TRUE 1 FALSE 1504887572 34362
+## 5433 FALSE 1 FALSE 1504887589 34362
+## 5434 TRUE 2 FALSE 1504887595 34362
+## 5435 TRUE 1 FALSE 1504887646 34362
+## 5436 TRUE 1 FALSE 1504887680 34362
+## 5437 TRUE 1 TRUE 1504887845 34362
+## 5438 TRUE 1 FALSE 1504887910 34362
+## 5439 FALSE 7 FALSE 1506138735 34362
+## 5440 TRUE 8 FALSE 1506138777 34362
+## 5441 FALSE 1 FALSE 1506139189 34362
+## 5442 TRUE 2 FALSE 1506139211 34362
+## 5443 TRUE 1 FALSE 1506139348 34362
+## 5444 FALSE 1 FALSE 1506139802 34362
+## 5445 FALSE 2 FALSE 1506139830 34362
+## 5446 FALSE 3 FALSE 1506139891 34362
+## 5447 TRUE 4 TRUE 1506139898 34362
+## 5448 TRUE 1 FALSE 1504889009 34362
+## 5449 <NA> 1 FALSE 1504889016 34362
+## 5450 TRUE 1 FALSE 1506119495 34362
+## 5451 TRUE 1 FALSE 1506119507 34362
+## 5452 TRUE 1 FALSE 1506119536 34362
+## 5453 TRUE 1 FALSE 1506119620 34362
+## 5454 FALSE 1 FALSE 1506119624 34362
+## 5455 TRUE 2 FALSE 1506119648 34362
+## 5456 TRUE 1 FALSE 1506119657 34362
+## 5457 TRUE 1 FALSE 1506132322 34362
+## 5458 TRUE 1 FALSE 1506132357 34362
+## 5459 TRUE 1 FALSE 1506132406 34362
+## 5460 TRUE 1 FALSE 1506132426 34362
+## 5461 TRUE 1 FALSE 1506132512 34362
+## 5462 TRUE 1 FALSE 1506132524 34362
+## 5463 TRUE 1 FALSE 1506136592 34362
+## 5464 FALSE 1 FALSE 1506136643 34362
+## 5465 TRUE 2 FALSE 1506136666 34362
+## 5466 TRUE 1 FALSE 1506136682 34362
+## 5467 TRUE 1 FALSE 1506136712 34362
+## 5468 TRUE 1 FALSE 1506136717 34362
+## 5469 TRUE 1 FALSE 1506136723 34362
+## 5470 TRUE 1 FALSE 1506136737 34362
+## 5471 TRUE 1 FALSE 1506136748 34362
+## 5472 TRUE 1 FALSE 1506136760 34362
+## 5473 FALSE 1 FALSE 1506137768 34362
+## 5474 FALSE 2 FALSE 1506137860 34362
+## 5475 FALSE 3 FALSE 1506138041 34362
+## 5476 FALSE 4 FALSE 1506138121 34362
+## 5477 FALSE 5 FALSE 1506138232 34362
+## 5478 FALSE 6 FALSE 1506138625 34362
+## 5479 TRUE 1 FALSE 1506117151 34362
+## 5480 TRUE 1 FALSE 1506117472 34362
+## 5481 TRUE 1 FALSE 1506117582 34362
+## 5482 TRUE 1 FALSE 1506117600 34362
+## 5483 TRUE 1 FALSE 1506117677 34362
+## 5484 TRUE 1 FALSE 1506117706 34362
+## 5485 TRUE 1 FALSE 1506114680 34362
+## 5486 TRUE 1 FALSE 1506114712 34362
+## 5487 FALSE 1 FALSE 1506114802 34362
+## 5488 TRUE 2 FALSE 1506114816 34362
+## 5489 TRUE 1 FALSE 1506114859 34362
+## 5490 TRUE 1 FALSE 1506114893 34362
+## 5491 TRUE 1 FALSE 1506114953 34362
+## 5492 TRUE 1 FALSE 1506118853 34362
+## 5493 TRUE 1 FALSE 1506118889 34362
+## 5494 TRUE 1 FALSE 1506118936 34362
+## 5495 TRUE 1 FALSE 1506118958 34362
+## 5496 FALSE 1 FALSE 1506118992 34362
+## 5497 TRUE 2 FALSE 1506119005 34362
+## 5498 TRUE 1 FALSE 1506119019 34362
+## 5499 TRUE 1 FALSE 1506119032 34362
+## 5500 TRUE 1 FALSE 1506119039 34362
+## 5501 TRUE 1 FALSE 1506119041 34362
+## 5502 TRUE 1 FALSE 1506112971 34362
+## 5503 TRUE 1 FALSE 1506113006 34362
+## 5504 TRUE 1 FALSE 1506113015 34362
+## 5505 TRUE 1 FALSE 1506113019 34362
+## 5506 <NA> 1 FALSE 1506113020 34362
+## 5507 TRUE 1 FALSE 1506113278 34362
+## 5508 TRUE 1 FALSE 1506113324 34362
+## 5509 TRUE 1 FALSE 1506113760 34362
+## 5510 TRUE 1 FALSE 1506113769 34362
+## 5511 TRUE 1 FALSE 1506113810 34362
+## 5512 TRUE 1 FALSE 1506113812 34362
+## 5513 TRUE 1 FALSE 1506113916 34362
+## 5514 TRUE 1 FALSE 1506113926 34362
+## 5515 TRUE 1 FALSE 1506113938 34362
+## 5516 TRUE 1 FALSE 1506113970 34362
+## 5517 FALSE 1 FALSE 1506114051 34362
+## 5518 FALSE 2 FALSE 1506114094 34362
+## 5519 FALSE 3 FALSE 1506114277 34362
+## 5520 TRUE 4 FALSE 1506114287 34362
+## 5521 TRUE 1 FALSE 1506114375 34362
+## 5522 FALSE 1 FALSE 1506114412 34362
+## 5523 TRUE 2 FALSE 1506114468 34362
+## 5524 TRUE 1 FALSE 1506114663 34362
+## 5525 FALSE 1 FALSE 1506110768 34362
+## 5526 FALSE 2 FALSE 1506111038 34362
+## 5527 FALSE 3 FALSE 1506111097 34362
+## 5528 TRUE 4 FALSE 1506111119 34362
+## 5529 TRUE 1 FALSE 1506111166 34362
+## 5530 TRUE 1 FALSE 1506111231 34362
+## 5531 TRUE 1 FALSE 1506111233 34362
+## 5532 FALSE 1 FALSE 1506114975 34362
+## 5533 TRUE 2 FALSE 1506115001 34362
+## 5534 TRUE 1 FALSE 1506115038 34362
+## 5535 FALSE 1 FALSE 1506115043 34362
+## 5536 TRUE 2 FALSE 1506115062 34362
+## 5537 TRUE 1 FALSE 1506115083 34362
+## 5538 TRUE 1 FALSE 1506115222 34362
+## 5539 TRUE 1 FALSE 1506115225 34362
+## 5540 <NA> 1 FALSE 1506115226 34362
+## 5541 TRUE 1 FALSE 1506115908 34362
+## 5542 FALSE 1 FALSE 1506115988 34362
+## 5543 TRUE 2 FALSE 1506116001 34362
+## 5544 TRUE 1 FALSE 1506116063 34362
+## 5545 TRUE 1 FALSE 1506116101 34362
+## 5546 TRUE 1 FALSE 1506116112 34362
+## 5547 TRUE 1 FALSE 1506116129 34362
+## 5548 TRUE 1 FALSE 1506116143 34362
+## 5549 TRUE 1 FALSE 1506116182 34362
+## 5550 FALSE 1 FALSE 1506116220 34362
+## 5551 FALSE 2 FALSE 1506116393 34362
+## 5552 TRUE 3 FALSE 1506116401 34362
+## 5553 TRUE 1 FALSE 1506116527 34362
+## 5554 TRUE 1 FALSE 1506116542 34362
+## 5555 TRUE 1 FALSE 1506116948 34362
+## 5556 TRUE 1 FALSE 1506116972 34362
+## 5557 TRUE 1 FALSE 1506117021 34362
+## 5558 TRUE 1 FALSE 1506117051 34362
+## 5559 TRUE 1 FALSE 1506117065 34362
+## 5560 FALSE 2 FALSE 1506110381 34362
+## 5561 FALSE 3 FALSE 1506110401 34362
+## 5562 TRUE 4 FALSE 1506110484 34362
+## 5563 FALSE 1 FALSE 1506110533 34362
+## 5564 TRUE 2 FALSE 1506110591 34362
+## 5565 TRUE 1 FALSE 1506119115 34362
+## 5566 TRUE 1 FALSE 1506119126 34362
+## 5567 TRUE 1 FALSE 1506119137 34362
+## 5568 TRUE 1 FALSE 1506119259 34362
+## 5569 TRUE 1 FALSE 1506119448 34362
+## 5570 FALSE 1 FALSE 1506119453 34362
+## 5571 TRUE 2 FALSE 1506119458 34362
+## 5572 <NA> 1 FALSE 1506111234 34362
+## 5573 TRUE 1 FALSE 1506111521 34362
+## 5574 TRUE 1 FALSE 1506111528 34362
+## 5575 TRUE 1 FALSE 1506111608 34362
+## 5576 TRUE 1 FALSE 1506111636 34362
+## 5577 TRUE 1 FALSE 1506111683 34362
+## 5578 TRUE 1 FALSE 1506111716 34362
+## 5579 TRUE 1 FALSE 1506111720 34362
+## 5580 TRUE 1 FALSE 1506111759 34362
+## 5581 TRUE 1 FALSE 1506112837 34362
+## 5582 TRUE 1 FALSE 1506112865 34362
+## 5583 TRUE 1 TRUE 1504885877 34362
+## 5584 TRUE 1 FALSE 1506109084 34362
+## 5585 TRUE 1 TRUE 1506109339 34362
+## 5586 TRUE 1 FALSE 1506109387 34362
+## 5587 TRUE 1 FALSE 1506109391 34362
+## 5588 TRUE 1 FALSE 1506109755 34362
+## 5589 TRUE 1 FALSE 1506109906 34362
+## 5590 TRUE 1 FALSE 1506109918 34362
+## 5591 TRUE 1 FALSE 1506109951 34362
+## 5592 FALSE 1 FALSE 1506110113 34362
+## 5593 TRUE 2 FALSE 1506110152 34362
+## 5594 TRUE 1 FALSE 1506110158 34362
+## 5595 TRUE 1 FALSE 1506110209 34362
+## 5596 FALSE 1 FALSE 1506110295 34362
+## 5597 TRUE 2 FALSE 1506110315 34362
+## 5598 TRUE 1 FALSE 1506110320 34362
+## 5599 FALSE 1 FALSE 1506110359 34362
+## 5600 TRUE 1 FALSE 1506107547 34362
+## 5601 TRUE 1 FALSE 1506107860 34362
+## 5602 TRUE 1 FALSE 1506107992 34362
+## 5603 FALSE 1 FALSE 1506108017 34362
+## 5604 TRUE 2 FALSE 1506108034 34362
+## 5605 TRUE 1 FALSE 1506104895 34362
+## 5606 TRUE 1 FALSE 1506104920 34362
+## 5607 TRUE 1 FALSE 1506104924 34362
+## 5608 TRUE 1 FALSE 1506105185 34362
+## 5609 TRUE 1 FALSE 1506105211 34362
+## 5610 TRUE 1 FALSE 1506105226 34362
+## 5611 TRUE 1 FALSE 1506105951 34362
+## 5612 FALSE 1 FALSE 1506119480 34362
+## 5613 TRUE 2 FALSE 1506119491 34362
+## 5614 FALSE 3 FALSE 1506140142 34362
+## 5615 TRUE 4 TRUE 1506140241 34362
+## 5616 FALSE 1 FALSE 1506140322 34362
+## 5617 TRUE 2 FALSE 1506140327 34362
+## 5618 TRUE 1 FALSE 1506140378 34362
+## 5619 FALSE 1 FALSE 1506140933 34362
+## 5620 TRUE 2 FALSE 1506140983 34362
+## 5621 TRUE 1 FALSE 1506141096 34362
+## 5622 FALSE 1 FALSE 1506142241 34362
+## 5623 FALSE 2 FALSE 1506142386 34362
+## 5624 TRUE 1 TRUE 1504885915 34362
+## 5625 TRUE 1 FALSE 1504885972 34362
+## 5626 TRUE 1 FALSE 1504885986 34362
+## 5627 TRUE 1 FALSE 1504886007 34362
+## 5628 FALSE 1 FALSE 1504886026 34362
+## 5629 FALSE 2 FALSE 1504886063 34362
+## 5630 FALSE 1 FALSE 1506106778 34362
+## 5631 TRUE 2 FALSE 1506106797 34362
+## 5632 TRUE 1 FALSE 1506106940 34362
+## 5633 TRUE 1 FALSE 1506107201 34362
+## 5634 TRUE 1 FALSE 1506107296 34362
+## 5635 TRUE 1 FALSE 1506107336 34362
+## 5636 TRUE 1 FALSE 1506107362 34362
+## 5637 TRUE 1 FALSE 1506107383 34362
+## 5638 FALSE 1 FALSE 1506107452 34362
+## 5639 TRUE 2 FALSE 1506107463 34362
+## 5640 TRUE 1 FALSE 1506106018 34362
+## 5641 TRUE 1 FALSE 1506106043 34362
+## 5642 TRUE 1 FALSE 1506106055 34362
+## 5643 TRUE 1 FALSE 1506104741 34362
+## 5644 TRUE 1 FALSE 1506104870 34362
+## 5645 TRUE 1 FALSE 1506106117 34362
+## 5646 TRUE 1 FALSE 1506108350 34362
+## 5647 TRUE 1 FALSE 1506108369 34362
+## 5648 FALSE 1 FALSE 1506108421 34362
+## 5649 TRUE 2 FALSE 1506108577 34362
+## 5650 FALSE 1 FALSE 1506108806 34362
+## 5651 TRUE 2 FALSE 1506108820 34362
+## 5652 TRUE 1 FALSE 1506105962 34362
+## 5653 TRUE 1 TRUE 1506142792 34362
+## 5654 TRUE 1 TRUE 1506132695 34362
+## 5655 FALSE 1 FALSE 1506132764 34362
+## 5656 TRUE 1 FALSE 1506106088 34362
+## 5657 TRUE 1 FALSE 1506106112 34362
+## 5658 TRUE 1 FALSE 1506132845 34362
+## 5659 TRUE 1 FALSE 1506106207 34362
+## 5660 TRUE 1 FALSE 1506106233 34362
+## 5661 TRUE 1 FALSE 1506106320 34362
+## 5662 TRUE 1 FALSE 1506106358 34362
+## 5663 TRUE 1 FALSE 1506106366 34362
+## 5664 FALSE 3 FALSE 1506142573 34362
+## 5665 TRUE 4 TRUE 1506142686 34362
+## 5666 TRUE 1 FALSE 1506108879 34362
+## 5667 TRUE 1 FALSE 1506108883 34362
+## 5668 <NA> 1 FALSE 1506108884 34362
+## 5669 TRUE 2 FALSE 1506132825 34362
+## 5670 TRUE 1 FALSE 1506132831 34362
+## 5671 TRUE 1 FALSE 1506106670 34362
+## 5672 TRUE 1 FALSE 1506132908 34362
+## 5673 TRUE 1 FALSE 1506132929 34362
+## 5674 TRUE 1 FALSE 1506132958 34362
+## 5675 TRUE 1 FALSE 1506132975 34362
+## 5676 TRUE 1 FALSE 1506132977 34362
+## 5677 <NA> 1 FALSE 1506132978 34362
+## 5678 TRUE 1 FALSE 1506106370 34362
+## 5679 <NA> 1 FALSE 1506119042 34362
+## 5680 TRUE 1 FALSE 1506106592 34362
+## 5681 TRUE 1 FALSE 1506106606 34362
+## 5682 FALSE 2 FALSE 1506140133 34362
+## 5683 TRUE 1 FALSE 1506106656 34362
+## 5684 TRUE 2 TRUE 1506143157 34362
+## 5685 FALSE 2 FALSE 1506143252 34362
+## 5686 FALSE 3 FALSE 1506143268 34362
+## 5687 FALSE 4 FALSE 1506143292 34362
+## 5688 TRUE 5 TRUE 1506143300 34362
+## 5689 TRUE 1 FALSE 1506143310 34362
+## 5690 TRUE 1 FALSE 1506143312 34362
+## 5691 <NA> 1 FALSE 1506143314 34362
+## 5692 FALSE 1 FALSE 1506140022 34362
+## 5693 <NA> 1 NA 1506106377 34362
+## 5694 TRUE 1 FALSE 1506136516 34362
+## 5695 TRUE 1 FALSE 1506106648 34362
+## 5696 TRUE 1 FALSE 1506136526 34362
+## 5697 TRUE 1 FALSE 1506136538 34362
+## 5698 FALSE 1 FALSE 1506143231 34362
+## 5699 FALSE 1 FALSE 1506143130 34362
+## 5700 <NA> 1 NA 1505233838 35235
+## 5701 TRUE 1 FALSE 1505233830 35235
+## 5702 TRUE 1 FALSE 1505159998 35235
+## 5703 TRUE 1 FALSE 1505233569 35235
+## 5704 TRUE 1 FALSE 1505159873 35235
+## 5705 TRUE 1 FALSE 1505159831 35235
+## 5706 TRUE 1 FALSE 1505228886 35235
+## 5707 TRUE 1 FALSE 1505233824 35235
+## 5708 TRUE 2 FALSE 1505159957 35235
+## 5709 FALSE 1 FALSE 1505159959 35235
+## 5710 TRUE 1 FALSE 1505160038 35235
+## 5711 TRUE 1 FALSE 1505228880 35235
+## 5712 TRUE 1 FALSE 1505160013 35235
+## 5713 TRUE 1 FALSE 1505233585 35235
+## 5714 TRUE 1 FALSE 1505233657 35235
+## 5715 TRUE 1 FALSE 1505233766 35235
+## 5716 TRUE 1 FALSE 1505160064 35235
+## 5717 TRUE 1 FALSE 1505233815 35235
+## 5718 TRUE 1 FALSE 1505233722 35235
+## 5719 TRUE 2 FALSE 1505228867 35235
+## 5720 FALSE 1 FALSE 1505159909 35235
+## 5721 TRUE 1 FALSE 1505233578 35235
+## 5722 TRUE 2 FALSE 1505159969 35235
+## 5723 TRUE 1 FALSE 1505160053 35235
+## 5724 FALSE 1 FALSE 1505228847 35235
+## 5725 TRUE 1 FALSE 1505159886 35235
+The variables are:
+course_name - the name of the R course the student attempted
+lesson_name - the lesson name
+question_number - the question number attempted correct - whether the question was answered correctly
+attempt - how many times the student attempted the question
+skipped - whether the student skipped the question
+datetime - the date and time the student attempted the question
+hash - anonymyzed student ID
hash, lesson_name and attempt called DF2library(dplyr)
+DF2 <- dplyr::select(DF1, hash, lesson_name, attempt)
+DF2
+## hash lesson_name attempt
+## 1 30802 Dates and Times 1
+## 2 30802 Functions 1
+## 3 30802 Basic Building Blocks 1
+## 4 30802 Dates and Times 1
+## 5 30802 Dates and Times 1
+## 6 30802 Workspace and Files 1
+## 7 30802 Functions 1
+## 8 30802 Dates and Times 1
+## 9 30802 Dates and Times 1
+## 10 30802 Dates and Times 1
+## 11 30802 Basic Building Blocks 1
+## 12 30802 Vectors 1
+## 13 30802 Basic Building Blocks 1
+## 14 30802 Vectors 2
+## 15 30802 Workspace and Files 1
+## 16 30802 Subsetting Vectors 1
+## 17 30802 Dates and Times 1
+## 18 30802 Subsetting Vectors 1
+## 19 30802 Vectors 1
+## 20 30802 Dates and Times 1
+## 21 30802 Subsetting Vectors 1
+## 22 30802 Dates and Times 1
+## 23 30802 Dates and Times 1
+## 24 30802 Subsetting Vectors 1
+## 25 30802 Functions 1
+## 26 30802 Subsetting Vectors 1
+## 27 30802 Basic Building Blocks 1
+## 28 30802 Vectors 1
+## 29 30802 Logic 1
+## 30 30802 Basic Building Blocks 1
+## 31 30802 Workspace and Files 1
+## 32 30802 Workspace and Files 1
+## 33 30802 Subsetting Vectors 1
+## 34 30802 Dates and Times 1
+## 35 30802 Workspace and Files 1
+## 36 30802 Dates and Times 1
+## 37 30802 Dates and Times 1
+## 38 30802 Vectors 1
+## 39 30802 Subsetting Vectors 1
+## 40 30802 Subsetting Vectors 1
+## 41 30802 Basic Building Blocks 1
+## 42 30802 Dates and Times 1
+## 43 30802 Dates and Times 1
+## 44 30802 Basic Building Blocks 1
+## 45 30802 Subsetting Vectors 1
+## 46 30802 Logic 1
+## 47 30802 Workspace and Files 1
+## 48 30802 Subsetting Vectors 1
+## 49 30802 Logic 1
+## 50 30802 Logic 2
+## 51 30802 Subsetting Vectors 1
+## 52 30802 Functions 1
+## 53 30802 Logic 1
+## 54 30802 Dates and Times 1
+## 55 30802 Vectors 1
+## 56 30802 Basic Building Blocks 1
+## 57 30802 Logic 1
+## 58 30802 Logic 1
+## 59 30802 Missing Values 1
+## 60 30802 Logic 2
+## 61 30802 Workspace and Files 1
+## 62 30802 Subsetting Vectors 1
+## 63 30802 Workspace and Files 1
+## 64 30802 Workspace and Files 1
+## 65 30802 Dates and Times 1
+## 66 30802 Logic 1
+## 67 30802 Basic Building Blocks 1
+## 68 30802 Dates and Times 1
+## 69 30802 Missing Values 1
+## 70 30802 Missing Values 1
+## 71 30802 Missing Values 1
+## 72 30802 Subsetting Vectors 1
+## 73 30802 Logic 1
+## 74 30802 Logic 1
+## 75 30802 Logic 1
+## 76 30802 Dates and Times 1
+## 77 30802 Dates and Times 1
+## 78 30802 Dates and Times 1
+## 79 30802 Functions 1
+## 80 30802 Dates and Times 1
+## 81 30802 Logic 1
+## 82 30802 Dates and Times 1
+## 83 30802 Missing Values 1
+## 84 30802 Workspace and Files 1
+## 85 30802 Workspace and Files 1
+## 86 30802 Functions 1
+## 87 30802 Basic Building Blocks 1
+## 88 30802 Basic Building Blocks 1
+## 89 30802 Basic Building Blocks 1
+## 90 30802 Subsetting Vectors 1
+## 91 30802 Dates and Times 1
+## 92 30802 Subsetting Vectors 1
+## 93 30802 Vectors 1
+## 94 30802 Vectors 1
+## 95 30802 Workspace and Files 1
+## 96 30802 Workspace and Files 1
+## 97 30802 Functions 1
+## 98 30802 Logic 1
+## 99 30802 Workspace and Files 1
+## 100 30802 Workspace and Files 1
+## 101 30802 Missing Values 1
+## 102 30802 Workspace and Files 1
+## 103 30802 Workspace and Files 1
+## 104 30802 Subsetting Vectors 1
+## 105 30802 Workspace and Files 2
+## 106 30802 Workspace and Files 1
+## 107 30802 Dates and Times 1
+## 108 30802 Subsetting Vectors 1
+## 109 30802 Workspace and Files 1
+## 110 30802 Workspace and Files 1
+## 111 30802 Logic 1
+## 112 30802 Logic 1
+## 113 30802 Logic 1
+## 114 30802 Dates and Times 1
+## 115 30802 Subsetting Vectors 1
+## 116 30802 Subsetting Vectors 1
+## 117 30802 Subsetting Vectors 1
+## 118 30802 Subsetting Vectors 1
+## 119 30802 Vectors 1
+## 120 30802 Subsetting Vectors 1
+## 121 30802 Workspace and Files 1
+## 122 30802 Missing Values 1
+## 123 30802 Missing Values 1
+## 124 30802 Missing Values 1
+## 125 30802 Logic 1
+## 126 30802 Logic 1
+## 127 30802 Vectors 1
+## 128 30802 Logic 1
+## 129 30802 Logic 1
+## 130 30802 Basic Building Blocks 1
+## 131 30802 Basic Building Blocks 1
+## 132 30802 Subsetting Vectors 1
+## 133 30802 Logic 1
+## 134 30802 Basic Building Blocks 2
+## 135 30802 Basic Building Blocks 1
+## 136 30802 Basic Building Blocks 1
+## 137 30802 Logic 1
+## 138 30802 Missing Values 1
+## 139 30802 Missing Values 1
+## 140 30802 Workspace and Files 1
+## 141 30802 Workspace and Files 1
+## 142 30802 Logic 1
+## 143 30802 Workspace and Files 1
+## 144 30802 Logic 2
+## 145 30802 Logic 1
+## 146 30802 Basic Building Blocks 1
+## 147 30802 Missing Values 1
+## 148 30802 Missing Values 1
+## 149 30802 Logic 1
+## 150 30802 Logic 1
+## 151 30802 Functions 1
+## 152 30802 Functions 1
+## 153 30802 Subsetting Vectors 1
+## 154 30802 Subsetting Vectors 1
+## 155 30802 Dates and Times 1
+## 156 30802 Functions 1
+## 157 30802 Vectors 1
+## 158 30802 Vectors 1
+## 159 30802 Missing Values 1
+## 160 30802 Functions 1
+## 161 30802 Functions 1
+## 162 30802 Functions 1
+## 163 30802 Functions 1
+## 164 30802 Logic 1
+## 165 30802 Functions 1
+## 166 30802 Functions 2
+## 167 30802 Logic 1
+## 168 30802 Functions 1
+## 169 30802 Logic 1
+## 170 30802 Functions 1
+## 171 30802 Functions 1
+## 172 30802 Logic 1
+## 173 30802 Functions 1
+## 174 30802 Functions 1
+## 175 30802 Functions 1
+## 176 30802 Logic 1
+## 177 30802 Functions 1
+## 178 30802 Vectors 1
+## 179 30802 Functions 1
+## 180 30802 Dates and Times 1
+## 181 30802 Logic 1
+## 182 30802 Subsetting Vectors 1
+## 183 30802 Functions 1
+## 184 30802 Missing Values 1
+## 185 30802 Logic 1
+## 186 30802 Vectors 1
+## 187 30802 Vectors 1
+## 188 30802 Vectors 1
+## 189 30802 Basic Building Blocks 1
+## 190 30802 Functions 1
+## 191 30802 Functions 1
+## 192 30802 Vectors 1
+## 193 30802 Vectors 1
+## 194 30802 Dates and Times 1
+## 195 30802 Functions 2
+## 196 30802 Vectors 1
+## 197 30802 Functions 1
+## 198 30802 Basic Building Blocks 1
+## 199 30802 Basic Building Blocks 1
+## 200 30802 Functions 1
+## 201 30802 Functions 3
+## 202 30802 Functions 4
+## 203 30802 Logic 1
+## 204 30802 Logic 1
+## 205 30802 Vectors 1
+## 206 30802 Vectors 1
+## 207 30802 Functions 1
+## 208 30802 Subsetting Vectors 1
+## 209 30802 Basic Building Blocks 1
+## 210 30802 Basic Building Blocks 1
+## 211 30802 Basic Building Blocks 1
+## 212 30802 Vectors 2
+## 213 30802 Logic 1
+## 214 30802 Logic 1
+## 215 78719 Basic Building Blocks 1
+## 216 78719 Missing Values 1
+## 217 78719 Missing Values 1
+## 218 78719 Missing Values 1
+## 219 78719 Missing Values 2
+## 220 78719 Basic Building Blocks 1
+## 221 78719 Tidying Data with tidyr 1
+## 222 78719 Tidying Data with tidyr 1
+## 223 78719 Missing Values 2
+## 224 78719 Missing Values 1
+## 225 78719 Tidying Data with tidyr 2
+## 226 78719 Tidying Data with tidyr 1
+## 227 78719 Subsetting Vectors 1
+## 228 78719 Subsetting Vectors 1
+## 229 78719 Missing Values 1
+## 230 78719 Tidying Data with tidyr 1
+## 231 78719 Tidying Data with tidyr 1
+## 232 78719 Tidying Data with tidyr 3
+## 233 78719 Missing Values 1
+## 234 78719 Tidying Data with tidyr 1
+## 235 78719 Subsetting Vectors 1
+## 236 78719 Missing Values 1
+## 237 78719 Dates and Times 1
+## 238 78719 Missing Values 1
+## 239 78719 Subsetting Vectors 1
+## 240 78719 Tidying Data with tidyr 2
+## 241 78719 Dates and Times 1
+## 242 78719 Tidying Data with tidyr 1
+## 243 78719 Dates and Times 2
+## 244 78719 Missing Values 1
+## 245 78719 Missing Values 1
+## 246 78719 Basic Building Blocks 3
+## 247 78719 Functions 1
+## 248 78719 Subsetting Vectors 1
+## 249 78719 Missing Values 1
+## 250 78719 Looking at Data 1
+## 251 78719 Grouping and Chaining with dplyr 1
+## 252 78719 Grouping and Chaining with dplyr 1
+## 253 78719 Manipulating Data with dplyr 1
+## 254 78719 Subsetting Vectors 1
+## 255 78719 Logic 1
+## 256 78719 Basic Building Blocks 1
+## 257 78719 Tidying Data with tidyr 1
+## 258 78719 Tidying Data with tidyr 1
+## 259 78719 Tidying Data with tidyr 1
+## 260 78719 Tidying Data with tidyr 1
+## 261 78719 Basic Building Blocks 2
+## 262 78719 Looking at Data 1
+## 263 78719 Looking at Data 1
+## 264 78719 Missing Values 1
+## 265 78719 Missing Values 1
+## 266 78719 Tidying Data with tidyr 1
+## 267 78719 Logic 1
+## 268 78719 Dates and Times 1
+## 269 78719 Functions 1
+## 270 78719 Dates and Times 1
+## 271 78719 Dates and Times 2
+## 272 78719 Subsetting Vectors 1
+## 273 78719 Subsetting Vectors 1
+## 274 78719 Tidying Data with tidyr 1
+## 275 78719 Missing Values 1
+## 276 78719 Missing Values 2
+## 277 78719 Basic Building Blocks 1
+## 278 78719 Functions 1
+## 279 78719 Logic 1
+## 280 78719 Tidying Data with tidyr 1
+## 281 78719 Functions 1
+## 282 78719 Grouping and Chaining with dplyr 1
+## 283 78719 Functions 2
+## 284 78719 Tidying Data with tidyr 1
+## 285 78719 Dates and Times 1
+## 286 78719 Missing Values 1
+## 287 78719 Subsetting Vectors 1
+## 288 78719 Basic Building Blocks 1
+## 289 78719 Basic Building Blocks 1
+## 290 78719 Tidying Data with tidyr 1
+## 291 78719 Tidying Data with tidyr 1
+## 292 78719 Tidying Data with tidyr 1
+## 293 78719 Dates and Times 1
+## 294 78719 Tidying Data with tidyr 2
+## 295 78719 Logic 1
+## 296 78719 Subsetting Vectors 1
+## 297 78719 Logic 1
+## 298 78719 Tidying Data with tidyr 1
+## 299 78719 Tidying Data with tidyr 1
+## 300 78719 Tidying Data with tidyr 1
+## 301 78719 Tidying Data with tidyr 2
+## 302 78719 Dates and Times 1
+## 303 78719 Tidying Data with tidyr 1
+## 304 78719 Functions 1
+## 305 78719 Logic 1
+## 306 78719 Workspace and Files 1
+## 307 78719 Dates and Times 1
+## 308 78719 Tidying Data with tidyr 1
+## 309 78719 Logic 1
+## 310 78719 Subsetting Vectors 1
+## 311 78719 Workspace and Files 1
+## 312 78719 Workspace and Files 1
+## 313 78719 Workspace and Files 1
+## 314 78719 Basic Building Blocks 1
+## 315 78719 Subsetting Vectors 2
+## 316 78719 Workspace and Files 1
+## 317 78719 Workspace and Files 1
+## 318 78719 Workspace and Files 1
+## 319 78719 Grouping and Chaining with dplyr 1
+## 320 78719 Workspace and Files 1
+## 321 78719 Grouping and Chaining with dplyr 1
+## 322 78719 Subsetting Vectors 1
+## 323 78719 Logic 1
+## 324 78719 Basic Building Blocks 1
+## 325 78719 Basic Building Blocks 1
+## 326 78719 Basic Building Blocks 1
+## 327 78719 Dates and Times 1
+## 328 78719 Dates and Times 1
+## 329 78719 Logic 1
+## 330 78719 Vectors 1
+## 331 78719 Logic 1
+## 332 78719 Dates and Times 1
+## 333 78719 Looking at Data 1
+## 334 78719 Workspace and Files 1
+## 335 78719 Workspace and Files 1
+## 336 78719 Manipulating Data with dplyr 2
+## 337 78719 Manipulating Data with dplyr 1
+## 338 78719 Manipulating Data with dplyr 1
+## 339 78719 Basic Building Blocks 1
+## 340 78719 Basic Building Blocks 1
+## 341 78719 Logic 1
+## 342 78719 Basic Building Blocks 1
+## 343 78719 Logic 1
+## 344 78719 Basic Building Blocks 1
+## 345 78719 Basic Building Blocks 1
+## 346 78719 Basic Building Blocks 1
+## 347 78719 Basic Building Blocks 2
+## 348 78719 Workspace and Files 1
+## 349 78719 Tidying Data with tidyr 3
+## 350 78719 Basic Building Blocks 1
+## 351 78719 Basic Building Blocks 1
+## 352 78719 Subsetting Vectors 1
+## 353 78719 Basic Building Blocks 1
+## 354 78719 Basic Building Blocks 1
+## 355 78719 Vectors 1
+## 356 78719 Basic Building Blocks 1
+## 357 78719 Vectors 1
+## 358 78719 Grouping and Chaining with dplyr 1
+## 359 78719 Grouping and Chaining with dplyr 1
+## 360 78719 Grouping and Chaining with dplyr 1
+## 361 78719 Logic 2
+## 362 78719 Logic 1
+## 363 78719 Tidying Data with tidyr 1
+## 364 78719 Logic 1
+## 365 78719 Logic 1
+## 366 78719 Manipulating Data with dplyr 1
+## 367 78719 Logic 1
+## 368 78719 Subsetting Vectors 1
+## 369 78719 Subsetting Vectors 1
+## 370 78719 Functions 1
+## 371 78719 Functions 2
+## 372 78719 Looking at Data 1
+## 373 78719 Workspace and Files 1
+## 374 78719 Vectors 1
+## 375 78719 Manipulating Data with dplyr 1
+## 376 78719 Workspace and Files 2
+## 377 78719 Looking at Data 1
+## 378 78719 Looking at Data 1
+## 379 78719 Functions 3
+## 380 78719 Functions 1
+## 381 78719 Functions 1
+## 382 78719 Functions 2
+## 383 78719 Functions 1
+## 384 78719 Functions 2
+## 385 78719 Functions 1
+## 386 78719 Functions 1
+## 387 78719 Functions 1
+## 388 78719 Basic Building Blocks 3
+## 389 78719 Basic Building Blocks 1
+## 390 78719 Workspace and Files 1
+## 391 78719 Vectors 1
+## 392 78719 Vectors 1
+## 393 78719 Vectors 1
+## 394 78719 Vectors 1
+## 395 78719 Subsetting Vectors 1
+## 396 78719 Vectors 1
+## 397 78719 Subsetting Vectors 1
+## 398 78719 Subsetting Vectors 1
+## 399 78719 Subsetting Vectors 1
+## 400 78719 Logic 1
+## 401 78719 Subsetting Vectors 2
+## 402 78719 Subsetting Vectors 1
+## 403 78719 Matrices and Data Frames 1
+## 404 78719 Tidying Data with tidyr 1
+## 405 78719 Subsetting Vectors 1
+## 406 78719 Subsetting Vectors 1
+## 407 78719 Subsetting Vectors 1
+## 408 78719 Workspace and Files 1
+## 409 78719 Workspace and Files 1
+## 410 78719 Workspace and Files 1
+## 411 78719 Workspace and Files 1
+## 412 78719 Workspace and Files 1
+## 413 78719 Vectors 1
+## 414 78719 Matrices and Data Frames 1
+## 415 78719 Matrices and Data Frames 1
+## 416 78719 Matrices and Data Frames 1
+## 417 78719 Workspace and Files 1
+## 418 78719 Workspace and Files 1
+## 419 78719 Workspace and Files 1
+## 420 78719 Tidying Data with tidyr 1
+## 421 78719 Tidying Data with tidyr 1
+## 422 78719 Tidying Data with tidyr 1
+## 423 78719 Workspace and Files 1
+## 424 78719 Workspace and Files 1
+## 425 78719 Tidying Data with tidyr 1
+## 426 78719 Tidying Data with tidyr 1
+## 427 78719 Tidying Data with tidyr 1
+## 428 78719 Tidying Data with tidyr 2
+## 429 78719 Basic Building Blocks 4
+## 430 78719 Basic Building Blocks 1
+## 431 78719 Dates and Times 1
+## 432 78719 Dates and Times 1
+## 433 78719 Tidying Data with tidyr 4
+## 434 78719 Subsetting Vectors 1
+## 435 78719 Grouping and Chaining with dplyr 1
+## 436 78719 Subsetting Vectors 1
+## 437 78719 Grouping and Chaining with dplyr 1
+## 438 78719 Grouping and Chaining with dplyr 1
+## 439 78719 Tidying Data with tidyr 1
+## 440 78719 Subsetting Vectors 1
+## 441 78719 Vectors 1
+## 442 78719 Vectors 1
+## 443 78719 Vectors 1
+## 444 78719 Vectors 1
+## 445 78719 Vectors 1
+## 446 78719 Vectors 1
+## 447 78719 Vectors 2
+## 448 78719 Vectors 1
+## 449 78719 Vectors 1
+## 450 78719 Vectors 2
+## 451 78719 Vectors 1
+## 452 78719 Vectors 1
+## 453 78719 Tidying Data with tidyr 2
+## 454 78719 Grouping and Chaining with dplyr 1
+## 455 78719 Grouping and Chaining with dplyr 1
+## 456 78719 Tidying Data with tidyr 1
+## 457 78719 Matrices and Data Frames 1
+## 458 78719 Matrices and Data Frames 1
+## 459 78719 Matrices and Data Frames 1
+## 460 78719 Manipulating Data with dplyr 1
+## 461 78719 Manipulating Data with dplyr 1
+## 462 78719 Manipulating Data with dplyr 1
+## 463 78719 Manipulating Data with dplyr 2
+## 464 78719 Manipulating Data with dplyr 1
+## 465 78719 Manipulating Data with dplyr 2
+## 466 78719 Manipulating Data with dplyr 1
+## 467 78719 Dates and Times 1
+## 468 78719 Dates and Times 2
+## 469 78719 Tidying Data with tidyr 1
+## 470 78719 Workspace and Files 1
+## 471 78719 Grouping and Chaining with dplyr 1
+## 472 78719 Grouping and Chaining with dplyr 2
+## 473 78719 Grouping and Chaining with dplyr 1
+## 474 78719 Grouping and Chaining with dplyr 1
+## 475 78719 Dates and Times 1
+## 476 78719 Grouping and Chaining with dplyr 1
+## 477 78719 Tidying Data with tidyr 6
+## 478 78719 Tidying Data with tidyr 7
+## 479 78719 Tidying Data with tidyr 8
+## 480 78719 Tidying Data with tidyr 1
+## 481 78719 Tidying Data with tidyr 1
+## 482 78719 Tidying Data with tidyr 1
+## 483 78719 Tidying Data with tidyr 2
+## 484 78719 Dates and Times 1
+## 485 78719 Dates and Times 1
+## 486 78719 Functions 1
+## 487 78719 Functions 1
+## 488 78719 Functions 1
+## 489 78719 Functions 1
+## 490 78719 Functions 1
+## 491 78719 Functions 1
+## 492 78719 Functions 2
+## 493 78719 Matrices and Data Frames 1
+## 494 78719 Looking at Data 1
+## 495 78719 Tidying Data with tidyr 1
+## 496 78719 Manipulating Data with dplyr 1
+## 497 78719 Tidying Data with tidyr 1
+## 498 78719 Tidying Data with tidyr 1
+## 499 78719 Tidying Data with tidyr 1
+## 500 78719 Looking at Data 1
+## 501 78719 Subsetting Vectors 1
+## 502 78719 Looking at Data 1
+## 503 78719 Plotting_Systems 1
+## 504 78719 Plotting_Systems 1
+## 505 78719 Plotting_Systems 1
+## 506 78719 Plotting_Systems 2
+## 507 78719 Plotting_Systems 1
+## 508 78719 Plotting_Systems 1
+## 509 78719 Dates and Times 1
+## 510 78719 Dates and Times 1
+## 511 78719 Dates and Times 1
+## 512 78719 Tidying Data with tidyr 1
+## 513 78719 Tidying Data with tidyr 2
+## 514 78719 Tidying Data with tidyr 1
+## 515 78719 Plotting_Systems 1
+## 516 78719 Tidying Data with tidyr 5
+## 517 78719 Tidying Data with tidyr 1
+## 518 78719 Plotting_Systems 1
+## 519 78719 Plotting_Systems 1
+## 520 78719 Tidying Data with tidyr 1
+## 521 78719 Matrices and Data Frames 2
+## 522 78719 Matrices and Data Frames 1
+## 523 78719 Matrices and Data Frames 1
+## 524 78719 Plotting_Systems 1
+## 525 78719 Matrices and Data Frames 1
+## 526 78719 Matrices and Data Frames 1
+## 527 78719 Matrices and Data Frames 1
+## 528 78719 Matrices and Data Frames 1
+## 529 78719 Matrices and Data Frames 1
+## 530 78719 Matrices and Data Frames 1
+## 531 78719 Matrices and Data Frames 1
+## 532 78719 Matrices and Data Frames 1
+## 533 78719 Grouping and Chaining with dplyr 1
+## 534 78719 Manipulating Data with dplyr 1
+## 535 78719 Manipulating Data with dplyr 1
+## 536 78719 Grouping and Chaining with dplyr 1
+## 537 78719 Grouping and Chaining with dplyr 1
+## 538 78719 Tidying Data with tidyr 1
+## 539 78719 Plotting_Systems 1
+## 540 78719 Matrices and Data Frames 1
+## 541 78719 Logic 1
+## 542 78719 Logic 1
+## 543 78719 Grouping and Chaining with dplyr 1
+## 544 78719 Grouping and Chaining with dplyr 1
+## 545 78719 Grouping and Chaining with dplyr 2
+## 546 78719 Grouping and Chaining with dplyr 1
+## 547 78719 Grouping and Chaining with dplyr 1
+## 548 78719 Grouping and Chaining with dplyr 1
+## 549 78719 Matrices and Data Frames 1
+## 550 78719 Matrices and Data Frames 1
+## 551 78719 Matrices and Data Frames 1
+## 552 78719 Matrices and Data Frames 1
+## 553 78719 Plotting_Systems 2
+## 554 78719 Plotting_Systems 1
+## 555 78719 Tidying Data with tidyr 1
+## 556 78719 Tidying Data with tidyr 1
+## 557 78719 Dates and Times 1
+## 558 78719 Tidying Data with tidyr 1
+## 559 78719 Tidying Data with tidyr 1
+## 560 78719 Matrices and Data Frames 1
+## 561 78719 Matrices and Data Frames 1
+## 562 78719 Logic 1
+## 563 78719 Manipulating Data with dplyr 1
+## 564 78719 Manipulating Data with dplyr 1
+## 565 78719 Plotting_Systems 1
+## 566 78719 Matrices and Data Frames 1
+## 567 78719 Grouping and Chaining with dplyr 1
+## 568 78719 Grouping and Chaining with dplyr 1
+## 569 78719 Grouping and Chaining with dplyr 1
+## 570 78719 Grouping and Chaining with dplyr 1
+## 571 78719 Grouping and Chaining with dplyr 1
+## 572 78719 Grouping and Chaining with dplyr 1
+## 573 78719 Tidying Data with tidyr 1
+## 574 78719 Looking at Data 1
+## 575 78719 Dates and Times 1
+## 576 78719 Dates and Times 1
+## 577 78719 Dates and Times 1
+## 578 78719 Dates and Times 1
+## 579 78719 Grouping and Chaining with dplyr 1
+## 580 78719 Tidying Data with tidyr 1
+## 581 78719 Tidying Data with tidyr 1
+## 582 78719 Looking at Data 1
+## 583 78719 Matrices and Data Frames 2
+## 584 78719 Logic 1
+## 585 78719 Logic 2
+## 586 78719 Logic 1
+## 587 78719 Logic 1
+## 588 78719 Tidying Data with tidyr 1
+## 589 78719 Tidying Data with tidyr 1
+## 590 78719 Logic 1
+## 591 78719 Logic 1
+## 592 78719 Dates and Times 1
+## 593 78719 Grouping and Chaining with dplyr 2
+## 594 78719 Matrices and Data Frames 1
+## 595 78719 Plotting_Systems 1
+## 596 78719 Plotting_Systems 1
+## 597 78719 Plotting_Systems 1
+## 598 78719 Dates and Times 1
+## 599 78719 Dates and Times 1
+## 600 78719 Dates and Times 1
+## 601 78719 Matrices and Data Frames 1
+## 602 78719 Plotting_Systems 1
+## 603 78719 Matrices and Data Frames 1
+## 604 78719 Plotting_Systems 1
+## 605 78719 Logic 1
+## 606 78719 Functions 1
+## 607 78719 Functions 1
+## 608 78719 Tidying Data with tidyr 1
+## 609 78719 Tidying Data with tidyr 2
+## 610 78719 Tidying Data with tidyr 1
+## 611 78719 Tidying Data with tidyr 1
+## 612 78719 Tidying Data with tidyr 1
+## 613 78719 Manipulating Data with dplyr 1
+## 614 78719 Looking at Data 1
+## 615 78719 Matrices and Data Frames 1
+## 616 78719 Matrices and Data Frames 1
+## 617 78719 Matrices and Data Frames 1
+## 618 78719 Plotting_Systems 1
+## 619 78719 Matrices and Data Frames 1
+## 620 78719 Matrices and Data Frames 1
+## 621 78719 Matrices and Data Frames 1
+## 622 78719 Tidying Data with tidyr 2
+## 623 78719 Matrices and Data Frames 1
+## 624 78719 Matrices and Data Frames 1
+## 625 78719 Matrices and Data Frames 1
+## 626 78719 Matrices and Data Frames 1
+## 627 78719 Functions 1
+## 628 78719 Functions 2
+## 629 78719 Logic 3
+## 630 78719 Logic 1
+## 631 78719 Matrices and Data Frames 1
+## 632 78719 Manipulating Data with dplyr 1
+## 633 78719 Plotting_Systems 1
+## 634 78719 Plotting_Systems 2
+## 635 78719 Matrices and Data Frames 1
+## 636 78719 Plotting_Systems 1
+## 637 78719 Plotting_Systems 1
+## 638 78719 Matrices and Data Frames 1
+## 639 78719 Matrices and Data Frames 1
+## 640 78719 Looking at Data 1
+## 641 78719 Logic 1
+## 642 78719 Logic 1
+## 643 78719 Functions 1
+## 644 78719 Logic 1
+## 645 78719 Matrices and Data Frames 1
+## 646 78719 Manipulating Data with dplyr 1
+## 647 78719 Manipulating Data with dplyr 1
+## 648 78719 Plotting_Systems 1
+## 649 78719 Matrices and Data Frames 1
+## 650 78719 Logic 1
+## 651 78719 Manipulating Data with dplyr 1
+## 652 78719 Manipulating Data with dplyr 1
+## 653 78719 Manipulating Data with dplyr 1
+## 654 78719 Tidying Data with tidyr 1
+## 655 78719 Manipulating Data with dplyr 1
+## 656 78719 Manipulating Data with dplyr 1
+## 657 78719 Matrices and Data Frames 1
+## 658 78719 Manipulating Data with dplyr 1
+## 659 78719 Functions 1
+## 660 78719 Manipulating Data with dplyr 1
+## 661 78719 Manipulating Data with dplyr 1
+## 662 78719 Manipulating Data with dplyr 1
+## 663 78719 Manipulating Data with dplyr 1
+## 664 78719 Logic 1
+## 665 78719 Logic 1
+## 666 78719 Manipulating Data with dplyr 1
+## 667 78719 Manipulating Data with dplyr 1
+## 668 78719 Manipulating Data with dplyr 1
+## 669 78719 Manipulating Data with dplyr 1
+## 670 78719 Functions 1
+## 671 78719 Functions 1
+## 672 78719 Logic 1
+## 673 78719 Tidying Data with tidyr 1
+## 674 78719 Manipulating Data with dplyr 1
+## 675 78719 Tidying Data with tidyr 1
+## 676 78719 Functions 1
+## 677 78719 Functions 1
+## 678 78719 Looking at Data 1
+## 679 78719 Logic 1
+## 680 78719 Tidying Data with tidyr 1
+## 681 78719 Functions 1
+## 682 78719 Manipulating Data with dplyr 1
+## 683 78719 Functions 1
+## 684 78719 Manipulating Data with dplyr 1
+## 685 78719 Matrices and Data Frames 1
+## 686 78719 Logic 1
+## 687 78719 Manipulating Data with dplyr 1
+## 688 78719 Looking at Data 1
+## 689 78719 Matrices and Data Frames 1
+## 690 78719 Manipulating Data with dplyr 1
+## 691 78719 Tidying Data with tidyr 1
+## 692 78719 Tidying Data with tidyr 1
+## 693 78719 Tidying Data with tidyr 1
+## 694 78719 Manipulating Data with dplyr 1
+## 695 78719 Logic 2
+## 696 78719 Manipulating Data with dplyr 1
+## 697 78719 Manipulating Data with dplyr 1
+## 698 98193 NA
+## 699 44419 Matrices and Data Frames 1
+## 700 44419 Basic Building Blocks 1
+## 701 44419 Basic Building Blocks 1
+## 702 44419 Dates and Times 1
+## 703 44419 Basic Building Blocks NA
+## 704 44419 Basic Building Blocks 1
+## 705 44419 Basic Building Blocks 1
+## 706 44419 Functions 1
+## 707 44419 Basic Building Blocks 1
+## 708 44419 Basic Building Blocks 1
+## 709 44419 Dates and Times 1
+## 710 44419 Vectors 1
+## 711 44419 Vectors 1
+## 712 44419 Vectors 2
+## 713 44419 Vectors 1
+## 714 44419 Vectors 1
+## 715 44419 Vectors 1
+## 716 44419 Vectors 1
+## 717 44419 Basic Building Blocks 1
+## 718 44419 Basic Building Blocks 1
+## 719 44419 Basic Building Blocks 1
+## 720 44419 Functions 1
+## 721 44419 Workspace and Files 1
+## 722 44419 NA
+## 723 44419 Dates and Times 1
+## 724 44419 Functions 1
+## 725 44419 Subsetting Vectors 1
+## 726 44419 Vectors 1
+## 727 44419 Basic Building Blocks 1
+## 728 44419 Basic Building Blocks 1
+## 729 44419 Basic Building Blocks 1
+## 730 44419 Basic Building Blocks 1
+## 731 44419 Basic Building Blocks 1
+## 732 44419 Basic Building Blocks 1
+## 733 44419 Functions 10
+## 734 44419 Functions 1
+## 735 44419 Functions 1
+## 736 44419 Workspace and Files 1
+## 737 44419 Dates and Times 1
+## 738 44419 Dates and Times 1
+## 739 44419 Dates and Times 1
+## 740 44419 Dates and Times 1
+## 741 44419 Vectors 1
+## 742 44419 Vectors 1
+## 743 44419 Vectors 1
+## 744 44419 Vectors 1
+## 745 44419 Dates and Times 1
+## 746 44419 Dates and Times 1
+## 747 44419 Matrices and Data Frames 1
+## 748 44419 Workspace and Files 1
+## 749 44419 Dates and Times 1
+## 750 44419 Logic 1
+## 751 44419 Logic 1
+## 752 44419 Functions 1
+## 753 44419 Dates and Times 1
+## 754 44419 Dates and Times 1
+## 755 44419 Dates and Times 1
+## 756 44419 Dates and Times 1
+## 757 44419 Dates and Times 1
+## 758 44419 Logic 3
+## 759 44419 Vectors 2
+## 760 44419 Dates and Times 1
+## 761 44419 Dates and Times 1
+## 762 44419 Functions 8
+## 763 44419 Functions 9
+## 764 44419 Missing Values 1
+## 765 44419 Logic 1
+## 766 44419 Logic 2
+## 767 44419 Logic 1
+## 768 44419 Logic 1
+## 769 44419 Logic 1
+## 770 44419 Logic 2
+## 771 44419 Vectors NA
+## 772 44419 Matrices and Data Frames 1
+## 773 44419 Matrices and Data Frames 1
+## 774 44419 Workspace and Files 1
+## 775 44419 Vectors 1
+## 776 44419 Vectors 1
+## 777 44419 Vectors 1
+## 778 44419 Missing Values 1
+## 779 44419 Missing Values 1
+## 780 44419 Functions 1
+## 781 44419 Functions 1
+## 782 44419 Functions 2
+## 783 44419 Functions 3
+## 784 44419 Functions 4
+## 785 44419 Functions 5
+## 786 44419 Functions 6
+## 787 44419 Functions 7
+## 788 44419 Missing Values 1
+## 789 44419 Missing Values 1
+## 790 44419 Missing Values 1
+## 791 44419 Vectors 1
+## 792 44419 Vectors 1
+## 793 44419 Vectors 1
+## 794 44419 Functions 2
+## 795 44419 Basic Building Blocks 1
+## 796 44419 Basic Building Blocks 1
+## 797 44419 Basic Building Blocks 1
+## 798 44419 Basic Building Blocks 1
+## 799 44419 Basic Building Blocks 1
+## 800 44419 Vectors 1
+## 801 44419 Basic Building Blocks 1
+## 802 44419 Basic Building Blocks 1
+## 803 44419 Basic Building Blocks 1
+## 804 44419 Logic 2
+## 805 44419 Subsetting Vectors 1
+## 806 44419 Vectors 1
+## 807 44419 Vectors 2
+## 808 44419 Vectors NA
+## 809 44419 Vectors 1
+## 810 44419 Vectors 1
+## 811 44419 Matrices and Data Frames 1
+## 812 44419 Basic Building Blocks NA
+## 813 44419 Workspace and Files 1
+## 814 44419 Basic Building Blocks 1
+## 815 44419 Logic 1
+## 816 44419 Logic 1
+## 817 44419 Vectors 1
+## 818 44419 Vectors 1
+## 819 44419 Subsetting Vectors 1
+## 820 44419 Missing Values 1
+## 821 44419 Subsetting Vectors 1
+## 822 44419 Subsetting Vectors 1
+## 823 44419 Subsetting Vectors 2
+## 824 44419 Subsetting Vectors 3
+## 825 44419 Subsetting Vectors 4
+## 826 44419 Subsetting Vectors 1
+## 827 44419 Logic 1
+## 828 44419 Workspace and Files 1
+## 829 44419 Workspace and Files 1
+## 830 44419 Logic 1
+## 831 44419 Subsetting Vectors 1
+## 832 44419 Vectors 1
+## 833 44419 Vectors 1
+## 834 44419 Missing Values 1
+## 835 44419 Missing Values 1
+## 836 44419 Missing Values 1
+## 837 44419 Missing Values 1
+## 838 44419 Missing Values 1
+## 839 44419 Missing Values 1
+## 840 44419 Workspace and Files 1
+## 841 44419 Workspace and Files 1
+## 842 44419 Workspace and Files 1
+## 843 44419 Workspace and Files 1
+## 844 44419 Vectors 1
+## 845 44419 Vectors 1
+## 846 44419 Matrices and Data Frames 1
+## 847 44419 Vectors 1
+## 848 44419 Workspace and Files 1
+## 849 44419 Subsetting Vectors 1
+## 850 44419 Vectors 1
+## 851 44419 Basic Building Blocks 1
+## 852 44419 Subsetting Vectors 1
+## 853 44419 Subsetting Vectors 1
+## 854 44419 Vectors 1
+## 855 44419 Matrices and Data Frames 1
+## 856 44419 Subsetting Vectors 1
+## 857 44419 Workspace and Files 2
+## 858 44419 Vectors 1
+## 859 44419 Vectors 1
+## 860 44419 Vectors 1
+## 861 44419 Missing Values 1
+## 862 44419 Matrices and Data Frames 1
+## 863 44419 Missing Values 1
+## 864 44419 Logic 1
+## 865 44419 Matrices and Data Frames 1
+## 866 44419 NA
+## 867 44419 Matrices and Data Frames 1
+## 868 44419 Matrices and Data Frames 1
+## 869 44419 Basic Building Blocks 1
+## 870 44419 Matrices and Data Frames 2
+## 871 44419 Basic Building Blocks 1
+## 872 44419 Basic Building Blocks 1
+## 873 44419 Subsetting Vectors 2
+## 874 44419 Subsetting Vectors 3
+## 875 44419 Matrices and Data Frames 1
+## 876 44419 Logic 1
+## 877 44419 Matrices and Data Frames 1
+## 878 44419 Basic Building Blocks 1
+## 879 44419 Logic 1
+## 880 44419 Workspace and Files 1
+## 881 44419 Logic 1
+## 882 44419 Basic Building Blocks 2
+## 883 44419 Workspace and Files 2
+## 884 44419 Workspace and Files 1
+## 885 44419 Matrices and Data Frames 1
+## 886 44419 Logic 1
+## 887 14748 Dates and Times 1
+## 888 14748 Basic Building Blocks 2
+## 889 14748 Dates and Times 1
+## 890 14748 Basic Building Blocks 1
+## 891 14748 Dates and Times 1
+## 892 14748 Subsetting Vectors 1
+## 893 14748 Subsetting Vectors 1
+## 894 14748 Subsetting Vectors 1
+## 895 14748 Basic Building Blocks 1
+## 896 14748 Subsetting Vectors 1
+## 897 14748 Basic Building Blocks 1
+## 898 14748 Dates and Times 1
+## 899 14748 Workspace and Files 1
+## 900 14748 Subsetting Vectors 1
+## 901 14748 Workspace and Files 2
+## 902 14748 Functions 1
+## 903 14748 Dates and Times 1
+## 904 14748 Subsetting Vectors 1
+## 905 14748 Basic Building Blocks 1
+## 906 14748 Missing Values 1
+## 907 14748 Dates and Times 1
+## 908 14748 Dates and Times 2
+## 909 14748 Vectors 1
+## 910 14748 Vectors 1
+## 911 14748 Dates and Times 1
+## 912 14748 Subsetting Vectors 1
+## 913 14748 Subsetting Vectors 1
+## 914 14748 Subsetting Vectors 1
+## 915 14748 Logic 1
+## 916 14748 Dates and Times 1
+## 917 14748 Subsetting Vectors 1
+## 918 14748 Functions 1
+## 919 14748 Dates and Times 1
+## 920 14748 Logic 1
+## 921 14748 Logic 1
+## 922 14748 Workspace and Files 2
+## 923 14748 Workspace and Files 1
+## 924 14748 Vectors 2
+## 925 14748 Workspace and Files 1
+## 926 14748 Subsetting Vectors 1
+## 927 14748 Subsetting Vectors 1
+## 928 14748 Dates and Times 1
+## 929 14748 Logic 1
+## 930 14748 Workspace and Files 1
+## 931 14748 Workspace and Files 1
+## 932 14748 Basic Building Blocks 1
+## 933 14748 Dates and Times 1
+## 934 14748 Workspace and Files 1
+## 935 14748 Subsetting Vectors 1
+## 936 14748 Logic 1
+## 937 14748 Functions 1
+## 938 14748 Subsetting Vectors 1
+## 939 14748 Subsetting Vectors 1
+## 940 14748 Workspace and Files 1
+## 941 14748 Dates and Times 1
+## 942 14748 Subsetting Vectors 1
+## 943 14748 Subsetting Vectors 1
+## 944 14748 Subsetting Vectors 1
+## 945 14748 Dates and Times 1
+## 946 14748 Functions 1
+## 947 14748 Missing Values 1
+## 948 14748 Functions 1
+## 949 14748 Functions 2
+## 950 14748 Missing Values 1
+## 951 14748 Missing Values 1
+## 952 14748 Vectors 1
+## 953 14748 Dates and Times 1
+## 954 14748 Dates and Times 1
+## 955 14748 Dates and Times 1
+## 956 14748 Basic Building Blocks 1
+## 957 14748 Workspace and Files 1
+## 958 14748 Subsetting Vectors 1
+## 959 14748 Basic Building Blocks 1
+## 960 14748 Logic 1
+## 961 14748 Logic 1
+## 962 14748 Logic 1
+## 963 14748 Logic 2
+## 964 14748 Logic 1
+## 965 14748 Logic 1
+## 966 14748 Logic 1
+## 967 14748 Logic 1
+## 968 14748 Subsetting Vectors 2
+## 969 14748 Dates and Times 1
+## 970 14748 Dates and Times 1
+## 971 14748 Basic Building Blocks 1
+## 972 14748 Subsetting Vectors 9
+## 973 14748 Subsetting Vectors 10
+## 974 14748 Subsetting Vectors 13
+## 975 14748 Subsetting Vectors 12
+## 976 14748 Workspace and Files 1
+## 977 14748 Workspace and Files 1
+## 978 14748 Subsetting Vectors 1
+## 979 14748 Workspace and Files 1
+## 980 14748 Basic Building Blocks 1
+## 981 14748 Subsetting Vectors 1
+## 982 14748 Vectors 1
+## 983 14748 Vectors 1
+## 984 14748 Vectors 1
+## 985 14748 Basic Building Blocks 1
+## 986 14748 Logic 1
+## 987 14748 Functions 2
+## 988 14748 Missing Values 1
+## 989 14748 Basic Building Blocks 1
+## 990 14748 Logic 1
+## 991 14748 Logic 1
+## 992 14748 Functions 1
+## 993 14748 Basic Building Blocks 1
+## 994 14748 Basic Building Blocks 2
+## 995 14748 Basic Building Blocks 1
+## 996 14748 Missing Values 1
+## 997 14748 Basic Building Blocks 1
+## 998 14748 Missing Values 1
+## 999 14748 Missing Values 1
+## 1000 14748 Basic Building Blocks 1
+## 1001 14748 Basic Building Blocks 1
+## 1002 14748 Workspace and Files 2
+## 1003 14748 Basic Building Blocks 1
+## 1004 14748 Basic Building Blocks 1
+## 1005 14748 Functions 4
+## 1006 14748 Functions 1
+## 1007 14748 Subsetting Vectors 1
+## 1008 14748 Logic 1
+## 1009 14748 Subsetting Vectors 3
+## 1010 14748 Subsetting Vectors 5
+## 1011 14748 Logic 1
+## 1012 14748 Subsetting Vectors 8
+## 1013 14748 Logic 1
+## 1014 14748 Subsetting Vectors 11
+## 1015 14748 Subsetting Vectors 1
+## 1016 14748 Dates and Times 1
+## 1017 14748 Dates and Times 1
+## 1018 14748 Workspace and Files 1
+## 1019 14748 Dates and Times 1
+## 1020 14748 Workspace and Files 1
+## 1021 14748 Basic Building Blocks 1
+## 1022 14748 Basic Building Blocks 1
+## 1023 14748 Basic Building Blocks 1
+## 1024 14748 Basic Building Blocks 1
+## 1025 14748 Functions 1
+## 1026 14748 Missing Values 1
+## 1027 14748 Functions 1
+## 1028 14748 Workspace and Files 1
+## 1029 14748 Subsetting Vectors 1
+## 1030 14748 Subsetting Vectors 1
+## 1031 14748 Functions 3
+## 1032 14748 Logic 2
+## 1033 14748 Functions 1
+## 1034 14748 Missing Values 1
+## 1035 14748 Missing Values 1
+## 1036 14748 Logic 1
+## 1037 14748 Missing Values 1
+## 1038 14748 Basic Building Blocks 2
+## 1039 14748 Basic Building Blocks 1
+## 1040 14748 Missing Values 1
+## 1041 14748 Functions 1
+## 1042 14748 Dates and Times 1
+## 1043 14748 Functions 1
+## 1044 14748 Subsetting Vectors 2
+## 1045 14748 Subsetting Vectors 1
+## 1046 14748 Subsetting Vectors 1
+## 1047 14748 Functions 1
+## 1048 14748 Functions 1
+## 1049 14748 Workspace and Files 1
+## 1050 14748 Workspace and Files 1
+## 1051 14748 Subsetting Vectors 6
+## 1052 14748 Logic 1
+## 1053 14748 Workspace and Files 1
+## 1054 14748 Functions 15
+## 1055 14748 Functions 1
+## 1056 14748 Workspace and Files 1
+## 1057 14748 Functions 1
+## 1058 14748 Logic 1
+## 1059 14748 Dates and Times 1
+## 1060 14748 Logic 1
+## 1061 14748 Workspace and Files 1
+## 1062 14748 Workspace and Files 1
+## 1063 14748 Vectors 1
+## 1064 14748 Vectors 1
+## 1065 14748 Logic 1
+## 1066 14748 Functions 1
+## 1067 14748 Functions 1
+## 1068 14748 Dates and Times 1
+## 1069 14748 Functions 2
+## 1070 14748 Workspace and Files 1
+## 1071 14748 Workspace and Files 1
+## 1072 14748 Functions 4
+## 1073 14748 Logic 3
+## 1074 14748 Logic 4
+## 1075 14748 Logic 1
+## 1076 14748 Functions 8
+## 1077 14748 Logic 1
+## 1078 14748 Functions 10
+## 1079 14748 Functions 11
+## 1080 14748 Vectors 1
+## 1081 14748 Functions 12
+## 1082 14748 Functions 13
+## 1083 14748 Functions 1
+## 1084 14748 Functions 1
+## 1085 14748 Functions 3
+## 1086 14748 Vectors 1
+## 1087 14748 Vectors 1
+## 1088 14748 Logic 1
+## 1089 14748 Logic 3
+## 1090 14748 Logic 2
+## 1091 14748 Workspace and Files 1
+## 1092 14748 Subsetting Vectors 7
+## 1093 14748 Workspace and Files 1
+## 1094 14748 Functions 2
+## 1095 14748 Vectors 1
+## 1096 14748 Functions 1
+## 1097 14748 Functions 14
+## 1098 14748 Functions 2
+## 1099 14748 Functions 1
+## 1100 14748 Missing Values 1
+## 1101 14748 Logic 2
+## 1102 14748 Functions 7
+## 1103 14748 Logic 4
+## 1104 14748 Logic 1
+## 1105 14748 Logic 2
+## 1106 14748 Dates and Times 1
+## 1107 14748 Logic 1
+## 1108 14748 Functions 1
+## 1109 14748 Vectors 1
+## 1110 14748 Missing Values 1
+## 1111 14748 Functions 2
+## 1112 14748 Vectors 1
+## 1113 14748 Vectors 1
+## 1114 14748 Vectors 1
+## 1115 14748 Logic 1
+## 1116 14748 Dates and Times 1
+## 1117 14748 Functions 9
+## 1118 14748 Logic 1
+## 1119 14748 Logic 1
+## 1120 14748 Functions 1
+## 1121 14748 Vectors 2
+## 1122 14748 Functions 1
+## 1123 14748 Logic 1
+## 1124 14748 Vectors 1
+## 1125 14748 Functions 1
+## 1126 14748 Vectors 1
+## 1127 14748 Subsetting Vectors 4
+## 1128 14748 Dates and Times 1
+## 1129 14748 Vectors 1
+## 1130 14748 Logic 1
+## 1131 14748 Logic 1
+## 1132 14748 Functions 1
+## 1133 14748 Functions 6
+## 1134 14748 Functions 1
+## 1135 14748 Dates and Times 1
+## 1136 14748 Functions 5
+## 1137 14748 Logic 1
+## 1138 14748 Logic 1
+## 1139 14748 Dates and Times 1
+## 1140 14748 Vectors 1
+## 1141 14748 Logic 2
+## 1142 14748 Functions 1
+## 1143 88135 Basic Building Blocks 1
+## 1144 88135 Basic Building Blocks 1
+## 1145 88135 Basic Building Blocks 1
+## 1146 88135 Basic Building Blocks 1
+## 1147 88135 Basic Building Blocks 2
+## 1148 88135 Basic Building Blocks 2
+## 1149 88135 Basic Building Blocks 1
+## 1150 88135 Basic Building Blocks 1
+## 1151 88135 Basic Building Blocks 3
+## 1152 88135 Basic Building Blocks 1
+## 1153 88135 Basic Building Blocks 1
+## 1154 88135 Basic Building Blocks 1
+## 1155 88135 Basic Building Blocks 2
+## 1156 88135 Basic Building Blocks 1
+## 1157 88135 Basic Building Blocks 1
+## 1158 88135 Basic Building Blocks 1
+## 1159 88135 Basic Building Blocks 1
+## 1160 88135 Basic Building Blocks 1
+## 1161 88135 Basic Building Blocks 1
+## 1162 88135 Basic Building Blocks 1
+## 1163 88135 Basic Building Blocks 1
+## 1164 88135 Basic Building Blocks 1
+## 1165 88135 Basic Building Blocks 1
+## 1166 88135 Basic Building Blocks 2
+## 1167 88135 Basic Building Blocks 1
+## 1168 88135 Basic Building Blocks 1
+## 1169 88135 Basic Building Blocks 1
+## 1170 88135 Basic Building Blocks 2
+## 1171 88135 Basic Building Blocks 1
+## 1172 55259 Workspace and Files 1
+## 1173 55259 Workspace and Files 1
+## 1174 55259 Workspace and Files 1
+## 1175 55259 Workspace and Files 1
+## 1176 55259 Workspace and Files 1
+## 1177 55259 Workspace and Files 2
+## 1178 55259 Workspace and Files 1
+## 1179 55259 Workspace and Files 1
+## 1180 55259 Workspace and Files 1
+## 1181 55259 Workspace and Files 1
+## 1182 55259 Workspace and Files 1
+## 1183 55259 Workspace and Files 2
+## 1184 55259 Workspace and Files 1
+## 1185 55259 Workspace and Files 1
+## 1186 55259 Workspace and Files 1
+## 1187 55259 Workspace and Files 1
+## 1188 55259 Workspace and Files 1
+## 1189 55259 Workspace and Files 1
+## 1190 55259 Workspace and Files 1
+## 1191 55259 Workspace and Files 2
+## 1192 55259 Workspace and Files 1
+## 1193 55259 Workspace and Files 1
+## 1194 55259 Workspace and Files 1
+## 1195 55259 Workspace and Files 1
+## 1196 55259 Workspace and Files 1
+## 1197 55259 Workspace and Files 1
+## 1198 55259 Workspace and Files 1
+## 1199 55259 Workspace and Files 2
+## 1200 75332 Workspace and Files 1
+## 1201 75332 Workspace and Files 2
+## 1202 75332 Workspace and Files 1
+## 1203 75332 Dates and Times 1
+## 1204 75332 Dates and Times 1
+## 1205 75332 Dates and Times 1
+## 1206 75332 Dates and Times 1
+## 1207 75332 Workspace and Files 2
+## 1208 75332 Workspace and Files 1
+## 1209 75332 Workspace and Files 2
+## 1210 75332 Workspace and Files 1
+## 1211 75332 Workspace and Files 2
+## 1212 75332 Workspace and Files 1
+## 1213 75332 Workspace and Files 2
+## 1214 75332 Dates and Times 1
+## 1215 75332 Dates and Times 2
+## 1216 75332 Workspace and Files 1
+## 1217 75332 Workspace and Files 1
+## 1218 75332 Vectors 1
+## 1219 75332 Vectors NA
+## 1220 75332 Missing Values 1
+## 1221 75332 Missing Values 1
+## 1222 75332 Missing Values 1
+## 1223 75332 Missing Values 1
+## 1224 75332 Missing Values 1
+## 1225 75332 Missing Values 1
+## 1226 75332 Missing Values 1
+## 1227 75332 Missing Values 1
+## 1228 75332 Missing Values 1
+## 1229 75332 Missing Values 1
+## 1230 75332 Missing Values 1
+## 1231 75332 Missing Values 1
+## 1232 75332 Missing Values 1
+## 1233 75332 Missing Values 1
+## 1234 75332 Basic Building Blocks NA
+## 1235 75332 Missing Values 1
+## 1236 75332 Subsetting Vectors 1
+## 1237 75332 Logic 1
+## 1238 75332 Logic 1
+## 1239 75332 Logic 1
+## 1240 75332 Logic 1
+## 1241 75332 Logic 1
+## 1242 75332 Logic 1
+## 1243 75332 Logic 1
+## 1244 75332 Logic 1
+## 1245 75332 Logic 1
+## 1246 75332 Logic 1
+## 1247 75332 Logic 1
+## 1248 75332 Logic 1
+## 1249 75332 Logic 1
+## 1250 75332 Logic 1
+## 1251 75332 Logic 1
+## 1252 75332 Workspace and Files 1
+## 1253 75332 Workspace and Files 1
+## 1254 75332 Workspace and Files 1
+## 1255 75332 Workspace and Files 1
+## 1256 75332 Logic 1
+## 1257 75332 NA
+## 1258 75332 Dates and Times 1
+## 1259 75332 Dates and Times 1
+## 1260 75332 Dates and Times 1
+## 1261 75332 Dates and Times 1
+## 1262 75332 Dates and Times 1
+## 1263 75332 Dates and Times 1
+## 1264 75332 Dates and Times 1
+## 1265 75332 Dates and Times 1
+## 1266 75332 Dates and Times 1
+## 1267 75332 Dates and Times 1
+## 1268 75332 Dates and Times 1
+## 1269 75332 Basic Building Blocks 1
+## 1270 75332 Basic Building Blocks 1
+## 1271 75332 Basic Building Blocks 1
+## 1272 75332 Basic Building Blocks 1
+## 1273 75332 Basic Building Blocks 1
+## 1274 75332 Vectors 1
+## 1275 75332 Vectors 1
+## 1276 75332 Vectors 1
+## 1277 75332 Subsetting Vectors 1
+## 1278 75332 Subsetting Vectors 1
+## 1279 75332 Subsetting Vectors 1
+## 1280 75332 Subsetting Vectors 1
+## 1281 75332 Vectors 1
+## 1282 75332 Vectors 2
+## 1283 75332 Vectors 1
+## 1284 75332 Vectors 1
+## 1285 75332 Vectors 2
+## 1286 75332 Vectors 1
+## 1287 75332 Basic Building Blocks 1
+## 1288 75332 Basic Building Blocks 1
+## 1289 75332 Basic Building Blocks 1
+## 1290 75332 Vectors 1
+## 1291 75332 NA
+## 1292 75332 Vectors 1
+## 1293 75332 Logic 1
+## 1294 75332 Logic 1
+## 1295 75332 Logic 1
+## 1296 75332 Vectors 1
+## 1297 75332 Vectors 1
+## 1298 75332 Vectors 1
+## 1299 75332 Basic Building Blocks 1
+## 1300 75332 Subsetting Vectors 1
+## 1301 75332 Subsetting Vectors 1
+## 1302 75332 Subsetting Vectors 1
+## 1303 75332 Basic Building Blocks 1
+## 1304 75332 Basic Building Blocks 1
+## 1305 75332 Basic Building Blocks 1
+## 1306 75332 Basic Building Blocks 1
+## 1307 75332 Basic Building Blocks 1
+## 1308 75332 Basic Building Blocks 1
+## 1309 75332 Subsetting Vectors 1
+## 1310 75332 Subsetting Vectors 1
+## 1311 75332 Subsetting Vectors 1
+## 1312 75332 Subsetting Vectors 1
+## 1313 75332 Subsetting Vectors 2
+## 1314 75332 Subsetting Vectors 1
+## 1315 75332 Subsetting Vectors 1
+## 1316 75332 Subsetting Vectors 1
+## 1317 75332 Vectors 1
+## 1318 75332 Vectors 1
+## 1319 75332 Vectors 1
+## 1320 80970 Workspace and Files 1
+## 1321 80970 Looking at Data 2
+## 1322 80970 Workspace and Files 2
+## 1323 80970 Grouping and Chaining with dplyr 2
+## 1324 80970 Grouping and Chaining with dplyr 1
+## 1325 80970 Looking at Data 1
+## 1326 80970 Workspace and Files 1
+## 1327 80970 Looking at Data 1
+## 1328 80970 Looking at Data 1
+## 1329 80970 Grouping and Chaining with dplyr 1
+## 1330 80970 Grouping and Chaining with dplyr 2
+## 1331 80970 Workspace and Files 1
+## 1332 80970 Grouping and Chaining with dplyr 1
+## 1333 80970 Grouping and Chaining with dplyr 1
+## 1334 80970 Grouping and Chaining with dplyr 1
+## 1335 80970 Grouping and Chaining with dplyr 2
+## 1336 80970 Grouping and Chaining with dplyr 1
+## 1337 80970 Looking at Data 1
+## 1338 80970 Looking at Data 1
+## 1339 80970 Workspace and Files 1
+## 1340 80970 Workspace and Files 2
+## 1341 80970 Grouping and Chaining with dplyr 1
+## 1342 80970 Workspace and Files 1
+## 1343 80970 Vectors 3
+## 1344 80970 Workspace and Files 1
+## 1345 80970 Workspace and Files 1
+## 1346 80970 Vectors 3
+## 1347 80970 Grouping and Chaining with dplyr 1
+## 1348 80970 Grouping and Chaining with dplyr 2
+## 1349 80970 Grouping and Chaining with dplyr 1
+## 1350 80970 Looking at Data 1
+## 1351 80970 Grouping and Chaining with dplyr 1
+## 1352 80970 Grouping and Chaining with dplyr 1
+## 1353 80970 Workspace and Files 1
+## 1354 80970 Dates and Times 1
+## 1355 80970 Workspace and Files 1
+## 1356 80970 Workspace and Files 1
+## 1357 80970 Vectors 1
+## 1358 80970 Vectors 2
+## 1359 80970 Logic 1
+## 1360 80970 Workspace and Files 2
+## 1361 80970 Workspace and Files 1
+## 1362 80970 Workspace and Files 1
+## 1363 80970 Workspace and Files 2
+## 1364 80970 Workspace and Files 1
+## 1365 80970 Workspace and Files 1
+## 1366 80970 Functions 1
+## 1367 80970 Functions 1
+## 1368 80970 Functions 1
+## 1369 80970 Functions 1
+## 1370 80970 Workspace and Files 1
+## 1371 80970 Logic 1
+## 1372 80970 Functions 1
+## 1373 80970 Functions 1
+## 1374 80970 Functions 1
+## 1375 80970 Functions 1
+## 1376 80970 Workspace and Files 1
+## 1377 80970 Workspace and Files 1
+## 1378 80970 Workspace and Files 1
+## 1379 80970 Functions 1
+## 1380 80970 Functions 1
+## 1381 80970 Functions 2
+## 1382 80970 Functions 1
+## 1383 80970 Functions 1
+## 1384 80970 Functions 1
+## 1385 80970 Grouping and Chaining with dplyr 1
+## 1386 80970 Grouping and Chaining with dplyr 1
+## 1387 80970 Looking at Data 1
+## 1388 80970 Looking at Data 1
+## 1389 80970 Looking at Data 1
+## 1390 80970 Looking at Data 1
+## 1391 80970 Workspace and Files 1
+## 1392 80970 Workspace and Files 1
+## 1393 80970 Dates and Times 1
+## 1394 80970 Tidying Data with tidyr 1
+## 1395 80970 Tidying Data with tidyr 2
+## 1396 80970 Tidying Data with tidyr 1
+## 1397 80970 Tidying Data with tidyr 1
+## 1398 80970 Tidying Data with tidyr 1
+## 1399 80970 Tidying Data with tidyr 1
+## 1400 80970 Grouping and Chaining with dplyr 3
+## 1401 80970 Grouping and Chaining with dplyr 1
+## 1402 80970 Grouping and Chaining with dplyr 1
+## 1403 80970 Grouping and Chaining with dplyr 1
+## 1404 80970 Grouping and Chaining with dplyr 2
+## 1405 80970 Grouping and Chaining with dplyr 1
+## 1406 80970 Grouping and Chaining with dplyr 1
+## 1407 80970 Grouping and Chaining with dplyr 1
+## 1408 80970 Grouping and Chaining with dplyr 1
+## 1409 80970 Grouping and Chaining with dplyr 1
+## 1410 80970 Grouping and Chaining with dplyr 1
+## 1411 80970 Plotting_Systems 2
+## 1412 80970 Plotting_Systems 1
+## 1413 80970 Plotting_Systems 1
+## 1414 80970 Plotting_Systems 1
+## 1415 80970 Plotting_Systems 1
+## 1416 80970 Plotting_Systems 1
+## 1417 80970 Plotting_Systems 2
+## 1418 80970 Plotting_Systems 1
+## 1419 80970 Grouping and Chaining with dplyr 1
+## 1420 80970 Grouping and Chaining with dplyr 1
+## 1421 80970 Grouping and Chaining with dplyr 1
+## 1422 80970 Grouping and Chaining with dplyr 1
+## 1423 80970 Workspace and Files 1
+## 1424 80970 Workspace and Files 1
+## 1425 80970 Workspace and Files 1
+## 1426 80970 Workspace and Files 2
+## 1427 80970 Workspace and Files 1
+## 1428 80970 Workspace and Files 2
+## 1429 80970 Workspace and Files 3
+## 1430 80970 Workspace and Files 4
+## 1431 80970 Grouping and Chaining with dplyr 2
+## 1432 80970 Tidying Data with tidyr 2
+## 1433 80970 Tidying Data with tidyr 1
+## 1434 80970 Manipulating Data with dplyr 1
+## 1435 80970 Manipulating Data with dplyr 1
+## 1436 80970 Manipulating Data with dplyr 2
+## 1437 80970 Manipulating Data with dplyr 1
+## 1438 80970 Manipulating Data with dplyr 1
+## 1439 80970 Manipulating Data with dplyr 1
+## 1440 80970 Manipulating Data with dplyr 1
+## 1441 80970 Logic 1
+## 1442 80970 Logic 1
+## 1443 80970 Logic 1
+## 1444 80970 Logic 1
+## 1445 80970 Logic 1
+## 1446 80970 Logic 1
+## 1447 80970 Dates and Times 1
+## 1448 80970 Dates and Times 1
+## 1449 80970 Vectors 1
+## 1450 80970 Vectors 2
+## 1451 80970 Dates and Times 1
+## 1452 80970 Dates and Times 1
+## 1453 80970 Dates and Times 1
+## 1454 80970 Dates and Times 1
+## 1455 80970 Vectors 1
+## 1456 80970 Vectors 2
+## 1457 80970 Vectors 1
+## 1458 80970 Vectors 1
+## 1459 80970 Vectors 1
+## 1460 80970 Vectors 1
+## 1461 80970 Vectors 1
+## 1462 80970 Vectors 1
+## 1463 80970 Grouping and Chaining with dplyr 1
+## 1464 80970 Grouping and Chaining with dplyr 1
+## 1465 80970 Grouping and Chaining with dplyr 1
+## 1466 80970 Grouping and Chaining with dplyr 2
+## 1467 80970 Grouping and Chaining with dplyr 1
+## 1468 80970 Manipulating Data with dplyr 1
+## 1469 80970 Manipulating Data with dplyr 2
+## 1470 80970 Manipulating Data with dplyr 1
+## 1471 80970 Manipulating Data with dplyr 1
+## 1472 80970 Manipulating Data with dplyr 1
+## 1473 80970 Manipulating Data with dplyr 1
+## 1474 80970 Manipulating Data with dplyr 1
+## 1475 80970 Manipulating Data with dplyr 1
+## 1476 80970 Dates and Times 1
+## 1477 80970 Dates and Times 1
+## 1478 80970 Dates and Times 1
+## 1479 80970 Functions 1
+## 1480 80970 Functions 1
+## 1481 80970 Functions 1
+## 1482 80970 Functions 1
+## 1483 80970 Functions 1
+## 1484 80970 Functions 1
+## 1485 80970 Functions 1
+## 1486 80970 Functions 1
+## 1487 80970 Functions 2
+## 1488 80970 Tidying Data with tidyr 1
+## 1489 80970 Tidying Data with tidyr 1
+## 1490 80970 Tidying Data with tidyr 1
+## 1491 80970 Tidying Data with tidyr 1
+## 1492 80970 Tidying Data with tidyr 2
+## 1493 80970 Tidying Data with tidyr 1
+## 1494 80970 Tidying Data with tidyr 1
+## 1495 80970 Tidying Data with tidyr 1
+## 1496 80970 Tidying Data with tidyr 2
+## 1497 80970 Functions 1
+## 1498 80970 Functions 1
+## 1499 80970 Functions 1
+## 1500 80970 Tidying Data with tidyr 6
+## 1501 80970 Tidying Data with tidyr 7
+## 1502 80970 Tidying Data with tidyr 1
+## 1503 80970 Tidying Data with tidyr 1
+## 1504 80970 Functions 1
+## 1505 80970 Functions 1
+## 1506 80970 Functions 2
+## 1507 80970 Functions 1
+## 1508 80970 Functions 1
+## 1509 80970 Functions 1
+## 1510 80970 Grouping and Chaining with dplyr 1
+## 1511 80970 Grouping and Chaining with dplyr 1
+## 1512 80970 Tidying Data with tidyr 1
+## 1513 80970 Subsetting Vectors 1
+## 1514 80970 Subsetting Vectors 1
+## 1515 80970 Subsetting Vectors 1
+## 1516 80970 Subsetting Vectors 1
+## 1517 80970 Subsetting Vectors 1
+## 1518 80970 Subsetting Vectors 1
+## 1519 80970 Subsetting Vectors 1
+## 1520 80970 Subsetting Vectors 1
+## 1521 80970 Subsetting Vectors 1
+## 1522 80970 Subsetting Vectors 1
+## 1523 80970 Subsetting Vectors 1
+## 1524 80970 Plotting_Systems 1
+## 1525 80970 Plotting_Systems 1
+## 1526 80970 Plotting_Systems 1
+## 1527 80970 Plotting_Systems 1
+## 1528 80970 Plotting_Systems 2
+## 1529 80970 Plotting_Systems 1
+## 1530 80970 Plotting_Systems 1
+## 1531 80970 Plotting_Systems 1
+## 1532 80970 Logic 1
+## 1533 80970 Logic 1
+## 1534 80970 Logic 1
+## 1535 80970 Logic 1
+## 1536 80970 Logic 2
+## 1537 80970 Logic 1
+## 1538 80970 Logic 1
+## 1539 80970 Logic 1
+## 1540 80970 Plotting_Systems 2
+## 1541 80970 Plotting_Systems 1
+## 1542 80970 Plotting_Systems 1
+## 1543 80970 Plotting_Systems 2
+## 1544 80970 Plotting_Systems 3
+## 1545 80970 Plotting_Systems 4
+## 1546 80970 Plotting_Systems 5
+## 1547 80970 Plotting_Systems 1
+## 1548 80970 Plotting_Systems 1
+## 1549 80970 Plotting_Systems 1
+## 1550 80970 Plotting_Systems 1
+## 1551 80970 Plotting_Systems 2
+## 1552 80970 Plotting_Systems 1
+## 1553 80970 Plotting_Systems 1
+## 1554 80970 Plotting_Systems 1
+## 1555 80970 Logic 1
+## 1556 80970 Logic 1
+## 1557 80970 Logic 2
+## 1558 80970 Logic 1
+## 1559 80970 Logic 1
+## 1560 80970 Logic 1
+## 1561 80970 Missing Values 1
+## 1562 80970 Missing Values 1
+## 1563 80970 Manipulating Data with dplyr 2
+## 1564 80970 Manipulating Data with dplyr 1
+## 1565 80970 Manipulating Data with dplyr 1
+## 1566 80970 Manipulating Data with dplyr 2
+## 1567 80970 Manipulating Data with dplyr 1
+## 1568 80970 Manipulating Data with dplyr 1
+## 1569 80970 Manipulating Data with dplyr 1
+## 1570 80970 Dates and Times 1
+## 1571 80970 Dates and Times 1
+## 1572 80970 Manipulating Data with dplyr 2
+## 1573 80970 Manipulating Data with dplyr 1
+## 1574 80970 Manipulating Data with dplyr 1
+## 1575 80970 Manipulating Data with dplyr 1
+## 1576 80970 Manipulating Data with dplyr 2
+## 1577 80970 Dates and Times 1
+## 1578 80970 Dates and Times 1
+## 1579 80970 Dates and Times 1
+## 1580 80970 Dates and Times 2
+## 1581 80970 Dates and Times 1
+## 1582 80970 Dates and Times 1
+## 1583 80970 Dates and Times 1
+## 1584 80970 Dates and Times 1
+## 1585 80970 Vectors 2
+## 1586 80970 Vectors 1
+## 1587 80970 Vectors 1
+## 1588 80970 Vectors 2
+## 1589 80970 Vectors 1
+## 1590 80970 Vectors 2
+## 1591 80970 Vectors 1
+## 1592 80970 Vectors 1
+## 1593 80970 Vectors 1
+## 1594 80970 Vectors 1
+## 1595 80970 Vectors 2
+## 1596 80970 Vectors 3
+## 1597 80970 Vectors 1
+## 1598 80970 Vectors 1
+## 1599 80970 Vectors 1
+## 1600 80970 Vectors 1
+## 1601 80970 Tidying Data with tidyr 1
+## 1602 80970 Tidying Data with tidyr 1
+## 1603 80970 Missing Values 1
+## 1604 80970 Missing Values 1
+## 1605 80970 Missing Values 1
+## 1606 80970 Missing Values 2
+## 1607 80970 Missing Values 1
+## 1608 80970 Missing Values 1
+## 1609 80970 Missing Values 1
+## 1610 80970 Missing Values 1
+## 1611 80970 Missing Values 2
+## 1612 80970 Missing Values 3
+## 1613 80970 Missing Values 1
+## 1614 80970 Missing Values 1
+## 1615 80970 Missing Values 1
+## 1616 80970 Missing Values 1
+## 1617 80970 Missing Values 1
+## 1618 80970 Tidying Data with tidyr 3
+## 1619 80970 Tidying Data with tidyr 4
+## 1620 80970 Tidying Data with tidyr 5
+## 1621 80970 Subsetting Vectors 1
+## 1622 80970 Subsetting Vectors 1
+## 1623 80970 Subsetting Vectors 1
+## 1624 80970 Subsetting Vectors 2
+## 1625 80970 Tidying Data with tidyr 1
+## 1626 80970 Tidying Data with tidyr 1
+## 1627 80970 Tidying Data with tidyr 1
+## 1628 80970 Tidying Data with tidyr 1
+## 1629 80970 Tidying Data with tidyr 1
+## 1630 80970 Tidying Data with tidyr 2
+## 1631 80970 Tidying Data with tidyr 3
+## 1632 80970 Tidying Data with tidyr 1
+## 1633 80970 Subsetting Vectors 1
+## 1634 80970 Logic 2
+## 1635 80970 Logic 1
+## 1636 80970 Dates and Times 1
+## 1637 80970 Tidying Data with tidyr 1
+## 1638 80970 Tidying Data with tidyr 1
+## 1639 80970 Tidying Data with tidyr 1
+## 1640 80970 Tidying Data with tidyr 1
+## 1641 80970 Manipulating Data with dplyr 1
+## 1642 80970 Logic 1
+## 1643 80970 Tidying Data with tidyr 1
+## 1644 80970 Tidying Data with tidyr 2
+## 1645 80970 Subsetting Vectors 1
+## 1646 80970 Subsetting Vectors 1
+## 1647 80970 Subsetting Vectors 1
+## 1648 80970 Subsetting Vectors 1
+## 1649 80970 Logic 1
+## 1650 80970 Logic 1
+## 1651 80970 Logic 1
+## 1652 80970 Logic 1
+## 1653 80970 Manipulating Data with dplyr 1
+## 1654 80970 Logic 1
+## 1655 80970 Dates and Times 1
+## 1656 80970 Logic 2
+## 1657 80970 Logic 3
+## 1658 80970 Manipulating Data with dplyr 1
+## 1659 80970 Manipulating Data with dplyr 1
+## 1660 80970 Manipulating Data with dplyr 2
+## 1661 80970 Logic 1
+## 1662 80970 Logic 1
+## 1663 80970 Logic 1
+## 1664 80970 Logic 1
+## 1665 80970 Logic 1
+## 1666 80970 Logic 1
+## 1667 80970 Dates and Times 1
+## 1668 80970 Subsetting Vectors 1
+## 1669 80970 Dates and Times 1
+## 1670 80970 Dates and Times 2
+## 1671 80970 Logic 1
+## 1672 80970 Logic 1
+## 1673 80970 Logic 1
+## 1674 80970 Dates and Times 1
+## 1675 80970 Dates and Times 1
+## 1676 80970 Manipulating Data with dplyr 1
+## 1677 80970 Manipulating Data with dplyr 1
+## 1678 80970 Looking at Data 1
+## 1679 80970 Manipulating Data with dplyr 1
+## 1680 80970 Dates and Times 1
+## 1681 80970 Tidying Data with tidyr 1
+## 1682 80970 Subsetting Vectors 1
+## 1683 80970 Subsetting Vectors 1
+## 1684 80970 Looking at Data 1
+## 1685 80970 Looking at Data 1
+## 1686 80970 Looking at Data 1
+## 1687 80970 Looking at Data 1
+## 1688 80970 Manipulating Data with dplyr 1
+## 1689 80970 Subsetting Vectors 1
+## 1690 80970 Looking at Data 1
+## 1691 80970 Manipulating Data with dplyr 1
+## 1692 80970 Manipulating Data with dplyr 1
+## 1693 80970 Manipulating Data with dplyr 1
+## 1694 80970 Dates and Times 1
+## 1695 80970 Missing Values 1
+## 1696 80970 Subsetting Vectors 1
+## 1697 80970 Dates and Times 2
+## 1698 80970 Manipulating Data with dplyr 1
+## 1699 80970 Manipulating Data with dplyr 1
+## 1700 80970 Tidying Data with tidyr 2
+## 1701 80970 Subsetting Vectors 2
+## 1702 80970 Manipulating Data with dplyr 1
+## 1703 80970 Subsetting Vectors 1
+## 1704 80970 Dates and Times 1
+## 1705 80970 Subsetting Vectors 1
+## 1706 80970 Manipulating Data with dplyr 2
+## 1707 80970 Manipulating Data with dplyr 1
+## 1708 80970 Tidying Data with tidyr 1
+## 1709 80970 Manipulating Data with dplyr 1
+## 1710 80970 Tidying Data with tidyr 1
+## 1711 80970 Tidying Data with tidyr 2
+## 1712 80970 Manipulating Data with dplyr 1
+## 1713 80970 Manipulating Data with dplyr 1
+## 1714 80970 Subsetting Vectors 3
+## 1715 80970 Tidying Data with tidyr 1
+## 1716 80970 Manipulating Data with dplyr 1
+## 1717 80970 Subsetting Vectors 1
+## 1718 80970 Manipulating Data with dplyr 1
+## 1719 96746 Basic Building Blocks 1
+## 1720 96746 Matrices and Data Frames 3
+## 1721 96746 Basic Building Blocks 1
+## 1722 96746 Matrices and Data Frames 1
+## 1723 96746 Matrices and Data Frames 1
+## 1724 96746 Basic Building Blocks 1
+## 1725 96746 Matrices and Data Frames 1
+## 1726 96746 Matrices and Data Frames 1
+## 1727 96746 Matrices and Data Frames 1
+## 1728 96746 Matrices and Data Frames 1
+## 1729 96746 Basic Building Blocks 1
+## 1730 96746 Basic Building Blocks 1
+## 1731 96746 Matrices and Data Frames 1
+## 1732 96746 Matrices and Data Frames 1
+## 1733 96746 Matrices and Data Frames 1
+## 1734 96746 Matrices and Data Frames 2
+## 1735 96746 Basic Building Blocks 1
+## 1736 96746 Basic Building Blocks 1
+## 1737 96746 Matrices and Data Frames 2
+## 1738 96746 Basic Building Blocks 1
+## 1739 96746 Basic Building Blocks 1
+## 1740 96746 Basic Building Blocks 1
+## 1741 96746 Basic Building Blocks 1
+## 1742 96746 Basic Building Blocks 1
+## 1743 96746 Matrices and Data Frames 1
+## 1744 96746 Matrices and Data Frames 1
+## 1745 96746 Matrices and Data Frames 1
+## 1746 96746 Basic Building Blocks 1
+## 1747 96746 Basic Building Blocks 1
+## 1748 96746 Matrices and Data Frames 1
+## 1749 96746 Matrices and Data Frames 1
+## 1750 96746 Matrices and Data Frames 1
+## 1751 96746 Matrices and Data Frames 2
+## 1752 96746 Matrices and Data Frames 2
+## 1753 96746 Basic Building Blocks 1
+## 1754 96746 Basic Building Blocks 1
+## 1755 96746 Matrices and Data Frames 1
+## 1756 96746 Matrices and Data Frames 2
+## 1757 96746 Matrices and Data Frames 2
+## 1758 96746 Matrices and Data Frames 1
+## 1759 96746 Matrices and Data Frames 1
+## 1760 96746 Basic Building Blocks 1
+## 1761 96746 Basic Building Blocks 1
+## 1762 96746 Basic Building Blocks 1
+## 1763 96746 Matrices and Data Frames 1
+## 1764 96746 Matrices and Data Frames 1
+## 1765 96746 Matrices and Data Frames 1
+## 1766 96746 Matrices and Data Frames 1
+## 1767 96746 Matrices and Data Frames 4
+## 1768 96746 Basic Building Blocks 1
+## 1769 96746 Basic Building Blocks 1
+## 1770 96746 Basic Building Blocks 1
+## 1771 96746 Matrices and Data Frames 1
+## 1772 96746 Matrices and Data Frames 1
+## 1773 96746 Basic Building Blocks 1
+## 1774 96746 Matrices and Data Frames 5
+## 1775 96746 Matrices and Data Frames 4
+## 1776 96746 Matrices and Data Frames 6
+## 1777 96746 Matrices and Data Frames 3
+## 1778 74372 Vectors 1
+## 1779 74372 Basic Building Blocks 1
+## 1780 74372 Vectors 1
+## 1781 74372 Basic Building Blocks 1
+## 1782 74372 Basic Building Blocks 2
+## 1783 74372 Basic Building Blocks 1
+## 1784 74372 Basic Building Blocks 1
+## 1785 74372 Basic Building Blocks 1
+## 1786 74372 Vectors 1
+## 1787 74372 Workspace and Files 1
+## 1788 74372 Basic Building Blocks 1
+## 1789 74372 Vectors 1
+## 1790 74372 Basic Building Blocks 1
+## 1791 74372 Basic Building Blocks 1
+## 1792 74372 Workspace and Files 1
+## 1793 74372 Workspace and Files 1
+## 1794 74372 Vectors 2
+## 1795 74372 Basic Building Blocks 1
+## 1796 74372 Workspace and Files 1
+## 1797 74372 Workspace and Files 1
+## 1798 74372 Workspace and Files 1
+## 1799 74372 Basic Building Blocks 1
+## 1800 74372 Workspace and Files 1
+## 1801 74372 Basic Building Blocks 1
+## 1802 74372 Basic Building Blocks 1
+## 1803 74372 Basic Building Blocks 1
+## 1804 74372 Basic Building Blocks 1
+## 1805 74372 Vectors 1
+## 1806 74372 Workspace and Files 2
+## 1807 74372 Workspace and Files 1
+## 1808 74372 Basic Building Blocks 1
+## 1809 74372 Workspace and Files 1
+## 1810 74372 Vectors 1
+## 1811 74372 Vectors 2
+## 1812 74372 Workspace and Files 1
+## 1813 74372 Workspace and Files 1
+## 1814 74372 Workspace and Files 1
+## 1815 74372 Workspace and Files 1
+## 1816 74372 Workspace and Files 1
+## 1817 74372 Workspace and Files 1
+## 1818 74372 Vectors 1
+## 1819 74372 Workspace and Files 1
+## 1820 74372 Workspace and Files 1
+## 1821 74372 Basic Building Blocks 1
+## 1822 74372 Basic Building Blocks 1
+## 1823 74372 Workspace and Files 1
+## 1824 74372 Workspace and Files 2
+## 1825 74372 Vectors 1
+## 1826 74372 Workspace and Files 1
+## 1827 74372 Vectors 1
+## 1828 74372 Workspace and Files 1
+## 1829 74372 Workspace and Files 1
+## 1830 74372 Workspace and Files 2
+## 1831 74372 Missing Values 2
+## 1832 74372 Vectors 2
+## 1833 74372 Vectors 2
+## 1834 74372 Vectors 1
+## 1835 74372 Workspace and Files 1
+## 1836 74372 Vectors 1
+## 1837 74372 Workspace and Files 1
+## 1838 74372 Basic Building Blocks 1
+## 1839 74372 Basic Building Blocks 1
+## 1840 74372 Missing Values 1
+## 1841 74372 Vectors 1
+## 1842 74372 Vectors 1
+## 1843 74372 Vectors 1
+## 1844 74372 Basic Building Blocks 1
+## 1845 74372 Missing Values 1
+## 1846 74372 Vectors 1
+## 1847 74372 Vectors 1
+## 1848 74372 Missing Values 1
+## 1849 74372 Vectors 4
+## 1850 74372 Vectors 1
+## 1851 74372 Missing Values 1
+## 1852 74372 Vectors 3
+## 1853 74372 Workspace and Files 2
+## 1854 74372 Missing Values 1
+## 1855 74372 Missing Values 1
+## 1856 74372 Vectors 2
+## 1857 74372 Missing Values 1
+## 1858 74372 Missing Values 1
+## 1859 74372 Missing Values 1
+## 1860 74372 Workspace and Files 1
+## 1861 74372 Basic Building Blocks 1
+## 1862 74372 Missing Values 1
+## 1863 74372 Basic Building Blocks 1
+## 1864 74372 Missing Values 1
+## 1865 74372 Missing Values 1
+## 1866 74372 Missing Values 1
+## 1867 74372 Vectors 1
+## 1868 74372 Basic Building Blocks 1
+## 1869 74372 Vectors 1
+## 1870 74372 Vectors 2
+## 1871 74372 Vectors 3
+## 1872 74372 Missing Values 1
+## 1873 74372 Vectors 1
+## 1874 74372 Missing Values 1
+## 1875 45253 NA
+## 1876 16365 Subsetting Vectors 1
+## 1877 16365 Matrices and Data Frames 1
+## 1878 16365 Functions 1
+## 1879 16365 Functions 1
+## 1880 16365 Functions 1
+## 1881 16365 Functions 1
+## 1882 16365 Subsetting Vectors 1
+## 1883 16365 Subsetting Vectors 1
+## 1884 16365 Basic Building Blocks NA
+## 1885 16365 Functions 2
+## 1886 16365 Basic Building Blocks 1
+## 1887 16365 Matrices and Data Frames 2
+## 1888 16365 NA
+## 1889 16365 Basic Building Blocks 1
+## 1890 16365 Matrices and Data Frames 1
+## 1891 16365 Basic Building Blocks 2
+## 1892 16365 Workspace and Files 1
+## 1893 16365 Matrices and Data Frames 1
+## 1894 16365 Matrices and Data Frames 1
+## 1895 16365 Matrices and Data Frames 2
+## 1896 16365 Matrices and Data Frames 1
+## 1897 16365 Matrices and Data Frames 1
+## 1898 16365 Basic Building Blocks 1
+## 1899 16365 Workspace and Files 2
+## 1900 16365 Matrices and Data Frames 1
+## 1901 16365 Basic Building Blocks 1
+## 1902 16365 Dates and Times 1
+## 1903 16365 Matrices and Data Frames 1
+## 1904 16365 Subsetting Vectors 1
+## 1905 16365 Subsetting Vectors 1
+## 1906 16365 Functions 1
+## 1907 16365 Logic 1
+## 1908 16365 Matrices and Data Frames 1
+## 1909 16365 Subsetting Vectors 1
+## 1910 16365 NA
+## 1911 16365 Basic Building Blocks 1
+## 1912 16365 Matrices and Data Frames 1
+## 1913 16365 Workspace and Files 1
+## 1914 16365 Dates and Times 1
+## 1915 16365 Logic 1
+## 1916 16365 Logic 1
+## 1917 16365 Dates and Times 1
+## 1918 16365 Dates and Times 2
+## 1919 16365 Basic Building Blocks 1
+## 1920 16365 Subsetting Vectors 1
+## 1921 16365 Logic 1
+## 1922 16365 Logic 1
+## 1923 16365 Matrices and Data Frames 1
+## 1924 16365 Workspace and Files 1
+## 1925 16365 Matrices and Data Frames 1
+## 1926 16365 Subsetting Vectors 1
+## 1927 16365 Logic 1
+## 1928 16365 Functions 1
+## 1929 16365 Dates and Times 1
+## 1930 16365 Dates and Times 1
+## 1931 16365 Workspace and Files 2
+## 1932 16365 Vectors 1
+## 1933 16365 Basic Building Blocks 1
+## 1934 16365 NA
+## 1935 16365 Functions 1
+## 1936 16365 Functions 1
+## 1937 16365 Matrices and Data Frames 1
+## 1938 16365 Matrices and Data Frames 1
+## 1939 16365 Logic 1
+## 1940 16365 Workspace and Files 1
+## 1941 16365 Logic 1
+## 1942 16365 Vectors 1
+## 1943 16365 Workspace and Files 1
+## 1944 16365 Dates and Times 1
+## 1945 16365 Basic Building Blocks 1
+## 1946 16365 Dates and Times 1
+## 1947 16365 Vectors 1
+## 1948 16365 Matrices and Data Frames 1
+## 1949 16365 Vectors 1
+## 1950 16365 Matrices and Data Frames 1
+## 1951 16365 Basic Building Blocks 1
+## 1952 16365 Basic Building Blocks 1
+## 1953 16365 Logic 1
+## 1954 16365 Dates and Times 2
+## 1955 16365 Missing Values 1
+## 1956 16365 Vectors 1
+## 1957 16365 Vectors 1
+## 1958 16365 Vectors 1
+## 1959 16365 Basic Building Blocks 1
+## 1960 16365 Matrices and Data Frames 1
+## 1961 16365 Basic Building Blocks 1
+## 1962 16365 NA
+## 1963 16365 Vectors 1
+## 1964 16365 Vectors 2
+## 1965 16365 Logic 1
+## 1966 16365 Workspace and Files 1
+## 1967 16365 Functions 1
+## 1968 16365 Vectors 1
+## 1969 16365 Missing Values 1
+## 1970 16365 Dates and Times 1
+## 1971 16365 Dates and Times 1
+## 1972 16365 Functions 1
+## 1973 16365 Vectors 1
+## 1974 16365 Vectors 1
+## 1975 16365 Matrices and Data Frames 1
+## 1976 16365 Basic Building Blocks 1
+## 1977 16365 Basic Building Blocks 2
+## 1978 16365 Matrices and Data Frames 1
+## 1979 16365 Matrices and Data Frames 1
+## 1980 16365 Functions 1
+## 1981 16365 Workspace and Files 1
+## 1982 16365 Functions 1
+## 1983 16365 Functions 2
+## 1984 16365 Functions 3
+## 1985 16365 Workspace and Files 1
+## 1986 16365 Matrices and Data Frames 1
+## 1987 16365 Subsetting Vectors 1
+## 1988 16365 Vectors 2
+## 1989 16365 Vectors 3
+## 1990 16365 Vectors 1
+## 1991 16365 Vectors 2
+## 1992 16365 Vectors 1
+## 1993 16365 Vectors NA
+## 1994 16365 Workspace and Files 1
+## 1995 16365 Logic 1
+## 1996 16365 Logic 1
+## 1997 16365 Dates and Times 1
+## 1998 16365 Functions 1
+## 1999 16365 Matrices and Data Frames 2
+## 2000 16365 Matrices and Data Frames 1
+## 2001 16365 Matrices and Data Frames 1
+## 2002 16365 Subsetting Vectors 1
+## 2003 16365 Matrices and Data Frames 1
+## 2004 16365 Matrices and Data Frames 1
+## 2005 16365 Subsetting Vectors 1
+## 2006 16365 Subsetting Vectors 1
+## 2007 16365 Logic 1
+## 2008 16365 Logic 1
+## 2009 16365 Vectors 2
+## 2010 16365 Dates and Times 1
+## 2011 16365 NA
+## 2012 16365 Matrices and Data Frames 1
+## 2013 16365 Missing Values 1
+## 2014 16365 Functions 1
+## 2015 16365 Logic 2
+## 2016 16365 Logic 1
+## 2017 16365 Dates and Times 1
+## 2018 16365 Workspace and Files 1
+## 2019 16365 Workspace and Files 1
+## 2020 16365 Subsetting Vectors 1
+## 2021 16365 Functions 1
+## 2022 16365 Dates and Times 1
+## 2023 16365 Functions 1
+## 2024 16365 Functions 1
+## 2025 16365 Missing Values 1
+## 2026 16365 Missing Values 1
+## 2027 16365 Matrices and Data Frames 1
+## 2028 16365 Functions 1
+## 2029 16365 Logic 1
+## 2030 16365 Workspace and Files 1
+## 2031 16365 Workspace and Files 2
+## 2032 16365 Workspace and Files 1
+## 2033 16365 Functions 1
+## 2034 16365 Dates and Times 1
+## 2035 16365 Dates and Times 1
+## 2036 16365 Functions 1
+## 2037 16365 Functions 1
+## 2038 16365 Missing Values 1
+## 2039 16365 Missing Values 1
+## 2040 16365 Missing Values 1
+## 2041 16365 Subsetting Vectors 1
+## 2042 16365 Functions 2
+## 2043 16365 Functions 1
+## 2044 16365 Logic 1
+## 2045 16365 Logic 1
+## 2046 16365 Functions 1
+## 2047 16365 Functions 1
+## 2048 16365 Functions 1
+## 2049 16365 Missing Values 1
+## 2050 16365 Functions 1
+## 2051 16365 Functions 1
+## 2052 16365 Functions 1
+## 2053 16365 Functions 1
+## 2054 16365 Functions 1
+## 2055 16365 Missing Values 1
+## 2056 16365 Missing Values 1
+## 2057 16365 Subsetting Vectors 2
+## 2058 16365 Subsetting Vectors 1
+## 2059 16365 Missing Values 2
+## 2060 16365 Missing Values 1
+## 2061 16365 Missing Values 1
+## 2062 16365 Missing Values 2
+## 2063 16365 Functions 1
+## 2064 16365 Functions 1
+## 2065 16365 Missing Values 1
+## 2066 16365 Missing Values 1
+## 2067 68515 Missing Values 1
+## 2068 68515 Vectors 1
+## 2069 68515 Dates and Times 1
+## 2070 68515 Functions 6
+## 2071 68515 Dates and Times 2
+## 2072 68515 Functions 2
+## 2073 68515 Functions 3
+## 2074 68515 Dates and Times 1
+## 2075 68515 Functions 1
+## 2076 68515 Functions 2
+## 2077 68515 Functions 5
+## 2078 68515 Dates and Times 1
+## 2079 68515 Dates and Times 1
+## 2080 68515 Functions 1
+## 2081 68515 Functions 1
+## 2082 68515 Vectors 1
+## 2083 68515 Dates and Times 1
+## 2084 68515 Dates and Times 1
+## 2085 68515 Functions 3
+## 2086 68515 Logic 1
+## 2087 68515 Dates and Times 1
+## 2088 68515 Dates and Times 1
+## 2089 68515 Dates and Times 1
+## 2090 68515 Functions 1
+## 2091 68515 Vectors 1
+## 2092 68515 Vectors 1
+## 2093 68515 Functions 2
+## 2094 68515 Functions 1
+## 2095 68515 Functions 1
+## 2096 68515 Functions 4
+## 2097 68515 Functions 1
+## 2098 68515 Workspace and Files 2
+## 2099 68515 Workspace and Files 1
+## 2100 68515 Functions 16
+## 2101 68515 Logic 1
+## 2102 68515 Functions 4
+## 2103 68515 Vectors 1
+## 2104 68515 Functions 3
+## 2105 68515 Dates and Times 1
+## 2106 68515 Dates and Times 1
+## 2107 68515 Functions 4
+## 2108 68515 Functions 1
+## 2109 68515 Functions 1
+## 2110 68515 Functions 2
+## 2111 68515 Functions 4
+## 2112 68515 Functions 5
+## 2113 68515 Vectors 1
+## 2114 68515 Functions 1
+## 2115 68515 Vectors 1
+## 2116 68515 Functions 5
+## 2117 68515 Functions 6
+## 2118 68515 Functions 1
+## 2119 68515 Dates and Times 1
+## 2120 68515 Functions 1
+## 2121 68515 Functions 3
+## 2122 68515 Workspace and Files 1
+## 2123 68515 Workspace and Files 1
+## 2124 68515 Workspace and Files 1
+## 2125 68515 Functions 1
+## 2126 68515 Functions 2
+## 2127 68515 Dates and Times 1
+## 2128 68515 Vectors 1
+## 2129 68515 Vectors 1
+## 2130 68515 Functions 1
+## 2131 68515 Vectors 1
+## 2132 68515 Vectors 2
+## 2133 68515 Functions 1
+## 2134 68515 Functions 1
+## 2135 68515 Workspace and Files 1
+## 2136 68515 Functions 1
+## 2137 68515 Dates and Times 1
+## 2138 68515 Dates and Times 1
+## 2139 68515 Vectors 2
+## 2140 68515 Workspace and Files 1
+## 2141 68515 Logic 1
+## 2142 68515 Functions 7
+## 2143 68515 Functions 8
+## 2144 68515 Functions 9
+## 2145 68515 Functions 7
+## 2146 68515 Functions 8
+## 2147 68515 Functions 9
+## 2148 68515 Functions 10
+## 2149 68515 Logic 1
+## 2150 68515 Subsetting Vectors 2
+## 2151 68515 Subsetting Vectors 1
+## 2152 68515 Workspace and Files 1
+## 2153 68515 Functions 1
+## 2154 68515 Functions 15
+## 2155 68515 Logic 1
+## 2156 68515 Functions 1
+## 2157 68515 Functions 1
+## 2158 68515 Functions 1
+## 2159 68515 Functions 1
+## 2160 68515 Dates and Times 1
+## 2161 68515 Functions 1
+## 2162 68515 Functions 4
+## 2163 68515 Functions 1
+## 2164 68515 Vectors 1
+## 2165 68515 Vectors 1
+## 2166 68515 Dates and Times 2
+## 2167 68515 Vectors 1
+## 2168 68515 Dates and Times 1
+## 2169 68515 Vectors 2
+## 2170 68515 Vectors 1
+## 2171 68515 Dates and Times 1
+## 2172 68515 Dates and Times 1
+## 2173 68515 Functions 1
+## 2174 68515 Workspace and Files 1
+## 2175 68515 Logic 1
+## 2176 68515 Subsetting Vectors 1
+## 2177 68515 Basic Building Blocks 2
+## 2178 68515 Basic Building Blocks 1
+## 2179 68515 Logic 2
+## 2180 68515 Logic 1
+## 2181 68515 Basic Building Blocks 1
+## 2182 68515 Basic Building Blocks 1
+## 2183 68515 Logic 1
+## 2184 68515 Logic 2
+## 2185 68515 Missing Values 1
+## 2186 68515 Functions 1
+## 2187 68515 Workspace and Files 1
+## 2188 68515 Workspace and Files 1
+## 2189 68515 Functions 11
+## 2190 68515 Functions 12
+## 2191 68515 Functions 13
+## 2192 68515 Functions 1
+## 2193 68515 Functions 14
+## 2194 68515 Workspace and Files 1
+## 2195 68515 Workspace and Files 1
+## 2196 68515 Workspace and Files 2
+## 2197 68515 Missing Values 1
+## 2198 68515 Logic 1
+## 2199 68515 Dates and Times 1
+## 2200 68515 Basic Building Blocks 1
+## 2201 68515 Vectors 1
+## 2202 68515 Vectors 1
+## 2203 68515 Vectors 1
+## 2204 68515 Dates and Times 1
+## 2205 68515 Dates and Times 1
+## 2206 68515 Vectors 1
+## 2207 68515 Basic Building Blocks 1
+## 2208 68515 Functions 3
+## 2209 68515 Dates and Times 1
+## 2210 68515 Dates and Times 1
+## 2211 68515 Functions 6
+## 2212 68515 Functions 1
+## 2213 68515 Basic Building Blocks 1
+## 2214 68515 Logic 1
+## 2215 68515 Logic 1
+## 2216 68515 Logic 1
+## 2217 68515 Subsetting Vectors 2
+## 2218 68515 Subsetting Vectors 1
+## 2219 68515 Basic Building Blocks 1
+## 2220 68515 Basic Building Blocks 1
+## 2221 68515 Logic 1
+## 2222 68515 Subsetting Vectors 1
+## 2223 68515 Basic Building Blocks 1
+## 2224 68515 Workspace and Files 2
+## 2225 68515 Logic 3
+## 2226 68515 Logic 4
+## 2227 68515 Logic 5
+## 2228 68515 Logic 1
+## 2229 68515 Workspace and Files 1
+## 2230 68515 Functions 1
+## 2231 68515 Functions 2
+## 2232 68515 Functions 3
+## 2233 68515 Workspace and Files 2
+## 2234 68515 Subsetting Vectors 1
+## 2235 68515 Logic 2
+## 2236 68515 Logic 1
+## 2237 68515 Logic 1
+## 2238 68515 Missing Values 1
+## 2239 68515 Logic 1
+## 2240 68515 Logic 1
+## 2241 68515 Basic Building Blocks 1
+## 2242 68515 Vectors 1
+## 2243 68515 Dates and Times 1
+## 2244 68515 Basic Building Blocks 1
+## 2245 68515 Basic Building Blocks 1
+## 2246 68515 Dates and Times 1
+## 2247 68515 Logic 2
+## 2248 68515 Basic Building Blocks 1
+## 2249 68515 Workspace and Files 1
+## 2250 68515 Workspace and Files 1
+## 2251 68515 Basic Building Blocks 1
+## 2252 68515 Basic Building Blocks 1
+## 2253 68515 Logic 1
+## 2254 68515 Basic Building Blocks 1
+## 2255 68515 Basic Building Blocks 1
+## 2256 68515 Basic Building Blocks 1
+## 2257 68515 Logic 1
+## 2258 68515 Logic 1
+## 2259 68515 Subsetting Vectors 2
+## 2260 68515 Subsetting Vectors 5
+## 2261 68515 Missing Values 1
+## 2262 68515 Missing Values 1
+## 2263 68515 Subsetting Vectors 1
+## 2264 68515 Basic Building Blocks 1
+## 2265 68515 Workspace and Files 1
+## 2266 68515 Workspace and Files 2
+## 2267 68515 Workspace and Files 1
+## 2268 68515 Workspace and Files 2
+## 2269 68515 Logic 1
+## 2270 68515 Dates and Times 1
+## 2271 68515 Subsetting Vectors 3
+## 2272 68515 Logic 1
+## 2273 68515 Workspace and Files 1
+## 2274 68515 Logic 3
+## 2275 68515 Logic 1
+## 2276 68515 Missing Values 1
+## 2277 68515 Logic 1
+## 2278 68515 Logic 1
+## 2279 68515 Workspace and Files 1
+## 2280 68515 Workspace and Files 1
+## 2281 68515 Dates and Times 1
+## 2282 68515 Dates and Times 1
+## 2283 68515 Logic 1
+## 2284 68515 Missing Values 1
+## 2285 68515 Subsetting Vectors 4
+## 2286 68515 Logic 1
+## 2287 68515 Workspace and Files 1
+## 2288 68515 Missing Values 1
+## 2289 68515 Vectors 1
+## 2290 68515 Subsetting Vectors 1
+## 2291 68515 Logic 1
+## 2292 68515 Subsetting Vectors 2
+## 2293 68515 Subsetting Vectors 1
+## 2294 68515 Logic 1
+## 2295 68515 Logic 1
+## 2296 68515 Workspace and Files 1
+## 2297 68515 Basic Building Blocks 1
+## 2298 68515 Workspace and Files 2
+## 2299 68515 Subsetting Vectors 1
+## 2300 68515 Logic 2
+## 2301 68515 Missing Values 1
+## 2302 68515 Missing Values 1
+## 2303 68515 Subsetting Vectors 1
+## 2304 68515 Subsetting Vectors 1
+## 2305 68515 Subsetting Vectors 1
+## 2306 68515 Missing Values 1
+## 2307 68515 Missing Values 1
+## 2308 68515 Basic Building Blocks 1
+## 2309 68515 Workspace and Files 1
+## 2310 68515 Subsetting Vectors 1
+## 2311 68515 Logic 1
+## 2312 68515 Logic 1
+## 2313 68515 Subsetting Vectors 1
+## 2314 68515 Logic 1
+## 2315 68515 Subsetting Vectors 1
+## 2316 68515 Basic Building Blocks 2
+## 2317 68515 Subsetting Vectors 1
+## 2318 68515 Subsetting Vectors 1
+## 2319 68515 Logic 2
+## 2320 68515 Subsetting Vectors 1
+## 2321 68515 Workspace and Files 1
+## 2322 68515 Logic 1
+## 2323 68515 Missing Values 1
+## 2324 68515 Missing Values 1
+## 2325 68515 Subsetting Vectors 1
+## 2326 68515 Subsetting Vectors 1
+## 2327 68515 Logic 2
+## 2328 68515 Subsetting Vectors 1
+## 2329 68515 Subsetting Vectors 1
+## 2330 68515 Subsetting Vectors 1
+## 2331 68515 Subsetting Vectors 1
+## 2332 68515 Subsetting Vectors 1
+## 2333 68515 Logic 3
+## 2334 68515 Subsetting Vectors 1
+## 2335 68515 Basic Building Blocks 1
+## 2336 68515 Subsetting Vectors 1
+## 2337 68515 Subsetting Vectors 2
+## 2338 68515 Basic Building Blocks 1
+## 2339 68515 Logic 1
+## 2340 68515 Subsetting Vectors 2
+## 2341 67994 Matrices and Data Frames 1
+## 2342 67994 Matrices and Data Frames 2
+## 2343 67994 Matrices and Data Frames 1
+## 2344 67994 Matrices and Data Frames 2
+## 2345 67994 Matrices and Data Frames 3
+## 2346 67994 Matrices and Data Frames 1
+## 2347 67994 Matrices and Data Frames 1
+## 2348 67994 Matrices and Data Frames 1
+## 2349 67994 Matrices and Data Frames 4
+## 2350 67994 Matrices and Data Frames 1
+## 2351 67994 Matrices and Data Frames 1
+## 2352 67994 Matrices and Data Frames 1
+## 2353 67994 Matrices and Data Frames 1
+## 2354 67994 Matrices and Data Frames 1
+## 2355 67994 Matrices and Data Frames 1
+## 2356 67994 Matrices and Data Frames 1
+## 2357 67994 Matrices and Data Frames 1
+## 2358 67994 Matrices and Data Frames 1
+## 2359 67994 Matrices and Data Frames 1
+## 2360 67994 Matrices and Data Frames 1
+## 2361 67994 Matrices and Data Frames 1
+## 2362 67994 Matrices and Data Frames 1
+## 2363 67994 Matrices and Data Frames 1
+## 2364 67994 Matrices and Data Frames 2
+## 2365 67994 Matrices and Data Frames 1
+## 2366 67994 Matrices and Data Frames 1
+## 2367 67994 Matrices and Data Frames 1
+## 2368 67994 Matrices and Data Frames 1
+## 2369 67994 Matrices and Data Frames 1
+## 2370 20682 NA
+## 2371 32870 Basic Building Blocks 1
+## 2372 32870 Basic Building Blocks 1
+## 2373 32870 Basic Building Blocks 1
+## 2374 32870 Basic Building Blocks 2
+## 2375 32870 Basic Building Blocks 1
+## 2376 32870 Basic Building Blocks 1
+## 2377 32870 Basic Building Blocks 1
+## 2378 32870 Basic Building Blocks 1
+## 2379 32870 Basic Building Blocks 1
+## 2380 32870 Basic Building Blocks 1
+## 2381 32870 Basic Building Blocks 1
+## 2382 32870 Basic Building Blocks 1
+## 2383 32870 Basic Building Blocks 1
+## 2384 32870 Basic Building Blocks 1
+## 2385 32870 Basic Building Blocks 1
+## 2386 27487 Basic Building Blocks 1
+## 2387 27487 Basic Building Blocks 1
+## 2388 27487 Missing Values 1
+## 2389 27487 Vectors 1
+## 2390 27487 Vectors 1
+## 2391 27487 Dates and Times 1
+## 2392 27487 Basic Building Blocks 1
+## 2393 27487 Logic 1
+## 2394 27487 Basic Building Blocks 1
+## 2395 27487 Basic Building Blocks 1
+## 2396 27487 Basic Building Blocks 2
+## 2397 27487 Logic 1
+## 2398 27487 Logic 1
+## 2399 27487 Vectors 1
+## 2400 27487 Logic 1
+## 2401 27487 Basic Building Blocks 1
+## 2402 27487 Basic Building Blocks 1
+## 2403 27487 Dates and Times 1
+## 2404 27487 Vectors 2
+## 2405 27487 Basic Building Blocks 1
+## 2406 27487 Logic 1
+## 2407 27487 Basic Building Blocks 1
+## 2408 27487 Logic 1
+## 2409 27487 Logic 1
+## 2410 27487 Logic 2
+## 2411 27487 Logic 1
+## 2412 27487 Matrices and Data Frames 1
+## 2413 27487 Dates and Times 1
+## 2414 27487 Logic 1
+## 2415 27487 Dates and Times 1
+## 2416 27487 Missing Values 1
+## 2417 27487 Missing Values 1
+## 2418 27487 Dates and Times 1
+## 2419 27487 Vectors 1
+## 2420 27487 Basic Building Blocks 1
+## 2421 27487 Basic Building Blocks 1
+## 2422 27487 Vectors 2
+## 2423 27487 Dates and Times 1
+## 2424 27487 Vectors 1
+## 2425 27487 Dates and Times 1
+## 2426 27487 Dates and Times 1
+## 2427 27487 Vectors 1
+## 2428 27487 Vectors 1
+## 2429 27487 Vectors 1
+## 2430 27487 Vectors 2
+## 2431 27487 Vectors 1
+## 2432 27487 Vectors 1
+## 2433 27487 Logic 1
+## 2434 27487 Logic 1
+## 2435 27487 Logic 1
+## 2436 27487 Vectors 1
+## 2437 27487 Vectors 1
+## 2438 27487 Subsetting Vectors 1
+## 2439 27487 Dates and Times 1
+## 2440 27487 Dates and Times 1
+## 2441 27487 Dates and Times 1
+## 2442 27487 Subsetting Vectors 1
+## 2443 27487 Subsetting Vectors 1
+## 2444 27487 Dates and Times 1
+## 2445 27487 Logic 1
+## 2446 27487 Logic 1
+## 2447 27487 Vectors 1
+## 2448 27487 Vectors 1
+## 2449 27487 Logic 1
+## 2450 27487 Subsetting Vectors 1
+## 2451 27487 Missing Values 1
+## 2452 27487 Subsetting Vectors 1
+## 2453 27487 Matrices and Data Frames 2
+## 2454 27487 Logic 1
+## 2455 27487 Missing Values 1
+## 2456 27487 Dates and Times 1
+## 2457 27487 Logic 1
+## 2458 27487 Basic Building Blocks 1
+## 2459 27487 Logic 2
+## 2460 27487 Logic 1
+## 2461 27487 Logic 1
+## 2462 27487 Logic 2
+## 2463 27487 Vectors 1
+## 2464 27487 Dates and Times 1
+## 2465 27487 Logic 1
+## 2466 27487 Logic 1
+## 2467 27487 Logic 1
+## 2468 27487 Vectors 1
+## 2469 27487 Logic 1
+## 2470 27487 Logic 1
+## 2471 27487 Logic 1
+## 2472 27487 Logic 1
+## 2473 27487 Logic 1
+## 2474 27487 Logic 1
+## 2475 27487 Logic 1
+## 2476 27487 Logic 1
+## 2477 27487 Matrices and Data Frames 1
+## 2478 27487 Matrices and Data Frames 1
+## 2479 27487 Matrices and Data Frames 1
+## 2480 27487 Subsetting Vectors 1
+## 2481 27487 Subsetting Vectors 1
+## 2482 27487 Missing Values 1
+## 2483 27487 Basic Building Blocks 1
+## 2484 27487 Subsetting Vectors 1
+## 2485 27487 Subsetting Vectors 1
+## 2486 27487 Vectors 1
+## 2487 27487 Logic 1
+## 2488 27487 Logic 1
+## 2489 27487 Logic 1
+## 2490 27487 Logic 2
+## 2491 27487 Logic 3
+## 2492 27487 Logic 4
+## 2493 27487 Logic 5
+## 2494 27487 Missing Values 1
+## 2495 27487 Logic 1
+## 2496 27487 Logic 1
+## 2497 27487 Basic Building Blocks 1
+## 2498 27487 Subsetting Vectors 1
+## 2499 27487 Matrices and Data Frames 1
+## 2500 27487 Missing Values 1
+## 2501 27487 Missing Values 2
+## 2502 27487 Missing Values 3
+## 2503 27487 Dates and Times 3
+## 2504 27487 Logic 1
+## 2505 27487 Missing Values 1
+## 2506 27487 Missing Values 1
+## 2507 27487 Missing Values 1
+## 2508 27487 Matrices and Data Frames 1
+## 2509 27487 Dates and Times 1
+## 2510 27487 Basic Building Blocks 1
+## 2511 27487 Basic Building Blocks 1
+## 2512 27487 Basic Building Blocks 1
+## 2513 27487 Subsetting Vectors 1
+## 2514 27487 Subsetting Vectors 2
+## 2515 27487 Subsetting Vectors 1
+## 2516 27487 Subsetting Vectors 1
+## 2517 27487 Vectors 1
+## 2518 27487 Basic Building Blocks 1
+## 2519 27487 Basic Building Blocks 1
+## 2520 27487 Matrices and Data Frames 1
+## 2521 27487 Dates and Times 1
+## 2522 27487 Dates and Times 1
+## 2523 27487 Dates and Times 1
+## 2524 27487 Matrices and Data Frames 1
+## 2525 27487 Matrices and Data Frames 1
+## 2526 27487 Dates and Times 1
+## 2527 27487 Vectors 1
+## 2528 27487 Basic Building Blocks 1
+## 2529 27487 Vectors 1
+## 2530 27487 Missing Values 1
+## 2531 27487 Missing Values 1
+## 2532 27487 Dates and Times 1
+## 2533 27487 Missing Values 1
+## 2534 27487 Dates and Times 1
+## 2535 27487 Subsetting Vectors 2
+## 2536 27487 Matrices and Data Frames 1
+## 2537 27487 Basic Building Blocks 1
+## 2538 27487 Subsetting Vectors 1
+## 2539 27487 Matrices and Data Frames 1
+## 2540 27487 Dates and Times 2
+## 2541 27487 Dates and Times 1
+## 2542 27487 Dates and Times 1
+## 2543 27487 Matrices and Data Frames 2
+## 2544 27487 Dates and Times 1
+## 2545 27487 Dates and Times 1
+## 2546 27487 Dates and Times 2
+## 2547 27487 Dates and Times 1
+## 2548 27487 Matrices and Data Frames 1
+## 2549 27487 Subsetting Vectors 1
+## 2550 27487 Subsetting Vectors 1
+## 2551 27487 Subsetting Vectors 1
+## 2552 27487 Matrices and Data Frames 1
+## 2553 27487 Subsetting Vectors 1
+## 2554 27487 Matrices and Data Frames 1
+## 2555 27487 Matrices and Data Frames 1
+## 2556 27487 Dates and Times 1
+## 2557 27487 Dates and Times 2
+## 2558 27487 Matrices and Data Frames 1
+## 2559 27487 Dates and Times 2
+## 2560 27487 Matrices and Data Frames 1
+## 2561 27487 Subsetting Vectors 1
+## 2562 27487 Matrices and Data Frames 1
+## 2563 27487 Basic Building Blocks 2
+## 2564 27487 Subsetting Vectors 1
+## 2565 27487 Matrices and Data Frames 1
+## 2566 27487 Matrices and Data Frames 1
+## 2567 27487 Dates and Times 1
+## 2568 27487 Dates and Times 1
+## 2569 27487 Subsetting Vectors 1
+## 2570 27487 Basic Building Blocks 1
+## 2571 27487 Subsetting Vectors 1
+## 2572 27487 Matrices and Data Frames 1
+## 2573 27487 Missing Values 1
+## 2574 27487 Basic Building Blocks 2
+## 2575 27487 Subsetting Vectors 1
+## 2576 27487 Matrices and Data Frames 1
+## 2577 27487 Matrices and Data Frames 2
+## 2578 27487 Subsetting Vectors 1
+## 2579 27487 Subsetting Vectors 1
+## 2580 27487 Matrices and Data Frames 1
+## 2581 27487 Basic Building Blocks 1
+## 2582 27487 Subsetting Vectors 1
+## 2583 27487 Subsetting Vectors 1
+## 2584 27487 Matrices and Data Frames 1
+## 2585 86730 NA
+## 2586 21536 Graphics_Devices_in_R 1
+## 2587 21536 Graphics_Devices_in_R 1
+## 2588 21536 Graphics_Devices_in_R 1
+## 2589 21536 Graphics_Devices_in_R 1
+## 2590 21536 Graphics_Devices_in_R 1
+## 2591 21536 Graphics_Devices_in_R 1
+## 2592 21536 Graphics_Devices_in_R 1
+## 2593 21536 Graphics_Devices_in_R 2
+## 2594 21536 Grouping and Chaining with dplyr 1
+## 2595 21536 Grouping and Chaining w NA
+## 2596 21536 Graphics_Devices_in_R 1
+## 2597 21536 Graphics_Devices_in_R 1
+## 2598 21536 Base_Plotting_System 2
+## 2599 21536 Base_Plotting_System 3
+## 2600 21536 Base_Plotting_System 1
+## 2601 21536 Clustering_Example 1
+## 2602 21536 Clustering_Example 1
+## 2603 21536 Graphics_Devices_in_R 1
+## 2604 21536 K_Means_Clustering 1
+## 2605 21536 Tidying Data with tidyr 1
+## 2606 21536 Tidying Data with tidyr 1
+## 2607 21536 Manipulating Data with dplyr 1
+## 2608 21536 Graphics_Devices_in_R 1
+## 2609 21536 Graphics_Devices_in_R 1
+## 2610 21536 Base_Plotting_System 1
+## 2611 21536 Manipulating Data with dplyr 4
+## 2612 21536 Manipulating Data with dplyr 2
+## 2613 21536 Manipulating Data with dplyr 1
+## 2614 21536 Manipulating Data with dplyr 1
+## 2615 21536 Manipulating Data with dplyr 1
+## 2616 21536 Manipulating Data with dplyr 1
+## 2617 21536 Manipulating Data with dplyr 1
+## 2618 21536 K_Means_Clustering 1
+## 2619 21536 K_Means_Clustering 1
+## 2620 21536 NA
+## 2621 21536 Base_Plotting_System 2
+## 2622 21536 Base_Plotting_System 1
+## 2623 21536 Manipulating Data with dplyr 3
+## 2624 21536 Looking at Data 1
+## 2625 21536 Looking at Data 1
+## 2626 21536 Looking at Data 1
+## 2627 21536 Looking at Data 1
+## 2628 21536 Base_Plotting_System 1
+## 2629 21536 Base_Plotting_System 1
+## 2630 21536 Base_Plotting_System 2
+## 2631 21536 Looking at Data 1
+## 2632 21536 Looking at Data 1
+## 2633 21536 Looking at Data 1
+## 2634 21536 Principles_of_Analytic_Graphs 1
+## 2635 21536 Manipulating Data with dplyr 2
+## 2636 21536 Looking at Data 1
+## 2637 21536 Clustering_Example 1
+## 2638 21536 Clustering_Example 1
+## 2639 21536 Clustering_Example 1
+## 2640 21536 Clustering_Example 1
+## 2641 21536 Clustering_Example 1
+## 2642 21536 Clustering_Example 1
+## 2643 21536 NA
+## 2644 21536 Grouping and Chaining with dplyr 2
+## 2645 21536 Tidying Data with tidyr 1
+## 2646 21536 Tidying Data with tidyr 2
+## 2647 21536 Tidying Data with tidyr 2
+## 2648 21536 Looking at Data 1
+## 2649 21536 Principles_of_Analytic_Graphs 1
+## 2650 21536 Principles_of_Analytic_Graphs 1
+## 2651 21536 Principles_of_Analytic_Graphs 1
+## 2652 21536 Manipulating Data with dplyr 1
+## 2653 21536 Manipulating Data with dplyr 1
+## 2654 21536 Looking at Data 1
+## 2655 21536 Looking at Data 1
+## 2656 21536 Looking at Data 1
+## 2657 21536 Looking at Data 1
+## 2658 21536 Principles_of_Analytic_Graphs 2
+## 2659 21536 Principles_of_Analytic_Graphs 1
+## 2660 21536 Principles_of_Analytic_Graphs 2
+## 2661 21536 Looking at Data 1
+## 2662 21536 Base_Plotting_System 1
+## 2663 21536 Clustering_Example 1
+## 2664 21536 Exploratory_Graphs 2
+## 2665 21536 Exploratory_Graphs 1
+## 2666 21536 Exploratory_Graphs 1
+## 2667 21536 Exploratory_Graphs 1
+## 2668 21536 Looking NA
+## 2669 21536 Exploratory_Graphs 1
+## 2670 21536 Exploratory_Graphs 1
+## 2671 21536 Base_Plotting_System 1
+## 2672 21536 Clustering_Example 1
+## 2673 21536 Clustering_Example 2
+## 2674 21536 Tidying Data with tidyr 1
+## 2675 21536 Clustering_Example 1
+## 2676 21536 Tidying Data with tidyr 2
+## 2677 21536 Tidying Data NA
+## 2678 21536 Exploratory_Graphs 1
+## 2679 21536 K_Means_Clustering 4
+## 2680 21536 Looking at Data 1
+## 2681 21536 NA
+## 2682 21536 K_Means_Clustering 1
+## 2683 21536 K_Means_Clustering 1
+## 2684 21536 Hierarchica NA
+## 2685 21536 Tidying Data with tidyr 1
+## 2686 21536 Grouping and Chaining with dplyr 1
+## 2687 21536 Base_Plotting_System 1
+## 2688 21536 Clustering_Example 1
+## 2689 21536 Exploratory_Graphs 1
+## 2690 21536 Exploratory_Graphs 1
+## 2691 21536 Hierarchical_Clustering 3
+## 2692 21536 Hierarchical_Clustering 4
+## 2693 21536 K_Means_Clustering 5
+## 2694 21536 Principles_of_Analytic_Graphs 1
+## 2695 21536 Principles_of_Analytic_Graphs 1
+## 2696 21536 Principles_of_Analytic_Graphs 1
+## 2697 21536 Principles_of_Analytic_Graphs 1
+## 2698 21536 Exploratory_Graphs 1
+## 2699 21536 Base_Plotting_System 2
+## 2700 21536 Grouping and Chaining with dplyr 1
+## 2701 21536 Hierarchical_Clustering 1
+## 2702 21536 Hierarchical_Clustering 1
+## 2703 21536 Hierarchical_Clustering 2
+## 2704 21536 Exploratory_Graphs 1
+## 2705 21536 K_Means_Clustering 1
+## 2706 21536 Hierarchical_Clustering 5
+## 2707 21536 K_Means_Clustering 1
+## 2708 21536 K_Means_Clustering 2
+## 2709 21536 K_Means_Clustering 1
+## 2710 21536 Hierarchical_Clustering 1
+## 2711 21536 Grouping and Chaining with dplyr 1
+## 2712 21536 Grouping and Chaining with dplyr 2
+## 2713 21536 Hierarchical_Clustering 1
+## 2714 21536 Tidying Data with tidyr 1
+## 2715 21536 Exploratory_Graphs 1
+## 2716 21536 Exploratory_Graphs 1
+## 2717 21536 Hierarchical_Clustering 1
+## 2718 21536 Hierarchical_Clustering 1
+## 2719 21536 K_Means_Clustering 2
+## 2720 21536 Principles_of_Analytic_Graphs 1
+## 2721 21536 Tidying Data with tidyr 1
+## 2722 21536 Tidying Data with tidyr 1
+## 2723 21536 Hierarchical_Clustering 1
+## 2724 21536 Grouping and Chaining with dplyr 1
+## 2725 21536 Hierarchical_Clustering 1
+## 2726 21536 Grouping and Chaining with dplyr 1
+## 2727 21536 Grouping and Chaining with dplyr 1
+## 2728 21536 Grouping and Chaining with dplyr 1
+## 2729 21536 Grouping and Chaining with dplyr 1
+## 2730 21536 Tidying Data with tidyr 1
+## 2731 21536 K_Means_Clustering 3
+## 2732 65259 Manipulating Data with dplyr 1
+## 2733 65259 Manipulating Data with dplyr 1
+## 2734 65259 Manipulating Data with dplyr 2
+## 2735 65259 Manipulating Data with dplyr 1
+## 2736 65259 Manipulating Data with dplyr 1
+## 2737 65259 Manipulatin NA
+## 2738 65259 Dates and Times 1
+## 2739 65259 Dates and Times 1
+## 2740 65259 Dates and Times 1
+## 2741 65259 Dates and Times 2
+## 2742 65259 Manipulating Data with dplyr 1
+## 2743 65259 Manipulating Data with dplyr 1
+## 2744 65259 Manipulating Data with dplyr 1
+## 2745 65259 Manipulating Data with dplyr 1
+## 2746 65259 Manipulating Data with dplyr 1
+## 2747 65259 Manipulating Data with dplyr 1
+## 2748 65259 Manipulating Data with dplyr 1
+## 2749 65259 Dates and Times 1
+## 2750 65259 Dates and Times 1
+## 2751 65259 Dates and Times 1
+## 2752 65259 Dates and Times 1
+## 2753 65259 Dates and Times 1
+## 2754 65259 Dates and Times 2
+## 2755 65259 Dates and Times 1
+## 2756 65259 Dates and Times 1
+## 2757 65259 Dates and Times 1
+## 2758 65259 Dates and Times 2
+## 2759 65259 Dates and Times 1
+## 2760 65259 NA
+## 2761 65259 Dates and Times 1
+## 2762 2864 Basic Building Blocks 2
+## 2763 2864 Basic Building Blocks 1
+## 2764 2864 Basic Building Blocks 1
+## 2765 2864 Basic Building Blocks 1
+## 2766 2864 Basic Building Blocks 1
+## 2767 2864 Basic Building Blocks 1
+## 2768 2864 Basic Building Blocks 1
+## 2769 2864 Basic Building Blocks 1
+## 2770 2864 Basic Building Blocks 1
+## 2771 2864 Basic Building Blocks 1
+## 2772 2864 Basic Building Blocks 1
+## 2773 2864 Basic Building Blocks 1
+## 2774 2864 Basic Building Blocks 1
+## 2775 2864 Basic Building Blocks 2
+## 2776 2864 Basic Building Blocks 1
+## 2777 2864 Basic Building Blocks 1
+## 2778 2864 Basic Building Blocks 1
+## 2779 2864 Basic Building Blocks 1
+## 2780 2864 Basic Building Blocks 1
+## 2781 2864 Basic Building Blocks 1
+## 2782 2864 Basic Building Blocks 1
+## 2783 2864 Basic Building Blocks 2
+## 2784 2864 Basic Building Blocks 1
+## 2785 2864 Basic Building Blocks 1
+## 2786 2864 Basic Building Blocks 1
+## 2787 2864 Basic Building Blocks 1
+## 2788 34068 Basic Building Blocks 1
+## 2789 34068 Basic Building Blocks 1
+## 2790 34068 Basic Building Blocks 1
+## 2791 34068 Basic Building Blocks 1
+## 2792 34068 Basic Building Blocks 1
+## 2793 34068 Basic Building Blocks 1
+## 2794 34068 Basic Building Blocks 1
+## 2795 34068 Basic Building Blocks 1
+## 2796 34068 Basic Building Blocks 1
+## 2797 34068 Basic Building Blocks 1
+## 2798 34068 Basic Building Blocks 1
+## 2799 34068 Basic Building Blocks 1
+## 2800 34068 Basic Building Blocks 1
+## 2801 34068 Basic Building Blocks 1
+## 2802 34068 Basic Building Blocks 1
+## 2803 34068 Basic Building Blocks 1
+## 2804 34068 Basic Building Blocks 1
+## 2805 34068 Basic Building Blocks 1
+## 2806 34068 Basic Building Blocks 1
+## 2807 34068 Basic Building Blocks 1
+## 2808 34068 Basic Building Blocks 1
+## 2809 34068 Basic Building Blocks 1
+## 2810 34068 Basic Building Blocks 1
+## 2811 76966 Matrices and Data Frames 2
+## 2812 76966 Matrices and Data Frames 1
+## 2813 76966 Matrices and Data Frames 3
+## 2814 76966 Matrices and Data Frames 1
+## 2815 76966 Matrices and Data Frames 1
+## 2816 76966 Matrices and Data Frames 1
+## 2817 76966 Matrices and Data Frames 2
+## 2818 76966 Matrices and Data Frames 1
+## 2819 76966 Matrices and Data Frames 1
+## 2820 76966 Matrices and Data Frames 2
+## 2821 76966 Matrices and Data Frames 1
+## 2822 76966 Matrices and Data Frames 1
+## 2823 76966 Matrices and Data Frames 1
+## 2824 76966 Matrices and Data Frames 1
+## 2825 76966 Matrices and Data Frames 2
+## 2826 76966 Matrices and Data Frames 3
+## 2827 76966 Matrices and Data Frames 1
+## 2828 76966 Matrices and Data Frames 1
+## 2829 76966 Matrices and Data Frames 1
+## 2830 76966 Matrices and Data Frames 1
+## 2831 76966 Matrices and Data Frames 1
+## 2832 76966 Matrices and Data Frames 1
+## 2833 76966 Matrices and Data Frames 1
+## 2834 76966 Matrices and Data Frames 1
+## 2835 76966 Matrices and Data Frames 1
+## 2836 76966 Matrices and Data Frames 1
+## 2837 76966 Matrices and Data Frames 1
+## 2838 76966 Matrices and Data Frames 1
+## 2839 76966 Matrices and Data Frames 1
+## 2840 76966 Matrices and Data Frames 1
+## 2841 4807 Basic Building Blocks 1
+## 2842 4807 Basic Building Blocks 1
+## 2843 4807 Basic Building Blocks 1
+## 2844 4807 Basic Building Blocks 1
+## 2845 4807 Basic Building Blocks 2
+## 2846 4807 Basic Building Blocks 1
+## 2847 4807 Basic Building Blocks 1
+## 2848 4807 Basic Building Blocks 2
+## 2849 4807 Basic Building Blocks 3
+## 2850 4807 Basic Building Blocks 4
+## 2851 4807 Basic Building Blocks 1
+## 2852 4807 Basic Building Blocks 2
+## 2853 4807 Basic Building Blocks 1
+## 2854 4807 Basic Building Blocks 1
+## 2855 4807 Basic Building Blocks 2
+## 2856 4807 Basic Building Blocks 1
+## 2857 4807 Basic Building Blocks 1
+## 2858 4807 Basic Building Blocks 2
+## 2859 4807 Basic Building Blocks 3
+## 2860 4807 Basic Building Blocks 1
+## 2861 4807 Basic Building Blocks 2
+## 2862 4807 Basic Building Blocks 1
+## 2863 4807 Basic Building Blocks 2
+## 2864 4807 Basic Building Blocks 1
+## 2865 4807 Basic Building Blocks 2
+## 2866 4807 Basic Building Blocks 1
+## 2867 4807 Basic Building Blocks 1
+## 2868 4807 Basic Building Blocks 1
+## 2869 4807 Basic Building Blocks 1
+## 2870 4807 Basic Building Blocks 1
+## 2871 4807 Basic Building Blocks 1
+## 2872 4807 Basic Building Blocks 1
+## 2873 4807 Basic Building Blocks 1
+## 2874 4807 Basic Building Blocks 1
+## 2875 4807 Workspace and Files 1
+## 2876 4807 Workspace and Files 1
+## 2877 4807 Workspace and Files 1
+## 2878 4807 Workspace and Files 1
+## 2879 4807 Workspace and Files 1
+## 2880 4807 Workspace and Files 1
+## 2881 4807 Workspace and Files 1
+## 2882 4807 Workspace and Files 1
+## 2883 4807 Workspace and Files 2
+## 2884 4807 Workspace and Files 1
+## 2885 4807 Workspace and Files 1
+## 2886 4807 Workspace and Files 1
+## 2887 4807 Workspace and Files 1
+## 2888 4807 Workspace and Files 2
+## 2889 4807 Workspace and Files 1
+## 2890 4807 Workspace and Files 2
+## 2891 4807 Workspace and Files 3
+## 2892 4807 Workspace and Files 1
+## 2893 4807 Workspace and Files 1
+## 2894 4807 Workspace and Files 2
+## 2895 4807 Workspace and Files 1
+## 2896 4807 Workspace and Files 1
+## 2897 4807 Workspace and Files 2
+## 2898 4807 Workspace and Files 1
+## 2899 4807 Workspace and Files 1
+## 2900 4807 Workspace and Files 1
+## 2901 4807 Workspace and Files 2
+## 2902 4807 Workspace and Files 1
+## 2903 4807 Workspace and Files 1
+## 2904 4807 Workspace and Files 1
+## 2905 4807 Workspace and Files 1
+## 2906 4807 Vectors 1
+## 2907 4807 Vectors 1
+## 2908 4807 Vectors 2
+## 2909 4807 Vectors 1
+## 2910 4807 Vectors 1
+## 2911 4807 Vectors 1
+## 2912 4807 Vectors 1
+## 2913 4807 Vectors 2
+## 2914 4807 Vectors 3
+## 2915 4807 Vectors 1
+## 2916 4807 Vectors 2
+## 2917 4807 Vectors 1
+## 2918 4807 Vectors 1
+## 2919 4807 Vectors 1
+## 2920 4807 Vectors 1
+## 2921 4807 Vectors 2
+## 2922 4807 Vectors 1
+## 2923 4807 Vectors 1
+## 2924 4807 Vectors 1
+## 2925 4807 Vectors 1
+## 2926 4807 Vectors 2
+## 2927 4807 Vectors 1
+## 2928 4807 Vectors 2
+## 2929 4807 Vectors 1
+## 2930 4807 Vectors 1
+## 2931 4807 Vectors 1
+## 2932 4807 Vectors 1
+## 2933 4807 Matrices and Data Frames 2
+## 2934 4807 Matrices and Data Frames 1
+## 2935 4807 Matrices and Data Frames 1
+## 2936 4807 Matrices and Data Frames 2
+## 2937 4807 Matrices and Data Frames 1
+## 2938 4807 Matrices and Data Frames 1
+## 2939 4807 Matrices and Data Frames 1
+## 2940 4807 Matrices and Data Frames 1
+## 2941 4807 Dates and Times 1
+## 2942 4807 Dates and Times 1
+## 2943 4807 Dates and Times 1
+## 2944 4807 Dates and Times 2
+## 2945 4807 Dates and Times 1
+## 2946 4807 Dates and Times 1
+## 2947 4807 Dates and Times 2
+## 2948 4807 Dates and Times 1
+## 2949 4807 Dates and Times 1
+## 2950 4807 Dates and Times 1
+## 2951 4807 Dates and Times 1
+## 2952 4807 Dates and Times 1
+## 2953 4807 Dates and Times 1
+## 2954 4807 Dates and Times 1
+## 2955 4807 Dates and Times 1
+## 2956 4807 Missing Values 1
+## 2957 4807 Missing Values 2
+## 2958 4807 Missing Values 1
+## 2959 4807 Missing Values 1
+## 2960 4807 Missing Values 1
+## 2961 4807 Missing Values 1
+## 2962 4807 Missing Values 1
+## 2963 4807 Missing Values 1
+## 2964 4807 Missing Values 1
+## 2965 4807 Missing Values 1
+## 2966 4807 Missing Values 2
+## 2967 4807 Missing Values 1
+## 2968 4807 Missing Values 1
+## 2969 4807 Missing Values 1
+## 2970 4807 Missing Values 1
+## 2971 4807 Missing Values 1
+## 2972 4807 Missing Values 1
+## 2973 4807 Subsetting Vectors 1
+## 2974 4807 Subsetting Vectors 1
+## 2975 4807 Subsetting Vectors 1
+## 2976 4807 Subsetting Vectors 1
+## 2977 4807 Subsetting Vectors 1
+## 2978 4807 Subsetting Vectors 1
+## 2979 4807 Subsetting Vectors 1
+## 2980 4807 Subsetting Vectors 2
+## 2981 4807 Subsetting Vectors 1
+## 2982 4807 Subsetting Vectors 1
+## 2983 4807 Subsetting Vectors 1
+## 2984 4807 Subsetting Vectors 1
+## 2985 4807 Subsetting Vectors 2
+## 2986 4807 Subsetting Vectors 1
+## 2987 4807 Subsetting Vectors 1
+## 2988 4807 Subsetting Vectors 1
+## 2989 4807 Subsetting Vectors 1
+## 2990 4807 Subsetting Vectors 1
+## 2991 4807 Subsetting Vectors 1
+## 2992 4807 Subsetting Vectors 1
+## 2993 4807 Subsetting Vectors 1
+## 2994 4807 Subsetting Vectors 2
+## 2995 4807 Subsetting Vectors 1
+## 2996 4807 Subsetting Vectors 1
+## 2997 4807 Subsetting Vectors 1
+## 2998 4807 Subsetting Vectors 2
+## 2999 4807 Subsetting Vectors 1
+## 3000 4807 Subsetting Vectors 1
+## 3001 4807 Subsetting Vectors 1
+## 3002 4807 Subsetting Vectors 1
+## 3003 4807 Subsetting Vectors 1
+## 3004 4807 Logic 1
+## 3005 4807 Logic 1
+## 3006 4807 Logic 1
+## 3007 4807 Logic 1
+## 3008 4807 Logic 1
+## 3009 4807 Logic 1
+## 3010 4807 Logic 1
+## 3011 4807 Logic 1
+## 3012 4807 Logic 1
+## 3013 4807 Logic 2
+## 3014 4807 Logic 3
+## 3015 4807 Logic 4
+## 3016 4807 Logic 1
+## 3017 4807 Logic 2
+## 3018 4807 Logic 3
+## 3019 4807 Logic 1
+## 3020 4807 Logic 2
+## 3021 4807 Logic 1
+## 3022 4807 Logic 1
+## 3023 4807 Logic 1
+## 3024 4807 Logic 1
+## 3025 4807 Logic 1
+## 3026 4807 Logic 1
+## 3027 4807 Logic 1
+## 3028 4807 Logic 2
+## 3029 4807 Logic 1
+## 3030 4807 Logic 2
+## 3031 4807 Logic 1
+## 3032 4807 Logic 1
+## 3033 4807 Logic 2
+## 3034 4807 Logic 3
+## 3035 4807 Logic 1
+## 3036 4807 Logic 1
+## 3037 4807 Logic 1
+## 3038 4807 Logic 1
+## 3039 4807 Logic 2
+## 3040 4807 Logic 3
+## 3041 4807 Logic 4
+## 3042 4807 Logic 1
+## 3043 4807 Logic 1
+## 3044 4807 Logic 1
+## 3045 4807 Logic 1
+## 3046 4807 Logic 1
+## 3047 4807 Logic 1
+## 3048 4807 Logic 2
+## 3049 4807 Logic 1
+## 3050 4807 Logic 2
+## 3051 4807 Logic 3
+## 3052 4807 Logic 4
+## 3053 4807 Logic 5
+## 3054 4807 Logic 6
+## 3055 4807 Logic 7
+## 3056 4807 Logic 8
+## 3057 4807 Logic 9
+## 3058 4807 Logic 1
+## 3059 4807 Logic 1
+## 3060 4807 Logic 1
+## 3061 4807 Logic 1
+## 3062 4807 Matrices and Data Frames 4
+## 3063 4807 Matrices and Data Frames 1
+## 3064 4807 Dates and Times 1
+## 3065 4807 Dates and Times 1
+## 3066 4807 Dates and Times 1
+## 3067 4807 Dates and Times 1
+## 3068 4807 Dates and Times 1
+## 3069 4807 Dates and Times 2
+## 3070 4807 Dates and Times 1
+## 3071 4807 Dates and Times 1
+## 3072 4807 Matrices and Data Frames 1
+## 3073 4807 Matrices and Data Frames 2
+## 3074 4807 Matrices and Data Frames 3
+## 3075 4807 Dates and Times 5
+## 3076 4807 Dates and Times 1
+## 3077 4807 Dates and Times 2
+## 3078 4807 Dates and Times 1
+## 3079 4807 Dates and Times 1
+## 3080 4807 Dates and Times 1
+## 3081 4807 Dates and Times 1
+## 3082 4807 Dates and Times 1
+## 3083 4807 Dates and Times 1
+## 3084 4807 Dates and Times 1
+## 3085 4807 Dates and Times 2
+## 3086 4807 Dates and Times 3
+## 3087 4807 Dates and Times 4
+## 3088 4807 Matrices and Data Frames 2
+## 3089 4807 Matrices and Data Frames 1
+## 3090 4807 Matrices and Data Frames 2
+## 3091 4807 Matrices and Data Frames 1
+## 3092 4807 Matrices and Data Frames 1
+## 3093 4807 Matrices and Data Frames 1
+## 3094 4807 Matrices and Data Frames 1
+## 3095 4807 Matrices and Data Frames 1
+## 3096 4807 Matrices and Data Frames 1
+## 3097 4807 Matrices and Data Frames 1
+## 3098 4807 Dates and Times 1
+## 3099 4807 Matrices and Data Frames 2
+## 3100 4807 Matrices and Data Frames 1
+## 3101 4807 Matrices and Data Frames 1
+## 3102 4807 Matrices and Data Frames 1
+## 3103 4807 Matrices and Data Frames 1
+## 3104 4807 Matrices and Data Frames 1
+## 3105 4807 Matrices and Data Frames 1
+## 3106 4807 Matrices and Data Frames 1
+## 3107 4807 Matrices and Data Frames 1
+## 3108 6487 Basic Building Blocks 1
+## 3109 6487 Basic Building Blocks 1
+## 3110 6487 Basic Building Blocks 1
+## 3111 6487 Basic Building Blocks 1
+## 3112 6487 Basic Building Blocks 1
+## 3113 6487 Basic Building Blocks 1
+## 3114 6487 Basic Building Blocks 1
+## 3115 6487 Basic Building Blocks 1
+## 3116 6487 Basic Building Blocks 1
+## 3117 6487 Basic Building Blocks 1
+## 3118 6487 Basic Building Blocks 1
+## 3119 6487 Basic Building Blocks 1
+## 3120 6487 Basic Building Blocks 2
+## 3121 6487 Basic Building Blocks 1
+## 3122 6487 Basic Building Blocks 1
+## 3123 6487 Basic Building Blocks 1
+## 3124 6487 Basic Building Blocks 1
+## 3125 6487 Basic Building Blocks 1
+## 3126 6487 Basic Building Blocks 1
+## 3127 6487 Basic Building Blocks 1
+## 3128 6487 Basic Building Blocks 1
+## 3129 6487 Basic Building Blocks 1
+## 3130 6487 Basic Building Blocks 1
+## 3131 6487 Basic Building Blocks 1
+## 3132 8766 Workspace and Files 1
+## 3133 8766 Workspace and Files 1
+## 3134 8766 Workspace and Files 1
+## 3135 8766 Workspace and Files 1
+## 3136 8766 Workspace and Files 1
+## 3137 8766 Workspace and Files 1
+## 3138 8766 Workspace and Files 1
+## 3139 8766 Workspace and Files 2
+## 3140 8766 Workspace and Files 1
+## 3141 8766 Workspace and Files 1
+## 3142 8766 Workspace and Files 1
+## 3143 8766 Workspace and Files 2
+## 3144 8766 Workspace and Files 1
+## 3145 8766 Workspace and Files 1
+## 3146 8766 Workspace and Files 1
+## 3147 8766 Workspace and Files 1
+## 3148 8766 Workspace and Files 1
+## 3149 8766 Workspace and Files 1
+## 3150 8766 Workspace and Files 2
+## 3151 8766 Workspace and Files 2
+## 3152 8766 Workspace and Files 1
+## 3153 8766 Workspace and Files 1
+## 3154 8766 Workspace and Files 2
+## 3155 8766 Workspace and Files 3
+## 3156 8766 Workspace and Files 1
+## 3157 8766 Workspace and Files 1
+## 3158 8766 Workspace and Files 1
+## 3159 8766 Workspace and Files 1
+## 3160 8766 Vectors 1
+## 3161 8766 Workspace and Files 1
+## 3162 8766 Workspace and Files 2
+## 3163 8766 Workspace and Files 1
+## 3164 8766 Vectors 1
+## 3165 8766 Vectors 1
+## 3166 8766 Vectors 1
+## 3167 8766 Vectors 1
+## 3168 8766 Vectors 1
+## 3169 8766 Vectors 1
+## 3170 8766 Vectors 1
+## 3171 8766 Vectors 1
+## 3172 8766 Vectors 2
+## 3173 8766 Vectors 1
+## 3174 8766 Vectors 2
+## 3175 8766 Vectors 1
+## 3176 8766 Vectors 1
+## 3177 8766 Vectors 2
+## 3178 8766 Vectors 1
+## 3179 8766 Vectors 1
+## 3180 8766 Vectors 1
+## 3181 8766 Vectors 1
+## 3182 8766 Vectors 1
+## 3183 8766 Vectors 1
+## 3184 8766 Missing Values 1
+## 3185 8766 Missing Values 1
+## 3186 8766 Missing Values 1
+## 3187 8766 Missing Values 1
+## 3188 8766 Missing Values 1
+## 3189 8766 Missing Values 1
+## 3190 8766 Missing Values 1
+## 3191 8766 Missing Values 1
+## 3192 8766 Missing Values 1
+## 3193 8766 Missing Values 1
+## 3194 8766 Missing Values 1
+## 3195 8766 Missing Values 1
+## 3196 8766 Missing Values 2
+## 3197 8766 Missing Values 3
+## 3198 8766 Missing Values 1
+## 3199 8766 Missing Values 1
+## 3200 8766 Missing Values 1
+## 3201 8766 Vectors 2
+## 3202 8766 Vectors 1
+## 3203 8766 Vectors 1
+## 3204 27286 NA
+## 3205 70464 Basic Building Blocks 1
+## 3206 70464 Basic Building Blocks 1
+## 3207 70464 Basic Building Blocks 1
+## 3208 70464 Basic Building Blocks 1
+## 3209 70464 Basic Building Blocks 1
+## 3210 70464 Basic Building Blocks 1
+## 3211 70464 Basic Building Blocks 1
+## 3212 70464 Basic Building Blocks 1
+## 3213 70464 Logic 3
+## 3214 70464 Logic 4
+## 3215 70464 Logic 1
+## 3216 70464 Logic 1
+## 3217 70464 Logic 1
+## 3218 70464 Logic 1
+## 3219 70464 Logic 1
+## 3220 70464 Logic 1
+## 3221 70464 Logic 1
+## 3222 70464 Logic 1
+## 3223 70464 Logic 1
+## 3224 70464 Basic Building Blocks 1
+## 3225 70464 Logic 2
+## 3226 70464 Dates and Times 1
+## 3227 70464 Dates and Times 1
+## 3228 70464 Dates and Times 1
+## 3229 70464 Dates and Times 1
+## 3230 70464 Dates and Times 1
+## 3231 70464 Dates and Times 1
+## 3232 70464 Dates and Times 1
+## 3233 70464 Dates and Times 1
+## 3234 70464 Basic Building Blocks 1
+## 3235 70464 Basic Building Blocks 1
+## 3236 70464 Basic Building Blocks 2
+## 3237 70464 Logic 1
+## 3238 70464 Logic 1
+## 3239 70464 Dates and Times 7
+## 3240 70464 Dates and Times 8
+## 3241 70464 Dates and Times 9
+## 3242 70464 Dates and Times 10
+## 3243 70464 Dates and Times 1
+## 3244 70464 Dates and Times 1
+## 3245 70464 Dates and Times 1
+## 3246 70464 Dates and Times 1
+## 3247 70464 Dates and Times 1
+## 3248 70464 Dates and Times 1
+## 3249 70464 Dates and Times 1
+## 3250 70464 Basic Building Blocks 1
+## 3251 70464 Basic Building Blocks 1
+## 3252 70464 Functions 1
+## 3253 70464 Functions 1
+## 3254 70464 Functions 1
+## 3255 70464 Functions 1
+## 3256 70464 Functions 1
+## 3257 70464 Functions 1
+## 3258 70464 Functions 1
+## 3259 70464 Functions 1
+## 3260 70464 Functions 1
+## 3261 70464 Functions 1
+## 3262 70464 Functions 1
+## 3263 70464 Dates and Times 1
+## 3264 70464 Dates and Times 1
+## 3265 70464 Functions 1
+## 3266 70464 Basic Building Blocks 1
+## 3267 70464 Basic Building Blocks 1
+## 3268 70464 Basic Building Blocks 1
+## 3269 70464 Basic Building Blocks 1
+## 3270 70464 Basic Building Blocks 1
+## 3271 70464 Basic Building Blocks 1
+## 3272 70464 Basic Building Blocks 1
+## 3273 70464 Basic Building Blocks 1
+## 3274 70464 Basic Building Blocks 1
+## 3275 70464 Basic Building Blocks 1
+## 3276 70464 Functions 1
+## 3277 70464 Functions 1
+## 3278 70464 Dates and Times 6
+## 3279 70464 Subsetting Vectors 1
+## 3280 70464 Subsetting Vectors 1
+## 3281 70464 Subsetting Vectors 1
+## 3282 70464 Subsetting Vectors 1
+## 3283 70464 Subsetting Vectors 1
+## 3284 70464 Subsetting Vectors 2
+## 3285 70464 Subsetting Vectors 3
+## 3286 70464 Subsetting Vectors 1
+## 3287 70464 Subsetting Vectors 1
+## 3288 70464 Subsetting Vectors 1
+## 3289 70464 Subsetting Vectors 1
+## 3290 70464 Subsetting Vectors 1
+## 3291 70464 Logic 1
+## 3292 70464 Logic 1
+## 3293 70464 Logic 1
+## 3294 70464 Logic 1
+## 3295 70464 Logic 1
+## 3296 70464 Logic 1
+## 3297 70464 Logic 1
+## 3298 70464 Logic 1
+## 3299 70464 Logic 1
+## 3300 70464 Logic 2
+## 3301 70464 Logic 1
+## 3302 70464 Logic 1
+## 3303 70464 Logic 1
+## 3304 70464 Logic 1
+## 3305 70464 Logic 1
+## 3306 70464 Logic 1
+## 3307 70464 Logic 2
+## 3308 70464 Logic 1
+## 3309 70464 Logic 1
+## 3310 70464 Logic 1
+## 3311 70464 Logic 1
+## 3312 70464 Logic 1
+## 3313 70464 Logic 1
+## 3314 70464 Logic 1
+## 3315 70464 Logic 1
+## 3316 70464 Logic 2
+## 3317 70464 Logic 3
+## 3318 70464 Logic 1
+## 3319 70464 Logic 1
+## 3320 70464 Vectors 1
+## 3321 70464 Vectors 1
+## 3322 70464 Vectors 2
+## 3323 70464 Vectors 1
+## 3324 70464 Vectors 1
+## 3325 70464 Vectors 1
+## 3326 70464 Vectors 1
+## 3327 70464 Vectors 1
+## 3328 70464 Vectors 1
+## 3329 70464 Vectors 1
+## 3330 70464 Vectors 1
+## 3331 70464 Vectors 1
+## 3332 70464 Vectors 1
+## 3333 70464 Vectors 1
+## 3334 70464 Vectors 1
+## 3335 70464 Vectors 1
+## 3336 70464 Vectors 2
+## 3337 70464 Vectors 1
+## 3338 70464 Vectors 1
+## 3339 70464 Vectors 1
+## 3340 70464 Vectors 1
+## 3341 70464 Vectors 1
+## 3342 70464 Dates and Times 1
+## 3343 70464 Dates and Times 1
+## 3344 70464 Dates and Times 1
+## 3345 70464 Dates and Times 1
+## 3346 70464 Dates and Times 2
+## 3347 70464 Dates and Times 1
+## 3348 70464 Dates and Times 1
+## 3349 70464 Dates and Times 1
+## 3350 70464 Dates and Times 1
+## 3351 70464 Dates and Times 1
+## 3352 70464 Dates and Times 1
+## 3353 70464 Dates and Times 1
+## 3354 70464 Dates and Times 1
+## 3355 70464 Dates and Times 2
+## 3356 70464 Dates and Times 3
+## 3357 70464 Dates and Times 4
+## 3358 70464 Dates and Times 5
+## 3359 70464 Workspace and Files 1
+## 3360 70464 Workspace and Files 2
+## 3361 70464 Workspace and Files 1
+## 3362 70464 Workspace and Files 1
+## 3363 70464 Workspace and Files 1
+## 3364 70464 Workspace and Files 1
+## 3365 70464 Workspace and Files 1
+## 3366 70464 Workspace and Files 2
+## 3367 70464 Workspace and Files 1
+## 3368 70464 Workspace and Files 1
+## 3369 70464 Workspace and Files 1
+## 3370 70464 Workspace and Files 1
+## 3371 70464 Workspace and Files 1
+## 3372 70464 Workspace and Files 1
+## 3373 70464 Workspace and Files 1
+## 3374 70464 Workspace and Files 1
+## 3375 70464 Workspace and Files 2
+## 3376 70464 Workspace and Files 3
+## 3377 70464 Workspace and Files 1
+## 3378 70464 Workspace and Files 2
+## 3379 70464 Workspace and Files 1
+## 3380 70464 Workspace and Files 1
+## 3381 70464 Workspace and Files 1
+## 3382 70464 Workspace and Files 1
+## 3383 70464 Workspace and Files 1
+## 3384 70464 Workspace and Files 1
+## 3385 70464 Workspace and Files 1
+## 3386 70464 Workspace and Files 1
+## 3387 70464 Functions 2
+## 3388 70464 Functions 3
+## 3389 70464 Functions 1
+## 3390 70464 Functions 1
+## 3391 70464 Functions 1
+## 3392 70464 Functions 1
+## 3393 70464 Functions 2
+## 3394 70464 Functions 1
+## 3395 70464 Functions 1
+## 3396 70464 Functions 1
+## 3397 70464 Functions 1
+## 3398 70464 Functions 1
+## 3399 70464 Functions 1
+## 3400 70464 Functions 1
+## 3401 70464 Functions 1
+## 3402 70464 Functions 2
+## 3403 70464 Functions 3
+## 3404 70464 Functions 1
+## 3405 70464 Functions 1
+## 3406 70464 Functions 1
+## 3407 70464 Missing Values 1
+## 3408 70464 Missing Values 2
+## 3409 70464 Missing Values 1
+## 3410 70464 Missing Values 1
+## 3411 70464 Missing Values 1
+## 3412 70464 Missing Values 1
+## 3413 70464 Missing Values 1
+## 3414 70464 Missing Values 1
+## 3415 70464 Missing Values 2
+## 3416 70464 Missing Values 3
+## 3417 70464 Missing Values 1
+## 3418 70464 Missing Values 1
+## 3419 70464 Missing Values 1
+## 3420 70464 Subsetting Vectors 1
+## 3421 70464 Subsetting Vectors 1
+## 3422 70464 Subsetting Vectors 1
+## 3423 70464 Subsetting Vectors 2
+## 3424 70464 Subsetting Vectors 3
+## 3425 70464 Subsetting Vectors 4
+## 3426 70464 Subsetting Vectors 1
+## 3427 70464 Subsetting Vectors 1
+## 3428 70464 Subsetting Vectors 2
+## 3429 70464 Subsetting Vectors 1
+## 3430 70464 Subsetting Vectors 1
+## 3431 70464 Subsetting Vectors 1
+## 3432 70464 Subsetting Vectors 1
+## 3433 70464 Subsetting Vectors 1
+## 3434 70464 Subsetting Vectors 1
+## 3435 70464 Subsetting Vectors 2
+## 3436 70464 Subsetting Vectors 1
+## 3437 70464 Subsetting Vectors 1
+## 3438 70464 Subsetting Vectors 1
+## 3439 70464 Workspace and Files 1
+## 3440 70464 Missing Values 1
+## 3441 70464 Missing Values 2
+## 3442 70464 Missing Values 1
+## 3443 70464 Missing Values 2
+## 3444 70464 Missing Values 1
+## 3445 70464 Missing Values 1
+## 3446 70464 Missing Values 1
+## 3447 70464 Subsetting Vectors 1
+## 3448 70464 Subsetting Vectors 1
+## 3449 70464 Subsetting Vectors 1
+## 3450 11801 Dates and Times 2
+## 3451 11801 Tidying Data with tidyr 1
+## 3452 11801 Dates and Times 1
+## 3453 11801 Dates and Times 1
+## 3454 11801 Dates and Times 1
+## 3455 11801 Dates and Times 1
+## 3456 11801 Dates and Times 1
+## 3457 11801 Tidying Data with tidyr 1
+## 3458 11801 Grouping and Chaining with dplyr 1
+## 3459 11801 Tidying Data with tidyr 1
+## 3460 11801 Tidying Data with tidyr 5
+## 3461 11801 Tidying Data with tidyr 1
+## 3462 11801 Dates and Times 1
+## 3463 11801 Tidying Data with tid NA
+## 3464 11801 Basic Building Blocks 1
+## 3465 11801 Dates and Times 1
+## 3466 11801 Logic 2
+## 3467 11801 Missing Values 1
+## 3468 11801 NA
+## 3469 11801 Missing Values 1
+## 3470 11801 Grouping and C NA
+## 3471 11801 Basic Building Blocks 1
+## 3472 11801 Grouping and Chaining with dplyr 1
+## 3473 11801 Dates and Times 1
+## 3474 11801 Tidying Data with tidyr 1
+## 3475 11801 Subsetting Vectors 1
+## 3476 11801 Dates and Times 1
+## 3477 11801 Workspace and Files 1
+## 3478 11801 Dates and Times 1
+## 3479 11801 Dates and Times 1
+## 3480 11801 Tidying Data with tidyr 1
+## 3481 11801 Grouping and Chaining with dplyr 1
+## 3482 11801 Dates and Times 1
+## 3483 11801 Dates and Times 1
+## 3484 11801 Vectors 1
+## 3485 11801 Subsetting Vectors 1
+## 3486 11801 Tidying Data with tidyr 1
+## 3487 11801 Grouping and Chaining with dplyr 1
+## 3488 11801 Logic 1
+## 3489 11801 Grouping and Chaining with dplyr 1
+## 3490 11801 Tidying Data with tidyr 1
+## 3491 11801 Missing Values 1
+## 3492 11801 Matrices and Data Frames 1
+## 3493 11801 Grouping and Chaining with dplyr 1
+## 3494 11801 Tidying Data with tidyr 2
+## 3495 11801 Dates and Times 1
+## 3496 11801 Grouping and Chaining with dplyr 1
+## 3497 11801 Dates and Times 1
+## 3498 11801 Tidying Data with tidyr 4
+## 3499 11801 Grouping and Chaining with dplyr 1
+## 3500 11801 Subsetting Vectors 1
+## 3501 11801 Manipulating Data with dplyr 1
+## 3502 11801 Lo NA
+## 3503 11801 Workspace and Files 1
+## 3504 11801 Grouping and Chaining with dplyr 1
+## 3505 11801 Grouping and Chaining with dplyr 1
+## 3506 11801 Logic 1
+## 3507 11801 Logic 1
+## 3508 11801 Logic 1
+## 3509 11801 Logic 1
+## 3510 11801 Vectors 1
+## 3511 11801 Vectors 1
+## 3512 11801 Subsetting Vectors 1
+## 3513 11801 Manipulating Data with dplyr 1
+## 3514 11801 Logic 1
+## 3515 11801 Vectors 1
+## 3516 11801 Vectors 1
+## 3517 11801 Workspace and Files 1
+## 3518 11801 Looking at Data 1
+## 3519 11801 Basic Building Blocks 1
+## 3520 11801 Matrices and Data Frames 2
+## 3521 11801 Tidying Data with tidyr 1
+## 3522 11801 Missing Values 1
+## 3523 11801 Missing Values 1
+## 3524 11801 Tidying Data with tidyr 3
+## 3525 11801 Basic Building Blocks 1
+## 3526 11801 Logic 1
+## 3527 11801 Subsetting Vectors 1
+## 3528 11801 Workspace and Files 1
+## 3529 11801 Workspace and Files 1
+## 3530 11801 Looking at Data 1
+## 3531 11801 Vectors 2
+## 3532 11801 Vectors 1
+## 3533 11801 Vectors 1
+## 3534 11801 Vectors 1
+## 3535 11801 Dates and Times 1
+## 3536 11801 Vectors 1
+## 3537 11801 Subsetting Vectors 1
+## 3538 11801 Grouping and Chaining with dplyr 1
+## 3539 11801 Subsetting Vectors 1
+## 3540 11801 Vectors 1
+## 3541 11801 Manipulating Data with dplyr 1
+## 3542 11801 Manipulating Data with dplyr 1
+## 3543 11801 Vectors 1
+## 3544 11801 Vectors 1
+## 3545 11801 Vectors 1
+## 3546 11801 Vectors 1
+## 3547 11801 Vectors 1
+## 3548 11801 Logic 1
+## 3549 11801 Workspace and Files 1
+## 3550 11801 Logic 1
+## 3551 11801 Subsetting Vectors 1
+## 3552 11801 Vectors 1
+## 3553 11801 Logic 1
+## 3554 11801 Workspace and Files 1
+## 3555 11801 Workspace and Files 1
+## 3556 11801 Missing Values 1
+## 3557 11801 Missing Values 1
+## 3558 11801 Missing Values 1
+## 3559 11801 Looking at Data 1
+## 3560 11801 Basic Building Blocks 1
+## 3561 11801 Missing Values 2
+## 3562 11801 Matrices and Data Frames 1
+## 3563 11801 Matrices and Data Frames 1
+## 3564 11801 Missing Values 1
+## 3565 11801 Subsetting Vectors 1
+## 3566 11801 Basic Building Blocks 1
+## 3567 11801 Basic Building Blocks 1
+## 3568 11801 Basic Building Blocks 1
+## 3569 11801 Looking at Data 1
+## 3570 11801 Looking at Data 1
+## 3571 11801 Logic 1
+## 3572 11801 Logic 1
+## 3573 11801 Subsetting Vectors 1
+## 3574 11801 Subsetting Vectors 1
+## 3575 11801 Grouping and Chaining with dplyr 1
+## 3576 11801 Subsetting Vectors 1
+## 3577 11801 Workspace and Files 1
+## 3578 11801 Workspace and Files 1
+## 3579 11801 Subsetting Vectors 1
+## 3580 11801 Subsetting Vectors 1
+## 3581 11801 Vectors 1
+## 3582 11801 Vectors 1
+## 3583 11801 Logic 1
+## 3584 11801 Missing Values 1
+## 3585 11801 Looking at Data 1
+## 3586 11801 Logic 1
+## 3587 11801 Logic 1
+## 3588 11801 Workspace and Files 1
+## 3589 11801 Missing Values 1
+## 3590 11801 Basic Building Blocks 1
+## 3591 11801 NA
+## 3592 11801 Logic 1
+## 3593 11801 Logic 1
+## 3594 11801 Logic 1
+## 3595 11801 Workspace and Files 1
+## 3596 11801 Looking at Data 1
+## 3597 11801 Looking at Data 1
+## 3598 11801 Looking at Data 1
+## 3599 11801 Matrices and Data Frames 1
+## 3600 11801 Matrices and Data Frames 1
+## 3601 11801 Basic Building Blocks 1
+## 3602 11801 Looking at Data 1
+## 3603 11801 Workspace and Files 1
+## 3604 11801 Matrices and Data Frames 1
+## 3605 11801 Basic Building Blocks 1
+## 3606 11801 Basic Building Blocks 1
+## 3607 11801 Manipulating Data with dplyr 1
+## 3608 11801 Manipulating Data with dplyr 1
+## 3609 11801 Manipulating Data with dplyr 1
+## 3610 11801 Looking at Data 1
+## 3611 11801 Matrices and Data Frames 1
+## 3612 11801 Matrices and Data Frames 1
+## 3613 11801 Matrices and Data Frames 1
+## 3614 11801 Matrices and Data Frames 1
+## 3615 11801 Subsetting Vectors 1
+## 3616 11801 Basic Building Blocks 1
+## 3617 11801 Subsetting Vectors 1
+## 3618 11801 Missing Values 1
+## 3619 11801 Workspace and Files 1
+## 3620 11801 Workspace and Files 1
+## 3621 11801 Looking at Data 1
+## 3622 11801 Subsetti NA
+## 3623 11801 Missing Values 1
+## 3624 11801 Looking at Data 1
+## 3625 11801 Matrices and Data Frames 1
+## 3626 11801 Matrices and Data Frames 2
+## 3627 11801 Basic Building Blocks 1
+## 3628 11801 Matrices and Data Frames 1
+## 3629 11801 Manipulating Data with dplyr 1
+## 3630 11801 Workspace and Files 1
+## 3631 11801 Missing Values 1
+## 3632 11801 Basic Building Blocks 1
+## 3633 11801 Looking at Data 2
+## 3634 11801 Manipulating Data with dplyr 1
+## 3635 11801 Manipulating Data with dplyr 1
+## 3636 11801 Looking at Data 1
+## 3637 11801 Matrices and Data Frames 1
+## 3638 11801 Looking at Data 1
+## 3639 11801 Basic Building Blocks 1
+## 3640 11801 Manipulating Data with dplyr 1
+## 3641 11801 Missing Values 1
+## 3642 11801 Manipulating Data with dplyr 1
+## 3643 11801 Looking at Data 1
+## 3644 11801 Manipulating Data with dplyr 1
+## 3645 75323 Functions 1
+## 3646 75323 Functions 1
+## 3647 75323 Fu NA
+## 3648 75323 Functions 1
+## 3649 75323 Functions 1
+## 3650 75323 Functions 1
+## 3651 75323 Functions 1
+## 3652 75323 Functions 1
+## 3653 75323 Functions 1
+## 3654 75323 Functions 1
+## 3655 75323 Functions 1
+## 3656 75323 Functions 1
+## 3657 75323 Functions 1
+## 3658 75323 Functions 1
+## 3659 75323 Functions 1
+## 3660 75323 Functions 1
+## 3661 75323 Functions 2
+## 3662 75323 Functions 1
+## 3663 75323 Functions 1
+## 3664 27264 Vectors 1
+## 3665 27264 Vectors 1
+## 3666 27264 Vectors 2
+## 3667 27264 Vectors 1
+## 3668 27264 Missing Values 1
+## 3669 27264 Missing Values 1
+## 3670 27264 Missing Values 1
+## 3671 27264 Missing Values 1
+## 3672 27264 Missing Values 1
+## 3673 27264 Vectors 1
+## 3674 27264 Vectors 1
+## 3675 27264 Vectors 1
+## 3676 27264 Vectors 1
+## 3677 27264 Vectors 1
+## 3678 27264 Vectors 1
+## 3679 27264 Missing Values 1
+## 3680 27264 Missing Values 1
+## 3681 27264 Vectors 1
+## 3682 27264 Vectors 1
+## 3683 27264 Vectors 1
+## 3684 27264 Vectors 1
+## 3685 27264 Vectors 1
+## 3686 27264 Missing Values 1
+## 3687 27264 Missing Values 1
+## 3688 27264 Missing Values 1
+## 3689 27264 Missing Values 1
+## 3690 27264 Missing Values 1
+## 3691 27264 Missing Values 1
+## 3692 27264 Subsetting Vectors 1
+## 3693 27264 Subsetting Vectors 1
+## 3694 27264 Subsetting Vectors 1
+## 3695 27264 Subsetting Vectors 1
+## 3696 27264 Subsetting Vectors 1
+## 3697 27264 Subsetting Vectors 1
+## 3698 27264 Subsetting Vectors 1
+## 3699 27264 Logic 1
+## 3700 27264 Logic 1
+## 3701 27264 Logic 1
+## 3702 27264 Logic 1
+## 3703 27264 Logic 1
+## 3704 27264 Logic 1
+## 3705 27264 Logic 1
+## 3706 27264 Logic 1
+## 3707 27264 Logic 1
+## 3708 27264 Missing Values 1
+## 3709 27264 Missing Values 1
+## 3710 27264 Subsetting Vectors 1
+## 3711 27264 Subsetting Vectors 1
+## 3712 27264 Subsetting Vectors 1
+## 3713 27264 Subsetting Vectors 2
+## 3714 27264 Subsetting Vectors 1
+## 3715 27264 Subsetting Vectors 1
+## 3716 27264 Subsetting Vectors 1
+## 3717 27264 Subsetting Vectors 1
+## 3718 27264 Subsetting Vectors 2
+## 3719 27264 Subsetting Vectors 1
+## 3720 27264 Subsetting Vectors 1
+## 3721 27264 Subsetting Vectors 1
+## 3722 27264 Subsetting Vectors 1
+## 3723 27264 Subsetting Vectors 1
+## 3724 27264 Subsetting Vectors 1
+## 3725 27264 Subsetting Vectors 1
+## 3726 27264 Subsetting Vectors 1
+## 3727 27264 Subsetting Vectors 1
+## 3728 27264 Subsetting Vectors 1
+## 3729 27264 Subsetting Vectors 1
+## 3730 27264 Subsetting Vectors 1
+## 3731 27264 Subsetting Vectors 1
+## 3732 27264 Logic 1
+## 3733 27264 Logic 1
+## 3734 27264 Logic 1
+## 3735 27264 Dates and Times 1
+## 3736 27264 Dates and Times 1
+## 3737 27264 Dates and Times 1
+## 3738 27264 Dates and Times 1
+## 3739 27264 Dates and Times 1
+## 3740 27264 Dates and Times 1
+## 3741 27264 Dates and Times 1
+## 3742 27264 Dates and Times 1
+## 3743 27264 Dates and Times 1
+## 3744 27264 Dates and Times 1
+## 3745 27264 Dates and Times 1
+## 3746 27264 Dates and Times 1
+## 3747 27264 Dates and Times 1
+## 3748 27264 Dates and Times 1
+## 3749 27264 Dates and Times 1
+## 3750 27264 Dates and Times 1
+## 3751 27264 Dates and Times 1
+## 3752 27264 Dates and Times 1
+## 3753 27264 Dates and Times 1
+## 3754 27264 Dates and Times 1
+## 3755 27264 Dates and Times 1
+## 3756 27264 Dates and Times 1
+## 3757 27264 Dates and Times 1
+## 3758 27264 Dates and Times 1
+## 3759 27264 Dates and Times 1
+## 3760 27264 Dates and Times 1
+## 3761 27264 Dates and Times 1
+## 3762 27264 Dates and Times 1
+## 3763 27264 Dates and Times 1
+## 3764 27264 Functions 1
+## 3765 27264 Functions 1
+## 3766 27264 Functions 2
+## 3767 27264 Functions 1
+## 3768 27264 Functions 1
+## 3769 27264 Functions 1
+## 3770 27264 Functions 1
+## 3771 27264 Functions 1
+## 3772 27264 Functions 1
+## 3773 27264 Functions 2
+## 3774 27264 Functions 3
+## 3775 27264 Functions 1
+## 3776 27264 Functions 1
+## 3777 27264 Functions 1
+## 3778 27264 Functions 1
+## 3779 27264 Functions 1
+## 3780 27264 Functions 1
+## 3781 27264 Functions 1
+## 3782 27264 Functions 1
+## 3783 27264 Functions 1
+## 3784 27264 Functions 2
+## 3785 27264 Functions 1
+## 3786 27264 Functions 2
+## 3787 27264 Functions 1
+## 3788 27264 Functions 1
+## 3789 27264 Functions 1
+## 3790 27264 Functions 1
+## 3791 27264 Functions 1
+## 3792 27264 Functions 2
+## 3793 27264 Functions 3
+## 3794 27264 Functions 4
+## 3795 27264 Functions 1
+## 3796 27264 Functions 1
+## 3797 27264 Functions 2
+## 3798 27264 Functions 3
+## 3799 27264 Functions 1
+## 3800 27264 Functions 1
+## 3801 27264 Functions 1
+## 3802 27264 Functions 1
+## 3803 27264 Matrices and Data Frames 1
+## 3804 27264 Matrices and Data Frames 2
+## 3805 27264 Matrices and Data Frames 1
+## 3806 27264 Matrices and Data Frames 1
+## 3807 27264 Matrices and Data Frames 1
+## 3808 27264 Matrices and Data Frames 1
+## 3809 27264 Matrices and Data Frames 1
+## 3810 27264 Matrices and Data Frames 1
+## 3811 27264 Matrices and Data Frames 1
+## 3812 27264 Matrices and Data Frames 1
+## 3813 27264 Matrices and Data Frames 1
+## 3814 27264 Matrices and Data Frames 1
+## 3815 27264 Matrices and Data Frames 1
+## 3816 27264 Matrices and Data Frames 1
+## 3817 27264 Matrices and Data Frames 1
+## 3818 27264 Matrices and Data Frames 1
+## 3819 27264 Matrices and Data Frames 1
+## 3820 27264 Matrices and Data Frames 1
+## 3821 27264 Matrices and Data Frames 1
+## 3822 27264 Matrices and Data Frames 1
+## 3823 27264 Matrices and Data Frames 1
+## 3824 27264 Matrices and Data Frames 2
+## 3825 27264 Matrices and Data Frames 1
+## 3826 27264 Matrices and Data Frames 1
+## 3827 27264 Matrices and Data Frames 1
+## 3828 27264 Matrices and Data Frames 1
+## 3829 27264 Logic 1
+## 3830 27264 Logic 1
+## 3831 27264 Logic 1
+## 3832 27264 Logic 1
+## 3833 27264 Logic 1
+## 3834 27264 Logic 1
+## 3835 27264 Logic 1
+## 3836 27264 Logic 1
+## 3837 27264 Logic 1
+## 3838 27264 Logic 1
+## 3839 27264 Logic 1
+## 3840 27264 Logic 1
+## 3841 27264 Logic 1
+## 3842 27264 Logic 1
+## 3843 27264 Logic 1
+## 3844 27264 Logic 1
+## 3845 27264 Logic 1
+## 3846 27264 Logic 1
+## 3847 27264 Logic 1
+## 3848 27264 Logic 1
+## 3849 27264 Logic 1
+## 3850 27264 Logic 1
+## 3851 27264 Logic 1
+## 3852 27264 Logic 1
+## 3853 27264 Vectors 1
+## 3854 27264 Vectors 2
+## 3855 27264 Vectors 1
+## 3856 27264 Vectors 1
+## 3857 27264 Vectors 2
+## 3858 27264 Vectors 1
+## 3859 27264 Vectors 1
+## 3860 27264 Vectors 1
+## 3861 27264 Plotting_Systems 1
+## 3862 27264 Plotting_Systems 1
+## 3863 27264 Plotting_Systems 2
+## 3864 27264 Plotting_Systems 1
+## 3865 27264 Plotting_Systems 1
+## 3866 27264 Plotting_Systems 1
+## 3867 27264 Plotting_Systems 1
+## 3868 27264 Plotting_Systems 1
+## 3869 27264 Plotting_Systems 2
+## 3870 27264 Plotting_Systems 1
+## 3871 27264 Plotting_Systems 1
+## 3872 27264 Plotting_Systems 1
+## 3873 27264 Plotting_Systems 1
+## 3874 27264 Plotting_Systems 1
+## 3875 27264 Plotting_Systems 1
+## 3876 27264 Plotting_Systems 1
+## 3877 27264 Plotting_Systems 1
+## 3878 27264 Plotting_Systems 1
+## 3879 27264 Plotting_Systems 1
+## 3880 27264 Plotting_Systems 1
+## 3881 27264 Plotting_Systems 1
+## 3882 27264 Plotting_Systems 1
+## 3883 27264 Plotting_Systems 1
+## 3884 27264 Plotting_Systems 1
+## 3885 27264 Manipulating Data with dplyr 1
+## 3886 27264 Manipulating Data with dplyr 1
+## 3887 27264 Manipulating Data with dplyr 1
+## 3888 27264 Manipulating Data with dplyr 1
+## 3889 27264 Manipulating Data with dplyr 1
+## 3890 27264 Manipulating Data with dplyr 1
+## 3891 27264 Manipulating Data with dplyr 2
+## 3892 27264 Manipulating Data with dplyr 3
+## 3893 27264 Manipulating Data with dplyr 1
+## 3894 27264 Manipulating Data with dplyr 1
+## 3895 27264 Manipulating Data with dplyr 1
+## 3896 27264 Manipulating Data with dplyr 1
+## 3897 27264 Manipulating Data with dplyr 1
+## 3898 27264 Manipulating Data with dplyr 1
+## 3899 27264 Manipulating Data with dplyr 1
+## 3900 27264 Manipulating Data with dplyr 1
+## 3901 27264 Manipulating Data with dplyr 1
+## 3902 27264 Manipulating Data with dplyr 1
+## 3903 27264 Manipulating Data with dplyr 1
+## 3904 27264 Manipulating Data with dplyr 1
+## 3905 27264 Manipulating Data with dplyr 1
+## 3906 27264 Manipulating Data with dplyr 1
+## 3907 27264 Manipulating Data with dplyr 1
+## 3908 27264 Manipulating Data with dplyr 1
+## 3909 27264 Manipulating Data with dplyr 1
+## 3910 27264 Manipulating Data with dplyr 1
+## 3911 27264 Manipulating Data with dplyr 2
+## 3912 27264 Manipulating Data with dplyr 1
+## 3913 27264 Manipulating Data with dplyr 1
+## 3914 27264 Manipulating Data with dplyr 1
+## 3915 27264 Manipulating Data with dplyr 1
+## 3916 27264 Manipulating Data with dplyr 1
+## 3917 27264 Manipulating Data with dplyr 1
+## 3918 27264 Manipulating Data with dplyr 1
+## 3919 27264 Manipulating Data with dplyr 1
+## 3920 27264 Manipulating Data with dplyr 1
+## 3921 27264 Manipulating Data with dplyr 1
+## 3922 27264 Manipulating Data with dplyr 1
+## 3923 27264 Manipulating Data with dplyr 1
+## 3924 27264 Manipulating Data with dplyr 1
+## 3925 27264 Manipulating Data with dplyr 1
+## 3926 27264 Manipulating Data with dplyr 1
+## 3927 27264 Manipulating Data with dplyr 1
+## 3928 27264 Manipulating Data with dplyr 1
+## 3929 27264 Base_Plotting_System 1
+## 3930 27264 Base_Plotting_System 1
+## 3931 27264 Base_Plotting_System 1
+## 3932 27264 Base_Plotting_System 1
+## 3933 27264 Base_Plotting_System 2
+## 3934 27264 Base_Plotting_System 3
+## 3935 27264 Base_Plotting_System 1
+## 3936 27264 Base_Plotting_System 1
+## 3937 27264 Base_Plotting_System 1
+## 3938 27264 Base_Plotting_System 1
+## 3939 27264 Base_Plotting_System 1
+## 3940 27264 Grouping and Chaining with dplyr 2
+## 3941 27264 Grouping and Chaining with dplyr 1
+## 3942 27264 Grouping and Chaining with dplyr 1
+## 3943 27264 Grouping and Chaining with dplyr 1
+## 3944 27264 Grouping and Chaining with dplyr 1
+## 3945 27264 Grouping and Chaining with dplyr 1
+## 3946 27264 Grouping and Chaining with dplyr 1
+## 3947 27264 Grouping and Chaining with dplyr 1
+## 3948 27264 Grouping and Chaining with dplyr 2
+## 3949 27264 Grouping and Chaining with dplyr 3
+## 3950 27264 Grouping and Chaining with dplyr 1
+## 3951 27264 Grouping and Chaining with dplyr 1
+## 3952 27264 Grouping and Chaining with dplyr 1
+## 3953 27264 Grouping and Chaining with dplyr 1
+## 3954 27264 Grouping and Chaining with dplyr 1
+## 3955 27264 Looking at Data 1
+## 3956 27264 Looking at Data 2
+## 3957 27264 Looking at Data 1
+## 3958 27264 Looking at Data 1
+## 3959 27264 Grouping and Chaining with dplyr 1
+## 3960 27264 Grouping and Chaining with dplyr 1
+## 3961 27264 Grouping and Chaining with dplyr 1
+## 3962 27264 Grouping and Chaining with dplyr 1
+## 3963 27264 Grouping and Chaining with dplyr 1
+## 3964 27264 Grouping and Chaining with dplyr 1
+## 3965 27264 Grouping and Chaining with dplyr 1
+## 3966 27264 Grouping and Chaining with dplyr 1
+## 3967 27264 Grouping and Chaining with dplyr 1
+## 3968 27264 Grouping and Chaining with dplyr 1
+## 3969 27264 Grouping and Chaining with dplyr 1
+## 3970 27264 Grouping and Chaining with dplyr 1
+## 3971 27264 Grouping and Chaining with dplyr 1
+## 3972 27264 Grouping and Chaining with dplyr 1
+## 3973 27264 Grouping and Chaining with dplyr 1
+## 3974 27264 Grouping and Chaining with dplyr 2
+## 3975 27264 Grouping and Chaining with dplyr 1
+## 3976 27264 Grouping and Chaining with dplyr 1
+## 3977 27264 Grouping and Chaining with dplyr 1
+## 3978 27264 Grouping and Chaining with dplyr 1
+## 3979 27264 Grouping and Chaining with dplyr 1
+## 3980 27264 Base_Plotting_System 1
+## 3981 27264 Base_Plotting_System 1
+## 3982 27264 Base_Plotting_System 1
+## 3983 27264 Base_Plotting_System 2
+## 3984 27264 Base_Plotting_System 1
+## 3985 27264 Base_Plotting_System 1
+## 3986 27264 Base_Plotting_System 2
+## 3987 27264 Base_Plotting_System 1
+## 3988 27264 Base_Plotting_System 1
+## 3989 27264 Base_Plotting_System 1
+## 3990 27264 Base_Plotting_System 1
+## 3991 27264 Base_Plotting_System 1
+## 3992 27264 Base_Plotting_System 1
+## 3993 27264 Base_Plotting_System 1
+## 3994 27264 Base_Plotting_System 1
+## 3995 27264 Base_Plotting_System 1
+## 3996 27264 Base_Plotting_System 1
+## 3997 27264 Base_Plotting_System 1
+## 3998 27264 Base_Plotting_System 1
+## 3999 27264 Looking at Data 1
+## 4000 27264 Looking at Data 1
+## 4001 27264 Looking at Data 1
+## 4002 27264 Looking at Data 1
+## 4003 27264 Looking at Data 1
+## 4004 27264 Looking at Data 1
+## 4005 27264 Looking at Data 1
+## 4006 27264 Looking at Data 1
+## 4007 27264 Looking at Data 1
+## 4008 27264 Looking at Data 2
+## 4009 27264 Looking at Data 1
+## 4010 27264 Looking at Data 1
+## 4011 27264 Looking at Data 1
+## 4012 27264 Looking at Data 1
+## 4013 27264 Base_Plotting_System 1
+## 4014 27264 Base_Plotting_System 1
+## 4015 27264 Base_Plotting_System 1
+## 4016 27264 Base_Plotting_System 1
+## 4017 27264 Base_Plotting_System 1
+## 4018 27264 Base_Plotting_System 1
+## 4019 27264 Base_Plotting_System 1
+## 4020 27264 Clustering_Example 1
+## 4021 27264 Clustering_Example 1
+## 4022 27264 Clustering_Example 1
+## 4023 27264 Clustering_Example 1
+## 4024 27264 Clustering_Example 1
+## 4025 27264 Clustering_Example 1
+## 4026 27264 Clustering_Example 1
+## 4027 27264 Clustering_Example 1
+## 4028 27264 Clustering_Example 1
+## 4029 27264 Clustering_Example 1
+## 4030 27264 Clustering_Example 1
+## 4031 27264 Clustering_Example 1
+## 4032 27264 Clustering_Example 1
+## 4033 27264 Clustering_Example 1
+## 4034 27264 Clustering_Example 1
+## 4035 27264 Clustering_Example 1
+## 4036 27264 Clustering_Example 1
+## 4037 27264 Clustering_Example 2
+## 4038 27264 Clustering_Example 1
+## 4039 27264 Base_Plotting_System 2
+## 4040 27264 Base_Plotting_System 1
+## 4041 27264 Base_Plotting_System 1
+## 4042 27264 Base_Plotting_System 2
+## 4043 27264 Base_Plotting_System 1
+## 4044 27264 Base_Plotting_System 1
+## 4045 27264 Base_Plotting_System 1
+## 4046 27264 Base_Plotting_System 1
+## 4047 27264 Base_Plotting_System 1
+## 4048 27264 Base_Plotting_System 1
+## 4049 27264 Base_Plotting_System 1
+## 4050 27264 Clustering_Example 1
+## 4051 27264 Clustering_Example 1
+## 4052 27264 Clustering_Example 1
+## 4053 27264 Clustering_Example 2
+## 4054 27264 Clustering_Example 1
+## 4055 27264 Clustering_Example 1
+## 4056 27264 Clustering_Example 2
+## 4057 27264 Clustering_Example 3
+## 4058 27264 Clustering_Example 1
+## 4059 27264 Clustering_Example 2
+## 4060 27264 Clustering_Example 1
+## 4061 27264 Clustering_Example 1
+## 4062 27264 Clustering_Example 1
+## 4063 27264 Clustering_Example 1
+## 4064 27264 Clustering_Example 1
+## 4065 27264 Clustering_Example 1
+## 4066 27264 Clustering_Example 1
+## 4067 27264 Clustering_Example 2
+## 4068 27264 Clustering_Example 1
+## 4069 27264 Clustering_Example 1
+## 4070 27264 Clustering_Example 1
+## 4071 27264 Clustering_Example 1
+## 4072 27264 Clustering_Example 1
+## 4073 27264 Clustering_Example 1
+## 4074 27264 Clustering_Example 1
+## 4075 27264 Clustering_Example 1
+## 4076 27264 Clustering_Example 1
+## 4077 27264 Clustering_Example 1
+## 4078 94880 Basic Building Blocks 1
+## 4079 94880 Basic Building Blocks 1
+## 4080 94880 Logic 1
+## 4081 94880 Functions 1
+## 4082 94880 Dates and Times 5
+## 4083 94880 Basic Building Blocks 1
+## 4084 94880 Functions 1
+## 4085 94880 Logic 1
+## 4086 94880 Basic Building Blocks 1
+## 4087 94880 Dates and Times 4
+## 4088 94880 Dates and Times 3
+## 4089 94880 Dates and Times 2
+## 4090 94880 Functions 1
+## 4091 94880 Basic Building Blocks 1
+## 4092 94880 Basic Building Blocks 1
+## 4093 94880 Workspace and Files 1
+## 4094 94880 Logic 1
+## 4095 94880 Subsetting Vectors 1
+## 4096 94880 Basic Building Blocks 1
+## 4097 94880 Dates and Times 1
+## 4098 94880 Subsetting Vectors 1
+## 4099 94880 Workspace and Files 2
+## 4100 94880 Workspace and Files 2
+## 4101 94880 Functions 3
+## 4102 94880 Dates and Times 1
+## 4103 94880 Subsetting Vectors 1
+## 4104 94880 Dates and Times 1
+## 4105 94880 Workspace and Files 2
+## 4106 94880 Functions 4
+## 4107 94880 Subsetting Vectors 1
+## 4108 94880 Workspace and Files 1
+## 4109 94880 Functions 2
+## 4110 94880 Functions 3
+## 4111 94880 Workspace and Files 2
+## 4112 94880 Workspace and Files 1
+## 4113 94880 Workspace and Files 1
+## 4114 94880 Vectors 1
+## 4115 94880 Functions 4
+## 4116 94880 Subsetting Vectors 1
+## 4117 94880 Dates and Times 1
+## 4118 94880 Dates and Times 1
+## 4119 94880 Vectors 1
+## 4120 94880 Dates and Times 1
+## 4121 94880 Workspace and Files 1
+## 4122 94880 Dates and Times 1
+## 4123 94880 Basic Building Blocks 1
+## 4124 94880 Subsetting Vectors 2
+## 4125 94880 Subsetting Vectors 1
+## 4126 94880 Workspace and Files 1
+## 4127 94880 Functions 2
+## 4128 94880 Logic 1
+## 4129 94880 Logic 1
+## 4130 94880 Logic 1
+## 4131 94880 Logic 1
+## 4132 94880 Workspace and Files 1
+## 4133 94880 Workspace and Files 1
+## 4134 94880 Dates and Times 1
+## 4135 94880 Functions 2
+## 4136 94880 Subsetting Vectors 1
+## 4137 94880 Subsetting Vectors 1
+## 4138 94880 Subsetting Vectors 1
+## 4139 94880 Functions 1
+## 4140 94880 Vectors 1
+## 4141 94880 Logic 1
+## 4142 94880 Logic 1
+## 4143 94880 Logic 1
+## 4144 94880 Functions 1
+## 4145 94880 Dates and Times 1
+## 4146 94880 Dates and Times 1
+## 4147 94880 Dates and Times 1
+## 4148 94880 Functions 1
+## 4149 94880 Basic Building Blocks 1
+## 4150 94880 Basic Building Blocks 1
+## 4151 94880 Subsetting Vectors 1
+## 4152 94880 Functions 1
+## 4153 94880 Functions 1
+## 4154 94880 Functions 1
+## 4155 94880 Vectors 1
+## 4156 94880 Vectors 1
+## 4157 94880 Vectors 1
+## 4158 94880 Subsetting Vectors 1
+## 4159 94880 Subsetting Vectors 1
+## 4160 94880 Subsetting Vectors 2
+## 4161 94880 Subsetting Vectors 1
+## 4162 94880 Workspace and Files 1
+## 4163 94880 Workspace and Files 1
+## 4164 94880 Workspace and Files 1
+## 4165 94880 Workspace and Files 1
+## 4166 94880 Dates and Times 1
+## 4167 94880 Logic 1
+## 4168 94880 Dates and Times 1
+## 4169 94880 Logic 1
+## 4170 94880 Workspace and Files 1
+## 4171 94880 Functions 5
+## 4172 94880 Dates and Times 1
+## 4173 94880 Dates and Times 1
+## 4174 94880 Dates and Times 1
+## 4175 94880 Logic 2
+## 4176 94880 Logic 1
+## 4177 94880 Logic 1
+## 4178 94880 Logic 1
+## 4179 94880 Logic 1
+## 4180 94880 Logic 1
+## 4181 94880 Logic 1
+## 4182 94880 Functions 1
+## 4183 94880 Functions 1
+## 4184 94880 Vectors 1
+## 4185 94880 Vectors 1
+## 4186 94880 Vectors 1
+## 4187 94880 Logic 1
+## 4188 94880 Workspace and Files 1
+## 4189 94880 Workspace and Files 2
+## 4190 94880 Workspace and Files 1
+## 4191 94880 Workspace and Files 1
+## 4192 94880 Workspace and Files 1
+## 4193 94880 Workspace and Files 1
+## 4194 94880 Logic 1
+## 4195 94880 Dates and Times 1
+## 4196 94880 Vectors 1
+## 4197 94880 Workspace and Files 1
+## 4198 94880 Workspace and Files 1
+## 4199 94880 Workspace and Files 1
+## 4200 94880 Workspace and Files 1
+## 4201 94880 Logic 1
+## 4202 94880 Functions 1
+## 4203 94880 Functions 1
+## 4204 94880 Functions 2
+## 4205 94880 Logic 1
+## 4206 94880 Logic 1
+## 4207 94880 Vectors 1
+## 4208 94880 Vectors 1
+## 4209 94880 Functions 2
+## 4210 94880 Basic Building Blocks 1
+## 4211 94880 Basic Building Blocks 1
+## 4212 94880 Basic Building Blocks 1
+## 4213 94880 Basic Building Blocks 1
+## 4214 94880 Vectors 1
+## 4215 94880 Vectors 1
+## 4216 94880 Vectors 1
+## 4217 94880 Vectors 1
+## 4218 94880 Vectors 1
+## 4219 94880 Vectors 1
+## 4220 94880 Vectors 1
+## 4221 94880 Functions 1
+## 4222 94880 Basic Building Blocks 1
+## 4223 94880 Missing Values 1
+## 4224 94880 Missing Values 1
+## 4225 94880 Functions 1
+## 4226 94880 Logic 1
+## 4227 94880 Functions 1
+## 4228 94880 Functions 1
+## 4229 94880 Functions 1
+## 4230 94880 Missing Values 1
+## 4231 94880 Missing Values 1
+## 4232 94880 Missing Values 2
+## 4233 94880 Missing Values 1
+## 4234 94880 Dates and Times 1
+## 4235 94880 Logic 1
+## 4236 94880 Basic Building Blocks 1
+## 4237 94880 Workspace and Files 1
+## 4238 94880 Subsetting Vectors 1
+## 4239 94880 Subsetting Vectors 1
+## 4240 94880 Logic 1
+## 4241 94880 Functions 1
+## 4242 94880 Logic 1
+## 4243 94880 Logic 1
+## 4244 94880 Logic 1
+## 4245 94880 Subsetting Vectors 1
+## 4246 94880 Dates and Times 1
+## 4247 94880 Basic Building Blocks 1
+## 4248 94880 Functions 1
+## 4249 94880 Logic 1
+## 4250 94880 Dates and Times 1
+## 4251 94880 Logic 1
+## 4252 94880 Logic 1
+## 4253 94880 Subsetting Vectors 1
+## 4254 94880 Functions 1
+## 4255 94880 Functions 1
+## 4256 94880 Basic Building Blocks 1
+## 4257 94880 Basic Building Blocks 2
+## 4258 94880 Basic Building Blocks 1
+## 4259 94880 Basic Building Blocks 1
+## 4260 94880 Logic 1
+## 4261 94880 Dates and Times 1
+## 4262 94880 Functions 1
+## 4263 94880 Workspace and Files 1
+## 4264 94880 Subsetting Vectors 1
+## 4265 94880 Basic Building Blocks 1
+## 4266 94880 Functions 1
+## 4267 94880 Basic Building Blocks 1
+## 4268 94880 Basic Building Blocks 1
+## 4269 94880 Functions 1
+## 4270 94880 Subsetting Vectors 1
+## 4271 94880 Subsetting Vectors 1
+## 4272 94880 Missing Values 1
+## 4273 94880 Subsetting Vectors 1
+## 4274 94880 Functions 1
+## 4275 94880 Dates and Times 1
+## 4276 94880 Dates and Times 1
+## 4277 94880 Logic 1
+## 4278 94880 Dates and Times 1
+## 4279 94880 Dates and Times 1
+## 4280 94880 Functions 1
+## 4281 94880 Dates and Times 1
+## 4282 94880 Subsetting Vectors 1
+## 4283 94880 Subsetting Vectors 1
+## 4284 94880 Subsetting Vectors 1
+## 4285 94880 Logic 1
+## 4286 94880 Functions 1
+## 4287 94880 Vectors 1
+## 4288 94880 Missing Values 1
+## 4289 94880 Functions 1
+## 4290 94880 Missing Values 1
+## 4291 94880 Logic 1
+## 4292 94880 Missing Values 1
+## 4293 94880 Missing Values 1
+## 4294 94880 Subsetting Vectors 1
+## 4295 94880 Missing Values 1
+## 4296 94880 Dates and Times 2
+## 4297 94880 Missing Values 1
+## 4298 94880 Dates and Times 1
+## 4299 94880 Missing Values 1
+## 4300 94880 Missing Values 1
+## 4301 94880 Subsetting Vectors 1
+## 4302 94880 Missing Values 2
+## 4303 94880 Missing Values 1
+## 4304 94880 Dates and Times 1
+## 4305 94880 Subsetting Vectors 1
+## 4306 94880 Dates and Times 1
+## 4307 46250 Workspace and Files 1
+## 4308 46250 Workspace and Files 1
+## 4309 46250 Logic 1
+## 4310 46250 Missing Values 1
+## 4311 46250 Logic 1
+## 4312 46250 Subsetting Vectors 1
+## 4313 46250 Workspace and Files 1
+## 4314 46250 Workspace and Files 1
+## 4315 46250 Missing Values 1
+## 4316 46250 Workspace and Files 1
+## 4317 46250 Workspace and Files 2
+## 4318 46250 Logic 1
+## 4319 46250 Dates and Times 1
+## 4320 46250 Logic 1
+## 4321 46250 Missing Values 1
+## 4322 46250 Logic 1
+## 4323 46250 Functions 1
+## 4324 46250 Subsetting Vectors 1
+## 4325 46250 Vectors 1
+## 4326 46250 Subsetting Vectors 1
+## 4327 46250 Basic Building Blocks 1
+## 4328 46250 Subsetting Vectors 1
+## 4329 46250 Subsetting Vectors 1
+## 4330 46250 Workspace and Files 2
+## 4331 46250 Workspace and Files 1
+## 4332 46250 Logic 3
+## 4333 46250 Workspace and Files 1
+## 4334 46250 Subsetting Vectors 1
+## 4335 46250 Workspace and Files 1
+## 4336 46250 Subsetting Vectors 1
+## 4337 46250 Basic Building Blocks 1
+## 4338 46250 Basic Building Blocks 1
+## 4339 46250 Workspace and Files 2
+## 4340 46250 Subsetting Vectors 1
+## 4341 46250 Logic 1
+## 4342 46250 Basic Building Blocks 1
+## 4343 46250 Subsetting Vectors 1
+## 4344 46250 Subsetting Vectors 1
+## 4345 46250 Basic Building Blocks 1
+## 4346 46250 Basic Building Blocks 2
+## 4347 46250 Subsetting Vectors 1
+## 4348 46250 Subsetting Vectors 1
+## 4349 46250 Dates and Times 1
+## 4350 46250 Vectors 2
+## 4351 46250 Vectors 1
+## 4352 46250 Basic Building Blocks 1
+## 4353 46250 Logic 1
+## 4354 46250 Workspace and Files 1
+## 4355 46250 Workspace and Files 1
+## 4356 46250 Basic Building Blocks 2
+## 4357 46250 Basic Building Blocks 1
+## 4358 46250 Functions 1
+## 4359 46250 Functions 1
+## 4360 46250 Subsetting Vectors 1
+## 4361 46250 Dates and Times 1
+## 4362 46250 Basic Building Blocks 1
+## 4363 46250 Subsetting Vectors 1
+## 4364 46250 Functions 1
+## 4365 46250 Functions 1
+## 4366 46250 Vectors 1
+## 4367 46250 Vectors 1
+## 4368 46250 Functions 2
+## 4369 46250 Workspace and Files 1
+## 4370 46250 Workspace and Files 1
+## 4371 46250 Workspace and Files 1
+## 4372 46250 Workspace and Files 2
+## 4373 46250 Functions 1
+## 4374 46250 Basic Building Blocks 1
+## 4375 46250 Vectors 1
+## 4376 46250 Functions 1
+## 4377 46250 Dates and Times 1
+## 4378 46250 Dates and Times 1
+## 4379 46250 Vectors 1
+## 4380 46250 Basic Building Blocks 1
+## 4381 46250 Logic 1
+## 4382 46250 Logic 1
+## 4383 46250 Workspace and Files 1
+## 4384 46250 Workspace and Files 1
+## 4385 46250 Vectors 1
+## 4386 46250 Workspace and Files 3
+## 4387 46250 Workspace and Files 1
+## 4388 46250 Subsetting Vectors 1
+## 4389 46250 Vectors 2
+## 4390 46250 Logic 2
+## 4391 46250 Logic 3
+## 4392 46250 Vectors 1
+## 4393 46250 Logic 1
+## 4394 46250 Vectors 1
+## 4395 46250 Vectors 1
+## 4396 46250 Logic 1
+## 4397 46250 Vectors 1
+## 4398 46250 Vectors 1
+## 4399 46250 Vectors 1
+## 4400 46250 Workspace and Files 1
+## 4401 46250 Logic 2
+## 4402 46250 Functions 3
+## 4403 46250 Functions 1
+## 4404 46250 Vectors 1
+## 4405 46250 Dates and Times 2
+## 4406 46250 Basic Building Blocks 1
+## 4407 46250 Basic Building Blocks 1
+## 4408 46250 Basic Building Blocks 1
+## 4409 46250 Basic Building Blocks 1
+## 4410 46250 Logic 1
+## 4411 46250 Logic 1
+## 4412 46250 Logic 1
+## 4413 46250 Vectors 1
+## 4414 46250 Functions 2
+## 4415 46250 Functions 1
+## 4416 46250 Missing Values 1
+## 4417 46250 Missing Values 1
+## 4418 46250 Logic 1
+## 4419 46250 Logic 4
+## 4420 46250 Functions 1
+## 4421 46250 Subsetting Vectors 1
+## 4422 46250 Missing Values 1
+## 4423 46250 Logic 1
+## 4424 46250 Logic 2
+## 4425 46250 Logic 1
+## 4426 46250 Logic 1
+## 4427 46250 Logic 1
+## 4428 46250 Vectors 1
+## 4429 46250 Logic 1
+## 4430 46250 Logic 1
+## 4431 46250 Workspace and Files 1
+## 4432 46250 Workspace and Files 1
+## 4433 46250 Subsetting Vectors 2
+## 4434 46250 Subsetting Vectors 3
+## 4435 46250 Subsetting Vectors 4
+## 4436 46250 Vectors 1
+## 4437 46250 Subsetting Vectors 1
+## 4438 46250 Subsetting Vectors 1
+## 4439 46250 Subsetting Vectors 2
+## 4440 46250 Workspace and Files 1
+## 4441 46250 Subsetting Vectors 2
+## 4442 46250 Subsetting Vectors 1
+## 4443 46250 Vectors 1
+## 4444 46250 Dates and Times 1
+## 4445 46250 Subsetting Vectors 2
+## 4446 46250 Logic 1
+## 4447 46250 Logic 1
+## 4448 46250 Logic 1
+## 4449 46250 Workspace and Files 2
+## 4450 46250 Functions 1
+## 4451 46250 Functions 1
+## 4452 46250 Functions 1
+## 4453 46250 Functions 1
+## 4454 46250 Functions 1
+## 4455 46250 Missing Values 1
+## 4456 46250 Dates and Times 1
+## 4457 46250 Subsetting Vectors 1
+## 4458 46250 Vectors 1
+## 4459 46250 Logic 1
+## 4460 46250 Subsetting Vectors 3
+## 4461 46250 Subsetting Vectors 1
+## 4462 46250 Vectors 1
+## 4463 46250 Functions 1
+## 4464 46250 Missing Values 1
+## 4465 46250 Missing Values 2
+## 4466 46250 Logic 1
+## 4467 46250 Vectors 2
+## 4468 46250 Logic 1
+## 4469 46250 Subsetting Vectors 1
+## 4470 46250 Vectors 1
+## 4471 46250 Vectors 2
+## 4472 46250 Vectors 1
+## 4473 46250 Vectors 1
+## 4474 46250 Functions 1
+## 4475 46250 Functions 1
+## 4476 46250 Subsetting Vectors 5
+## 4477 46250 Basic Building Blocks 1
+## 4478 46250 Logic 1
+## 4479 46250 Logic 1
+## 4480 46250 Vectors 1
+## 4481 46250 Vectors 1
+## 4482 46250 Vectors 1
+## 4483 46250 Subsetting Vectors 1
+## 4484 46250 Logic 1
+## 4485 46250 Vectors 1
+## 4486 46250 Vectors 2
+## 4487 46250 Vectors 1
+## 4488 46250 Vectors 2
+## 4489 46250 Vectors 1
+## 4490 46250 Vectors 1
+## 4491 46250 Workspace and Files 1
+## 4492 46250 Vectors 1
+## 4493 46250 Missing Values 1
+## 4494 46250 Missing Values 1
+## 4495 46250 Dates and Times 1
+## 4496 46250 Basic Building Blocks 1
+## 4497 46250 Vectors 1
+## 4498 46250 Vectors 1
+## 4499 46250 Vectors 1
+## 4500 46250 Basic Building Blocks 2
+## 4501 46250 Workspace and Files 1
+## 4502 46250 Functions 1
+## 4503 46250 Workspace and Files 1
+## 4504 46250 Dates and Times 1
+## 4505 46250 Missing Values 1
+## 4506 46250 Missing Values 1
+## 4507 46250 Missing Values 1
+## 4508 46250 Subsetting Vectors 1
+## 4509 46250 Missing Values 1
+## 4510 46250 Logic 1
+## 4511 46250 Functions 1
+## 4512 46250 Functions 1
+## 4513 46250 Functions 1
+## 4514 46250 Functions 1
+## 4515 46250 Workspace and Files 1
+## 4516 46250 Dates and Times 1
+## 4517 46250 Vectors 1
+## 4518 46250 Vectors 1
+## 4519 46250 Vectors 1
+## 4520 46250 Basic Building Blocks 1
+## 4521 46250 Basic Building Blocks 1
+## 4522 46250 Subsetting Vectors 1
+## 4523 46250 Subsetting Vectors 1
+## 4524 46250 Dates and Times 1
+## 4525 46250 Logic 1
+## 4526 46250 Logic 1
+## 4527 46250 Logic 1
+## 4528 46250 Functions 1
+## 4529 46250 Vectors 1
+## 4530 46250 Functions 1
+## 4531 46250 Vectors 1
+## 4532 46250 Basic Building Blocks 1
+## 4533 46250 Dates and Times 1
+## 4534 46250 Dates and Times 1
+## 4535 46250 Functions 2
+## 4536 46250 Logic 1
+## 4537 46250 Functions 1
+## 4538 46250 Dates and Times 1
+## 4539 46250 Dates and Times 1
+## 4540 46250 Dates and Times 1
+## 4541 46250 Logic 1
+## 4542 46250 Dates and Times 2
+## 4543 46250 Vectors 1
+## 4544 46250 Functions 1
+## 4545 46250 Dates and Times 2
+## 4546 46250 Missing Values 1
+## 4547 46250 Subsetting Vectors 1
+## 4548 46250 Dates and Times 1
+## 4549 46250 Dates and Times 1
+## 4550 46250 Dates and Times 1
+## 4551 46250 Dates and Times 1
+## 4552 46250 Basic Building Blocks 1
+## 4553 46250 Basic Building Blocks 1
+## 4554 46250 Dates and Times 1
+## 4555 46250 Dates and Times 1
+## 4556 46250 Basic Building Blocks 1
+## 4557 46250 Dates and Times 1
+## 4558 46250 Dates and Times 1
+## 4559 46250 Functions 1
+## 4560 46250 Dates and Times 2
+## 4561 46250 Dates and Times 1
+## 4562 46250 Basic Building Blocks 1
+## 4563 46250 Functions 1
+## 4564 46250 Dates and Times 1
+## 4565 46250 Dates and Times 1
+## 4566 46250 Dates and Times 1
+## 4567 46250 Dates and Times 1
+## 4568 92108 Logic 1
+## 4569 92108 Basic Building Blocks 1
+## 4570 92108 Logic 1
+## 4571 92108 Logic 1
+## 4572 92108 Basic Building Blocks 1
+## 4573 92108 Logic 1
+## 4574 92108 Logic 1
+## 4575 92108 Logic 1
+## 4576 92108 Workspace and Files 2
+## 4577 92108 Logic 1
+## 4578 92108 Workspace and Files 1
+## 4579 92108 Workspace and Files 1
+## 4580 92108 Workspace and Files 1
+## 4581 92108 Workspace and Files 1
+## 4582 92108 Vectors 1
+## 4583 92108 Basic Building Blocks 1
+## 4584 92108 Logic 1
+## 4585 92108 Logic 1
+## 4586 92108 Workspace and Files 1
+## 4587 92108 Vectors 1
+## 4588 92108 Logic 1
+## 4589 92108 Logic 1
+## 4590 92108 Basic Building Blocks 1
+## 4591 92108 Dates and Times 1
+## 4592 92108 Dates and Times 1
+## 4593 92108 Workspace and Files 1
+## 4594 92108 Vectors 2
+## 4595 92108 Vectors 1
+## 4596 92108 Workspace and Files 1
+## 4597 92108 Basic Building Blocks 1
+## 4598 92108 Basic Building Blocks 1
+## 4599 92108 Vectors 1
+## 4600 92108 Subsetting Vectors 1
+## 4601 92108 Missing Values 1
+## 4602 92108 Basic Building Blocks 1
+## 4603 92108 Basic Building Blocks 1
+## 4604 92108 Basic Building Blocks 1
+## 4605 92108 Dates and Times 1
+## 4606 92108 Dates and Times 1
+## 4607 92108 Dates and Times 1
+## 4608 92108 Vectors 1
+## 4609 92108 Basic Building Blocks 1
+## 4610 92108 Dates and Times 1
+## 4611 92108 Dates and Times 1
+## 4612 92108 Logic 1
+## 4613 92108 Dates and Times 1
+## 4614 92108 Subsetting Vectors 1
+## 4615 92108 Subsetting Vectors 1
+## 4616 92108 Missing Values 1
+## 4617 92108 Workspace and Files 1
+## 4618 92108 Basic Building Blocks 1
+## 4619 92108 Dates and Times 1
+## 4620 92108 Basic Building Blocks 1
+## 4621 92108 Dates and Times 2
+## 4622 92108 Workspace and Files 1
+## 4623 92108 Basic Building Blocks 1
+## 4624 92108 Workspace and Files 1
+## 4625 92108 Dates and Times 1
+## 4626 92108 Logic 1
+## 4627 92108 Dates and Times 1
+## 4628 92108 Dates and Times 1
+## 4629 92108 Dates and Times 1
+## 4630 92108 Basic Building Blocks 1
+## 4631 92108 Missing Values 1
+## 4632 92108 Workspace and Files 2
+## 4633 92108 Dates and Times 1
+## 4634 92108 Vectors 1
+## 4635 92108 Basic Building Blocks 1
+## 4636 92108 Basic Building Blocks 1
+## 4637 92108 Logic 1
+## 4638 92108 Logic 1
+## 4639 92108 Logic 1
+## 4640 92108 Logic 1
+## 4641 92108 Dates and Times 1
+## 4642 92108 Basic Building Blocks 1
+## 4643 92108 Subsetting Vectors 1
+## 4644 92108 Subsetting Vectors 2
+## 4645 92108 Subsetting Vectors 1
+## 4646 92108 Subsetting Vectors 1
+## 4647 92108 Subsetting Vectors 1
+## 4648 92108 Basic Building Blocks 1
+## 4649 92108 Dates and Times 1
+## 4650 92108 Dates and Times 1
+## 4651 92108 Logic 1
+## 4652 92108 Dates and Times 1
+## 4653 92108 Subsetting Vectors 1
+## 4654 92108 Workspace and Files 1
+## 4655 92108 Workspace and Files 1
+## 4656 92108 Basic Building Blocks 1
+## 4657 92108 Dates and Times 2
+## 4658 92108 Logic 1
+## 4659 92108 Basic Building Blocks 1
+## 4660 92108 Basic Building Blocks 1
+## 4661 92108 Basic Building Blocks 1
+## 4662 92108 Vectors 2
+## 4663 92108 Workspace and Files 1
+## 4664 92108 Logic 1
+## 4665 92108 Subsetting Vectors 1
+## 4666 92108 Workspace and Files 2
+## 4667 92108 Vectors 1
+## 4668 92108 Dates and Times 1
+## 4669 92108 Logic 1
+## 4670 92108 Logic 1
+## 4671 92108 Dates and Times 1
+## 4672 92108 Subsetting Vectors 3
+## 4673 92108 Subsetting Vectors 4
+## 4674 92108 Missing Values 2
+## 4675 92108 Missing Values 1
+## 4676 92108 Workspace and Files 1
+## 4677 92108 Workspace and Files 1
+## 4678 92108 Workspace and Files 1
+## 4679 92108 Vectors 1
+## 4680 92108 Missing Values 2
+## 4681 92108 Missing Values 1
+## 4682 92108 Vectors 1
+## 4683 92108 Vectors 2
+## 4684 92108 Logic 1
+## 4685 92108 Logic 1
+## 4686 92108 Dates and Times 1
+## 4687 92108 Dates and Times 1
+## 4688 92108 Dates and Times 2
+## 4689 92108 Dates and Times 1
+## 4690 92108 Vectors 1
+## 4691 92108 Dates and Times 1
+## 4692 92108 Subsetting Vectors 1
+## 4693 92108 Subsetting Vectors 1
+## 4694 92108 Subsetting Vectors 1
+## 4695 92108 Missing Values 1
+## 4696 92108 Missing Values 1
+## 4697 92108 Workspace and Files 1
+## 4698 92108 Dates and Times 1
+## 4699 92108 Dates and Times 1
+## 4700 92108 Dates and Times 1
+## 4701 92108 Dates and Times 1
+## 4702 92108 Logic 1
+## 4703 92108 Logic 1
+## 4704 92108 Subsetting Vectors 1
+## 4705 92108 Vectors 1
+## 4706 92108 Missing Values 1
+## 4707 92108 Subsetting Vectors 1
+## 4708 92108 Dates and Times 1
+## 4709 92108 Basic Building Blocks 1
+## 4710 92108 Logic 1
+## 4711 92108 Logic 1
+## 4712 92108 Logic 1
+## 4713 92108 Logic 1
+## 4714 92108 Logic 2
+## 4715 92108 Logic 1
+## 4716 92108 Logic 1
+## 4717 92108 Subsetting Vectors 1
+## 4718 92108 Missing Values 1
+## 4719 92108 Logic 1
+## 4720 92108 Vectors 1
+## 4721 92108 Subsetting Vectors 1
+## 4722 92108 Vectors 1
+## 4723 92108 Logic 1
+## 4724 92108 Subsetting Vectors 1
+## 4725 92108 Logic 2
+## 4726 92108 Logic 1
+## 4727 92108 Logic 2
+## 4728 92108 Logic 3
+## 4729 92108 Vectors 1
+## 4730 92108 Missing Values 1
+## 4731 92108 Vectors 1
+## 4732 92108 Workspace and Files 1
+## 4733 92108 Missing Values 1
+## 4734 92108 Workspace and Files 1
+## 4735 92108 Workspace and Files 1
+## 4736 92108 Workspace and Files 2
+## 4737 92108 Vectors 1
+## 4738 92108 Workspace and Files 1
+## 4739 92108 Workspace and Files 1
+## 4740 92108 Subsetting Vectors 1
+## 4741 92108 Workspace and Files 1
+## 4742 92108 Subsetting Vectors 1
+## 4743 92108 Subsetting Vectors 1
+## 4744 92108 Vectors 1
+## 4745 92108 Subsetting Vectors 1
+## 4746 92108 Vectors 1
+## 4747 92108 Vectors 1
+## 4748 92108 Vectors 1
+## 4749 92108 Missing Values 1
+## 4750 92108 Missing Values 1
+## 4751 92108 Missing Values 1
+## 4752 92108 Logic 1
+## 4753 92108 Workspace and Files 1
+## 4754 92108 Subsetting Vectors 1
+## 4755 92108 Subsetting Vectors 1
+## 4756 92108 Missing Values 1
+## 4757 92108 Subsetting Vectors 1
+## 4758 92108 Subsetting Vectors 1
+## 4759 92108 Subsetting Vectors 1
+## 4760 92108 Missing Values 2
+## 4761 92108 Subsetting Vectors 1
+## 4762 12264 Manipulating Data with dplyr 1
+## 4763 12264 Matrices and Data Frames 2
+## 4764 12264 Manipulating Data with dplyr 1
+## 4765 12264 Manipulating Data with dplyr 1
+## 4766 12264 Functions 2
+## 4767 12264 Tidying Data with tidyr 6
+## 4768 12264 Manipulating Data with dplyr 2
+## 4769 12264 Manipulating Data with dplyr 3
+## 4770 12264 Manipulating Data with dplyr 2
+## 4771 12264 Matrices and Data Frames 3
+## 4772 12264 Manipulating Data with dplyr 1
+## 4773 12264 Manipulating Data with dplyr 1
+## 4774 12264 Manipulating Data with dplyr 1
+## 4775 12264 Functions 1
+## 4776 12264 Tidying Data with tidyr 3
+## 4777 12264 Tidying Data with tidyr 4
+## 4778 12264 Tidying Data with tidyr 2
+## 4779 12264 Tidying Data with tidyr 1
+## 4780 12264 Manipulating Data with dplyr 1
+## 4781 12264 Tidying Data with tidyr 1
+## 4782 12264 Manipulating Data with dplyr 1
+## 4783 12264 Functions 1
+## 4784 12264 Manipulating Data with dplyr 1
+## 4785 12264 Manipulating Data with dplyr 1
+## 4786 12264 Manipulating Data with dplyr 1
+## 4787 12264 Tidying Data with tidyr 5
+## 4788 12264 Manipulating Data with dplyr 1
+## 4789 12264 Functions 1
+## 4790 12264 Functions 2
+## 4791 12264 Matrices and Data Frames 1
+## 4792 12264 Matrices and Data Frames 1
+## 4793 12264 Tidying Data with tidyr 1
+## 4794 12264 Manipulating Data with dplyr 1
+## 4795 12264 Manipulating Data with dplyr 1
+## 4796 12264 Matrices and Data Frames 1
+## 4797 12264 Tidying Data with tidyr 2
+## 4798 12264 Manipulating Data with dplyr 2
+## 4799 12264 Functions 1
+## 4800 12264 Functions 2
+## 4801 12264 Tidying Data with tidyr 1
+## 4802 12264 Manipulating Data with dplyr 1
+## 4803 12264 Tidying Data with tidyr 1
+## 4804 12264 Manipulating Data with dplyr 1
+## 4805 12264 Matrices and Data Frames 1
+## 4806 12264 Manipulating Data with dplyr 2
+## 4807 12264 Manipulating Data with dplyr 1
+## 4808 12264 Manipulating Data with dplyr 1
+## 4809 12264 Manipulating Data with dplyr 1
+## 4810 12264 Tidying Data with tidyr 1
+## 4811 12264 Manipulating Data with dplyr 1
+## 4812 12264 Manipulating Data with dplyr 1
+## 4813 12264 Functions 1
+## 4814 12264 Manipulating Data with dplyr 1
+## 4815 12264 Manipulating Data with dplyr 1
+## 4816 12264 Matrices and Data Frames 1
+## 4817 12264 Matrices and Data Frames 1
+## 4818 12264 Functions 3
+## 4819 12264 Manipulating Data with dplyr 1
+## 4820 12264 Tidying Data with tidyr 1
+## 4821 12264 Tidying Data with tidyr 2
+## 4822 12264 Tidying Data with tidyr 1
+## 4823 12264 Functions 1
+## 4824 12264 Manipulating Data with dplyr 1
+## 4825 12264 Tidying Data with tidyr 1
+## 4826 12264 Manipulating Data with dplyr 1
+## 4827 12264 Functions 1
+## 4828 12264 Manipulating Data with dplyr 2
+## 4829 12264 Manipulating Data with dplyr 1
+## 4830 12264 Manipulating Data with dplyr 1
+## 4831 12264 Manipulating Data with dplyr 1
+## 4832 12264 Functions 1
+## 4833 12264 Manipulating Data with dplyr 1
+## 4834 12264 Tidying Data with tidyr 1
+## 4835 12264 Manipulating Data with dplyr 1
+## 4836 12264 Manipulating Data with dplyr 1
+## 4837 12264 Tidying Data with tidyr 4
+## 4838 12264 Tidying Data with tidyr 5
+## 4839 12264 Tidying Data with tidyr 1
+## 4840 12264 Manipulating Data with dplyr 2
+## 4841 12264 Tidying Data with tidyr 1
+## 4842 12264 Matrices and Data Frames 1
+## 4843 12264 Tidying Data with tidyr 2
+## 4844 12264 Matrices and Data Frames 1
+## 4845 12264 Functions 1
+## 4846 12264 Functions 1
+## 4847 12264 Matrices and Data Frames 1
+## 4848 12264 Functions 1
+## 4849 12264 Tidying Data with tidyr 3
+## 4850 12264 Tidying Data with tidyr 4
+## 4851 12264 Matrices and Data Frames 1
+## 4852 12264 Matrices and Data Frames 1
+## 4853 12264 Matrices and Data Frames 1
+## 4854 12264 Tidying Data with tidyr 1
+## 4855 12264 Matrices and Data Frames 2
+## 4856 12264 Matrices and Data Frames 1
+## 4857 12264 Tidying Data with tidyr 1
+## 4858 12264 Tidying Data with tidyr 1
+## 4859 12264 Manipulating Data with dplyr 1
+## 4860 12264 Tidying Data with tidyr 1
+## 4861 12264 Manipulating Data with dplyr 1
+## 4862 12264 Tidying Data with tidyr 3
+## 4863 12264 Manipulating Data with dplyr 1
+## 4864 12264 Functions 1
+## 4865 12264 Functions 1
+## 4866 12264 Functions 1
+## 4867 12264 Functions 1
+## 4868 12264 Matrices and Data Frames 1
+## 4869 12264 Matrices and Data Frames 2
+## 4870 12264 Matrices and Data Frames 1
+## 4871 12264 Functions 1
+## 4872 12264 Tidying Data with tidyr 1
+## 4873 12264 Tidying Data with tidyr 3
+## 4874 12264 Manipulating Data with dplyr 1
+## 4875 12264 Matrices and Data Frames 1
+## 4876 12264 Tidying Data with tidyr 2
+## 4877 12264 Functions 1
+## 4878 12264 Functions 1
+## 4879 12264 Functions 1
+## 4880 12264 Manipulating Data with dplyr 1
+## 4881 12264 Manipulating Data with dplyr 1
+## 4882 12264 Tidying Data with tidyr 1
+## 4883 12264 Matrices and Data Frames 1
+## 4884 12264 Matrices and Data Frames 2
+## 4885 12264 Functions 1
+## 4886 12264 Tidying Data with tidyr 1
+## 4887 12264 Functions 1
+## 4888 12264 Manipulating Data with dplyr 2
+## 4889 12264 Functions 1
+## 4890 12264 Functions 1
+## 4891 12264 Tidying Data with tidyr 1
+## 4892 12264 Tidying Data with tidyr 1
+## 4893 12264 Matrices and Data Frames 1
+## 4894 12264 Manipulating Data with dplyr 2
+## 4895 12264 Tidying Data with tidyr 1
+## 4896 12264 Functions 1
+## 4897 12264 Functions 1
+## 4898 12264 Tidying Data with tidyr 2
+## 4899 12264 Tidying Data with tidyr 1
+## 4900 12264 Manipulating Data with dplyr 2
+## 4901 12264 Matrices and Data Frames 1
+## 4902 12264 Matrices and Data Frames 1
+## 4903 12264 Matrices and Data Frames 1
+## 4904 12264 Manipulating Data with dplyr 2
+## 4905 12264 Manipulating Data with dplyr 1
+## 4906 12264 Tidying Data with tidyr 1
+## 4907 12264 Functions 2
+## 4908 12264 Matrices and Data Frames 1
+## 4909 12264 Tidying Data with tidyr 1
+## 4910 12264 Matrices and Data Frames 1
+## 4911 12264 Tidying Data with tidyr 1
+## 4912 12264 Functions 4
+## 4913 12264 Tidying Data with tidyr 1
+## 4914 12264 Manipulating Data with dplyr 1
+## 4915 12264 Functions 1
+## 4916 12264 Manipulating Data with dplyr 3
+## 4917 12264 Manipulating Data with dplyr 1
+## 4918 12264 Functions 4
+## 4919 12264 Functions 5
+## 4920 12264 Tidying Data with tidyr 2
+## 4921 12264 Matrices and Data Frames 1
+## 4922 12264 Functions 6
+## 4923 12264 Tidying Data with tidyr 1
+## 4924 12264 Functions 1
+## 4925 12264 Functions 1
+## 4926 12264 Tidying Data with tidyr 1
+## 4927 12264 Tidying Data with tidyr 1
+## 4928 12264 Functions 3
+## 4929 12264 Functions 1
+## 4930 12264 Functions 2
+## 4931 12264 Functions 7
+## 4932 12264 Functions 3
+## 4933 12264 Functions 5
+## 4934 12264 Tidying Data with tidyr 1
+## 4935 12264 Tidying Data with tidyr 1
+## 4936 12264 Tidying Data with tidyr 4
+## 4937 12264 Tidying Data with tidyr 1
+## 4938 77484 Matrices and Data Frames 1
+## 4939 77484 Manipulating Data with dplyr 1
+## 4940 77484 Tidying Data with tidyr 1
+## 4941 77484 Manipulating Data with dplyr 1
+## 4942 77484 Tidying Data with tidyr 7
+## 4943 77484 Manipulating Data with dplyr 2
+## 4944 77484 Tidying Data with tidyr 1
+## 4945 77484 Tidying Data with tidyr 5
+## 4946 77484 Matrices and Data Frames 1
+## 4947 77484 Matrices and Data Frames 1
+## 4948 77484 Manipulating Data with dplyr 1
+## 4949 77484 Manipulating Data with dplyr 1
+## 4950 77484 Manipulating Data with dplyr 1
+## 4951 77484 Manipulating Data with dplyr 1
+## 4952 77484 Matrices and Data Frames 1
+## 4953 77484 Manipulating Data with dplyr 1
+## 4954 77484 Grouping and Chaining with dplyr 1
+## 4955 77484 Tidying Data with tidyr 6
+## 4956 77484 Manipulating Data with dplyr 1
+## 4957 77484 Manipulating Data with dplyr 1
+## 4958 77484 Matrices and Data Frames 1
+## 4959 77484 Grouping and Chaining with dplyr 1
+## 4960 77484 Matrices and Data Frames 1
+## 4961 77484 Matrices and Data Frames 1
+## 4962 77484 Grouping and Chaining with dplyr 1
+## 4963 77484 Matrices and Data Frames 1
+## 4964 77484 Tidying Data with tidyr 2
+## 4965 77484 Grouping and Chaining with dplyr 1
+## 4966 77484 Grouping and Chaining with dplyr 1
+## 4967 77484 Grouping and Chaining with dplyr 1
+## 4968 77484 Grouping and Chaining with dplyr 1
+## 4969 77484 Grouping and Chaining with dplyr 1
+## 4970 77484 Matrices and Data Frames 1
+## 4971 77484 Tidying Data with tidyr 1
+## 4972 77484 Tidying Data with tidyr 1
+## 4973 77484 Matrices and Data Frames 1
+## 4974 77484 Manipulating Data with dplyr 1
+## 4975 77484 Manipulating Data with dplyr 1
+## 4976 77484 Manipulating Data with dplyr 1
+## 4977 77484 Tidying Data with tidyr 1
+## 4978 77484 Tidying Data with tidyr 1
+## 4979 77484 Tidying Data with tidyr 1
+## 4980 77484 Grouping and Chaining with dplyr 1
+## 4981 77484 Grouping and Chaining with dplyr 1
+## 4982 77484 Grouping and Chaining with dplyr 1
+## 4983 77484 Grouping and Chaining with dplyr 1
+## 4984 77484 Tidying Data with tidyr 1
+## 4985 77484 Tidying Data with tidyr 1
+## 4986 77484 Manipulating Data with dplyr 1
+## 4987 77484 Tidying Data with tidyr 2
+## 4988 77484 Tidying Data with tidyr 1
+## 4989 77484 Tidying Data with tidyr 1
+## 4990 77484 Tidying Data with tidyr 1
+## 4991 77484 Tidying Data with tidyr 2
+## 4992 77484 Tidying Data with tidyr 3
+## 4993 77484 Tidying Data with tidyr 1
+## 4994 77484 Tidying Data with tidyr 2
+## 4995 77484 Tidying Data with tidyr 3
+## 4996 77484 Tidying Data with tidyr 4
+## 4997 77484 Tidying Data with tidyr 1
+## 4998 77484 Tidying Data with tidyr 1
+## 4999 77484 Tidying Data with tidyr 1
+## 5000 77484 Manipulating Data with dplyr 2
+## 5001 77484 Manipulating Data with dplyr 3
+## 5002 77484 Tidying Data with tidyr 1
+## 5003 77484 Tidying Data with tidyr 1
+## 5004 77484 Tidying Data with tidyr 1
+## 5005 77484 Tidying Data with tidyr 1
+## 5006 77484 Tidying Data with tidyr 4
+## 5007 77484 Manipulating Data with dplyr 1
+## 5008 77484 Manipulating Data with dplyr 1
+## 5009 77484 Manipulating Data with dplyr 1
+## 5010 77484 Manipulating Data with dplyr 1
+## 5011 77484 Manipulating Data with dplyr 1
+## 5012 77484 Manipulating Data with dplyr 1
+## 5013 77484 Manipulating Data with dplyr 1
+## 5014 77484 Tidying Data with tidyr 1
+## 5015 77484 Tidying Data with tidyr 1
+## 5016 77484 Tidying Data with tidyr 1
+## 5017 77484 Tidying Data with tidyr 2
+## 5018 77484 Tidying Data with tidyr 3
+## 5019 77484 Tidying Data with tidyr 4
+## 5020 77484 Tidying Data with tidyr 5
+## 5021 77484 Tidying Data with tidyr 1
+## 5022 77484 Grouping and Chaining with dplyr 1
+## 5023 77484 Grouping and Chaining with dplyr 1
+## 5024 77484 Grouping and Chaining with dplyr 1
+## 5025 77484 Tidying Data with tidyr 1
+## 5026 77484 Matrices and Data Frames 1
+## 5027 77484 Matrices and Data Frames 1
+## 5028 77484 Matrices and Data Frames 1
+## 5029 77484 Matrices and Data Frames 1
+## 5030 77484 Matrices and Data Frames 1
+## 5031 77484 Matrices and Data Frames 2
+## 5032 77484 Matrices and Data Frames 3
+## 5033 77484 Matrices and Data Frames 1
+## 5034 77484 Matrices and Data Frames 1
+## 5035 77484 Looking at Data 1
+## 5036 77484 Looking at Data 2
+## 5037 77484 Looking at Data 3
+## 5038 77484 Matrices and Data Frames 1
+## 5039 77484 Matrices and Data Frames 1
+## 5040 77484 Matrices and Data Frames 1
+## 5041 77484 Matrices and Data Frames 2
+## 5042 77484 Matrices and Data Frames 1
+## 5043 77484 Matrices and Data Frames 1
+## 5044 77484 Matrices and Data Frames 1
+## 5045 77484 Matrices and Data Frames 1
+## 5046 77484 Tidying Data with tidyr 1
+## 5047 77484 Tidying Data with tidyr 2
+## 5048 77484 Tidying Data with tidyr 3
+## 5049 77484 Tidying Data with tidyr 1
+## 5050 77484 Tidying Data with tidyr 1
+## 5051 77484 Tidying Data with tidyr 1
+## 5052 77484 Tidying Data with tidyr 2
+## 5053 77484 Tidying Data with tidyr 1
+## 5054 77484 Tidying Data with tidyr 1
+## 5055 77484 Tidying Data with tidyr 1
+## 5056 77484 Tidying Data with tidyr 1
+## 5057 77484 Grouping and Chaining with dplyr 2
+## 5058 77484 Grouping and Chaining with dplyr 1
+## 5059 77484 Grouping and Chaining with dplyr 1
+## 5060 77484 Grouping and Chaining with dplyr 1
+## 5061 77484 Grouping and Chaining with dplyr 1
+## 5062 77484 Plotting_Systems 1
+## 5063 77484 Plotting_Systems 1
+## 5064 77484 Plotting_Systems 1
+## 5065 77484 Grouping and Chaining with dplyr 2
+## 5066 77484 Grouping and Chaining with dplyr 1
+## 5067 77484 Grouping and Chaining with dplyr 1
+## 5068 77484 Grouping and Chaining with dplyr 1
+## 5069 77484 Grouping and Chaining with dplyr 1
+## 5070 77484 Grouping and Chaining with dplyr 1
+## 5071 77484 Manipulating Data with dplyr 1
+## 5072 77484 Manipulating Data with dplyr 1
+## 5073 77484 Manipulating Data with dplyr 1
+## 5074 77484 Manipulating Data with dplyr 1
+## 5075 77484 Plotting_Systems 1
+## 5076 77484 Plotting_Systems 1
+## 5077 77484 Plotting_Systems 1
+## 5078 77484 Plotting_Systems 2
+## 5079 77484 Looking at Data 1
+## 5080 77484 Grouping and Chaining with dplyr 1
+## 5081 77484 Grouping and Chaining with dplyr 1
+## 5082 77484 Grouping and Chaining with dplyr 1
+## 5083 77484 Plotting_Systems 1
+## 5084 77484 Plotting_Systems 2
+## 5085 77484 Plotting_Systems 1
+## 5086 77484 Plotting_Systems 1
+## 5087 77484 Plotting_Systems 1
+## 5088 77484 Plotting_Systems 2
+## 5089 77484 Manipulating Data with dplyr 1
+## 5090 77484 Manipulating Data with dplyr 1
+## 5091 77484 Manipulating Data with dplyr 1
+## 5092 77484 Plotting_Systems 1
+## 5093 77484 Plotting_Systems 1
+## 5094 77484 Plotting_Systems 1
+## 5095 77484 Manipulating Data with dplyr 1
+## 5096 77484 Plotting_Systems 1
+## 5097 77484 Plotting_Systems 1
+## 5098 77484 Plotting_Systems 1
+## 5099 77484 Plotting_Systems 1
+## 5100 77484 Plotting_Systems 1
+## 5101 77484 Manipulating Data with dplyr 1
+## 5102 77484 Looking at Data 1
+## 5103 77484 Looking at Data 1
+## 5104 77484 Looking at Data 1
+## 5105 77484 Plotting_Systems 1
+## 5106 77484 Plotting_Systems 1
+## 5107 77484 Manipulating Data with dplyr 1
+## 5108 77484 Manipulating Data with dplyr 2
+## 5109 77484 Manipulating Data with dplyr 3
+## 5110 77484 Manipulating Data with dplyr 1
+## 5111 77484 Manipulating Data with dplyr 1
+## 5112 77484 Manipulating Data with dplyr 1
+## 5113 77484 Manipulating Data with dplyr 1
+## 5114 77484 Looking at Data 1
+## 5115 77484 Manipulating Data with dplyr 1
+## 5116 77484 Looking at Data 1
+## 5117 77484 Looking at Data 1
+## 5118 77484 Manipulating Data with dplyr 1
+## 5119 77484 Manipulating Data with dplyr 1
+## 5120 77484 Manipulating Data with dplyr 1
+## 5121 77484 Grouping and Chaining with dplyr 1
+## 5122 77484 Looking at Data 1
+## 5123 77484 Looking at Data 1
+## 5124 77484 Looking at Data 1
+## 5125 77484 Manipulating Data with dplyr 1
+## 5126 77484 Looking at Data 1
+## 5127 77484 Manipulating Data with dplyr 1
+## 5128 77484 Manipulating Data with dplyr 2
+## 5129 77484 Looking at Data 1
+## 5130 77484 Manipulating Data with dplyr 1
+## 5131 77484 Plotting_Systems 1
+## 5132 77484 Grouping and Chaining with dplyr 1
+## 5133 77484 Grouping and Chaining with dplyr 1
+## 5134 77484 Looking at Data 1
+## 5135 77484 Looking at Data 1
+## 5136 77484 Plotting_Systems 1
+## 5137 77484 Looking at Data 1
+## 5138 77484 Grouping and Chaining with dplyr 1
+## 5139 77484 Grouping and Chaining with dplyr 1
+## 5140 24042 Functions 1
+## 5141 24042 Functions 1
+## 5142 24042 Logic 1
+## 5143 24042 Logic 1
+## 5144 24042 Functions 1
+## 5145 24042 Functions 2
+## 5146 24042 Functions 1
+## 5147 24042 Subsetting Vectors 1
+## 5148 24042 Logic 1
+## 5149 24042 Functions 1
+## 5150 24042 Subsetting Vectors 1
+## 5151 24042 Subsetting Vectors 1
+## 5152 24042 Functions 1
+## 5153 24042 Subsetting Vectors 1
+## 5154 24042 Functions 1
+## 5155 24042 Subsetting Vectors 1
+## 5156 24042 Functions 2
+## 5157 24042 Subsetting Vectors 2
+## 5158 24042 Workspace and Files 1
+## 5159 24042 Subsetting Vectors 1
+## 5160 24042 Vectors 1
+## 5161 24042 Subsetting Vectors 1
+## 5162 24042 Vectors 1
+## 5163 24042 Functions 2
+## 5164 24042 Functions 1
+## 5165 24042 Functions 3
+## 5166 24042 Basic Building Blocks 1
+## 5167 24042 Basic Building Blocks 1
+## 5168 24042 Vectors 1
+## 5169 24042 Functions 1
+## 5170 24042 Missing Values 1
+## 5171 24042 Subsetting Vectors 2
+## 5172 24042 Subsetting Vectors 2
+## 5173 24042 Functions 5
+## 5174 24042 Subsetting Vectors 1
+## 5175 24042 Missing Values 1
+## 5176 24042 Vectors 1
+## 5177 24042 Subsetting Vectors 1
+## 5178 24042 Subsetting Vectors 1
+## 5179 24042 Basic Building Blocks 1
+## 5180 24042 Functions 2
+## 5181 24042 Functions 4
+## 5182 24042 Workspace and Files 1
+## 5183 24042 Functions 1
+## 5184 24042 Subsetting Vectors 1
+## 5185 24042 Workspace and Files 1
+## 5186 24042 Vectors 2
+## 5187 24042 Vectors 3
+## 5188 24042 Vectors 1
+## 5189 24042 Vectors 1
+## 5190 24042 Workspace and Files 1
+## 5191 24042 Vectors 1
+## 5192 24042 Workspace and Files 1
+## 5193 24042 Workspace and Files 2
+## 5194 24042 Subsetting Vectors 1
+## 5195 24042 Functions 1
+## 5196 24042 Subsetting Vectors 1
+## 5197 24042 Workspace and Files 2
+## 5198 24042 Functions 1
+## 5199 24042 Basic Building Blocks 1
+## 5200 24042 Basic Building Blocks 1
+## 5201 24042 Basic Building Blocks 1
+## 5202 24042 Logic 1
+## 5203 24042 Logic 1
+## 5204 24042 Workspace and Files 1
+## 5205 24042 Workspace and Files 1
+## 5206 24042 Workspace and Files 1
+## 5207 24042 Functions 1
+## 5208 24042 Missing Values 2
+## 5209 24042 Workspace and Files 1
+## 5210 24042 Workspace and Files 1
+## 5211 24042 Functions 1
+## 5212 24042 Functions 1
+## 5213 24042 Workspace and Files 1
+## 5214 24042 Vectors 1
+## 5215 24042 Vectors 2
+## 5216 24042 Vectors 1
+## 5217 24042 Vectors 1
+## 5218 24042 Vectors 1
+## 5219 24042 Dates and Times 2
+## 5220 24042 Workspace and Files 1
+## 5221 24042 Workspace and Files 1
+## 5222 24042 Workspace and Files 1
+## 5223 24042 Workspace and Files 1
+## 5224 24042 Basic Building Blocks 1
+## 5225 24042 Basic Building Blocks 1
+## 5226 24042 Missing Values 1
+## 5227 24042 Missing Values 1
+## 5228 24042 Missing Values 1
+## 5229 24042 Missing Values 1
+## 5230 24042 Functions 1
+## 5231 24042 Missing Values 1
+## 5232 24042 Missing Values 1
+## 5233 24042 Dates and Times 1
+## 5234 24042 Workspace and Files 1
+## 5235 24042 Missing Values 1
+## 5236 24042 Missing Values 1
+## 5237 24042 Missing Values 1
+## 5238 24042 Vectors 1
+## 5239 24042 Logic 1
+## 5240 24042 Logic 1
+## 5241 24042 Logic 1
+## 5242 24042 Workspace and Files 1
+## 5243 24042 Workspace and Files 2
+## 5244 24042 Dates and Times 1
+## 5245 24042 Dates and Times 1
+## 5246 24042 Dates and Times 1
+## 5247 24042 Dates and Times 1
+## 5248 24042 Workspace and Files 1
+## 5249 24042 Dates and Times 1
+## 5250 24042 Logic 1
+## 5251 24042 Functions 2
+## 5252 24042 Functions 3
+## 5253 24042 Functions 4
+## 5254 24042 Workspace and Files 1
+## 5255 24042 Workspace and Files 1
+## 5256 24042 Workspace and Files 1
+## 5257 24042 Workspace and Files 1
+## 5258 24042 Workspace and Files 1
+## 5259 24042 Basic Building Blocks 1
+## 5260 24042 Basic Building Blocks 1
+## 5261 24042 Dates and Times 1
+## 5262 24042 Dates and Times 2
+## 5263 24042 Dates and Times 3
+## 5264 24042 Dates and Times 4
+## 5265 24042 Dates and Times 1
+## 5266 24042 Dates and Times 1
+## 5267 24042 Dates and Times 1
+## 5268 24042 Functions 5
+## 5269 24042 Functions 6
+## 5270 24042 Dates and Times 1
+## 5271 24042 Dates and Times 1
+## 5272 24042 Dates and Times 1
+## 5273 24042 Missing Values 1
+## 5274 24042 Missing Values 1
+## 5275 24042 Vectors 1
+## 5276 24042 Functions 1
+## 5277 24042 Functions 1
+## 5278 24042 Basic Building Blocks 1
+## 5279 24042 Logic 1
+## 5280 24042 Workspace and Files 2
+## 5281 24042 Logic 1
+## 5282 24042 Logic 1
+## 5283 24042 Basic Building Blocks 1
+## 5284 24042 Basic Building Blocks 1
+## 5285 24042 Basic Building Blocks 1
+## 5286 24042 Subsetting Vectors 1
+## 5287 24042 Subsetting Vectors 1
+## 5288 24042 Dates and Times 1
+## 5289 24042 Dates and Times 1
+## 5290 24042 Dates and Times 1
+## 5291 24042 Dates and Times 1
+## 5292 24042 Workspace and Files 1
+## 5293 24042 Vectors 1
+## 5294 24042 Logic 1
+## 5295 24042 Dates and Times 1
+## 5296 24042 Basic Building Blocks 2
+## 5297 24042 Basic Building Blocks 3
+## 5298 24042 Vectors 1
+## 5299 24042 Basic Building Blocks 5
+## 5300 24042 Basic Building Blocks 1
+## 5301 24042 Basic Building Blocks 1
+## 5302 24042 Basic Building Blocks 1
+## 5303 24042 Vectors 1
+## 5304 24042 Vectors 1
+## 5305 24042 Vectors 1
+## 5306 24042 Logic 1
+## 5307 24042 Logic 1
+## 5308 24042 Subsetting Vectors 1
+## 5309 24042 Dates and Times 2
+## 5310 24042 Dates and Times 1
+## 5311 24042 Dates and Times 1
+## 5312 24042 Subsetting Vectors 1
+## 5313 24042 Functions 7
+## 5314 24042 Vectors 2
+## 5315 24042 Basic Building Blocks 1
+## 5316 24042 Vectors 1
+## 5317 24042 Vectors 1
+## 5318 24042 Functions 2
+## 5319 24042 Basic Building Blocks 2
+## 5320 24042 Subsetting Vectors 1
+## 5321 24042 Dates and Times 1
+## 5322 24042 Subsetting Vectors 1
+## 5323 24042 Dates and Times 1
+## 5324 24042 Dates and Times 1
+## 5325 24042 Basic Building Blocks 4
+## 5326 24042 Subsetting Vectors 1
+## 5327 24042 Functions 8
+## 5328 24042 Subsetting Vectors 1
+## 5329 24042 Subsetting Vectors 1
+## 5330 24042 Basic Building Blocks 1
+## 5331 24042 Basic Building Blocks 1
+## 5332 24042 Logic 1
+## 5333 24042 Functions 12
+## 5334 24042 Subsetting Vectors 1
+## 5335 24042 Logic 1
+## 5336 24042 Logic 1
+## 5337 24042 Logic 1
+## 5338 24042 Logic 1
+## 5339 24042 Logic 1
+## 5340 24042 Functions 1
+## 5341 24042 Basic Building Blocks 1
+## 5342 24042 Functions 1
+## 5343 24042 Basic Building Blocks 1
+## 5344 24042 Basic Building Blocks 1
+## 5345 24042 Subsetting Vectors 2
+## 5346 24042 Logic 1
+## 5347 24042 Functions 1
+## 5348 24042 Missing Values 1
+## 5349 24042 Missing Values 1
+## 5350 24042 Functions 1
+## 5351 24042 Functions 1
+## 5352 24042 Dates and Times 1
+## 5353 24042 Dates and Times 1
+## 5354 24042 Dates and Times 1
+## 5355 24042 Functions 9
+## 5356 24042 Functions 10
+## 5357 24042 Subsetting Vectors 1
+## 5358 24042 Functions 1
+## 5359 24042 Logic 1
+## 5360 24042 Logic 1
+## 5361 24042 Functions 1
+## 5362 24042 Dates and Times 1
+## 5363 24042 Functions 2
+## 5364 24042 Functions 1
+## 5365 24042 Subsetting Vectors 1
+## 5366 24042 Functions 1
+## 5367 24042 Logic 1
+## 5368 24042 Logic 1
+## 5369 24042 Dates and Times 1
+## 5370 24042 Functions 1
+## 5371 24042 Functions 11
+## 5372 24042 Subsetting Vectors 1
+## 5373 24042 Logic 1
+## 5374 24042 Logic 1
+## 5375 24042 Logic 1
+## 5376 24042 Logic 1
+## 5377 24042 Subsetting Vectors 1
+## 5378 24042 Logic 1
+## 5379 24042 Functions 1
+## 5380 24042 Logic 1
+## 5381 24042 Logic 1
+## 5382 24042 Logic 1
+## 5383 24042 Dates and Times 1
+## 5384 24042 Logic 1
+## 5385 24042 Logic 1
+## 5386 64610 Basic Building Blocks 1
+## 5387 64610 Basic Building Blocks 1
+## 5388 64610 Basic Building Blocks 1
+## 5389 64610 Basic Building Blocks 1
+## 5390 64610 Basic Building Blocks 1
+## 5391 64610 Basic Building Blocks 1
+## 5392 64610 Basic Building Blocks 1
+## 5393 64610 Basic Building Blocks 1
+## 5394 64610 Basic Building Blocks 1
+## 5395 64610 Basic Building Blocks 1
+## 5396 64610 Basic Building Blocks 1
+## 5397 64610 Basic Building Blocks 1
+## 5398 64610 Basic Building Blocks 1
+## 5399 64610 Basic Building Blocks 1
+## 5400 64610 Basic Building Blocks 1
+## 5401 64610 Basic Building Blocks 1
+## 5402 64610 Basic Building Blocks 1
+## 5403 64610 Basic Building Blocks 1
+## 5404 64610 Basic Building Blocks 1
+## 5405 64610 Basic Building Blocks 1
+## 5406 64610 Basic Building Blocks 1
+## 5407 64610 Basic Building Blocks 1
+## 5408 64610 Basic Building Blocks 2
+## 5409 64610 Basic Building Blocks 1
+## 5410 34362 Workspace and Files 1
+## 5411 34362 Logic 2
+## 5412 34362 Workspace and Files 2
+## 5413 34362 Workspace and Files 1
+## 5414 34362 Workspace and Files 2
+## 5415 34362 Workspace and Files 1
+## 5416 34362 Workspace and Files 1
+## 5417 34362 Logic 1
+## 5418 34362 Logic 2
+## 5419 34362 Logic 3
+## 5420 34362 Workspace and Files 1
+## 5421 34362 Logic 1
+## 5422 34362 Functions 1
+## 5423 34362 Logic 1
+## 5424 34362 Logic 1
+## 5425 34362 Workspace and Files 1
+## 5426 34362 Workspace and Files 3
+## 5427 34362 Workspace and Files 1
+## 5428 34362 Workspace and Files 1
+## 5429 34362 Workspace and Files 2
+## 5430 34362 Workspace and Files 1
+## 5431 34362 Workspace and Files 1
+## 5432 34362 Workspace and Files 1
+## 5433 34362 Workspace and Files 1
+## 5434 34362 Workspace and Files 2
+## 5435 34362 Workspace and Files 1
+## 5436 34362 Workspace and Files 1
+## 5437 34362 Workspace and Files 1
+## 5438 34362 Workspace and Files 1
+## 5439 34362 Functions 7
+## 5440 34362 Functions 8
+## 5441 34362 Functions 1
+## 5442 34362 Functions 2
+## 5443 34362 Functions 1
+## 5444 34362 Functions 1
+## 5445 34362 Functions 2
+## 5446 34362 Functions 3
+## 5447 34362 Functions 4
+## 5448 34362 Workspace and Files 1
+## 5449 34362 Workspace and Files 1
+## 5450 34362 Dates and Times 1
+## 5451 34362 Dates and Times 1
+## 5452 34362 Dates and Times 1
+## 5453 34362 Dates and Times 1
+## 5454 34362 Dates and Times 1
+## 5455 34362 Dates and Times 2
+## 5456 34362 Dates and Times 1
+## 5457 34362 Dates and Times 1
+## 5458 34362 Dates and Times 1
+## 5459 34362 Dates and Times 1
+## 5460 34362 Dates and Times 1
+## 5461 34362 Dates and Times 1
+## 5462 34362 Dates and Times 1
+## 5463 34362 Functions 1
+## 5464 34362 Functions 1
+## 5465 34362 Functions 2
+## 5466 34362 Functions 1
+## 5467 34362 Functions 1
+## 5468 34362 Functions 1
+## 5469 34362 Functions 1
+## 5470 34362 Functions 1
+## 5471 34362 Functions 1
+## 5472 34362 Functions 1
+## 5473 34362 Functions 1
+## 5474 34362 Functions 2
+## 5475 34362 Functions 3
+## 5476 34362 Functions 4
+## 5477 34362 Functions 5
+## 5478 34362 Functions 6
+## 5479 34362 Logic 1
+## 5480 34362 Logic 1
+## 5481 34362 Logic 1
+## 5482 34362 Logic 1
+## 5483 34362 Logic 1
+## 5484 34362 Logic 1
+## 5485 34362 Subsetting Vectors 1
+## 5486 34362 Subsetting Vectors 1
+## 5487 34362 Subsetting Vectors 1
+## 5488 34362 Subsetting Vectors 2
+## 5489 34362 Subsetting Vectors 1
+## 5490 34362 Subsetting Vectors 1
+## 5491 34362 Subsetting Vectors 1
+## 5492 34362 Logic 1
+## 5493 34362 Logic 1
+## 5494 34362 Logic 1
+## 5495 34362 Logic 1
+## 5496 34362 Logic 1
+## 5497 34362 Logic 2
+## 5498 34362 Logic 1
+## 5499 34362 Logic 1
+## 5500 34362 Logic 1
+## 5501 34362 Logic 1
+## 5502 34362 Missing Values 1
+## 5503 34362 Missing Values 1
+## 5504 34362 Missing Values 1
+## 5505 34362 Missing Values 1
+## 5506 34362 Missing Values 1
+## 5507 34362 Subsetting Vectors 1
+## 5508 34362 Subsetting Vectors 1
+## 5509 34362 Subsetting Vectors 1
+## 5510 34362 Subsetting Vectors 1
+## 5511 34362 Subsetting Vectors 1
+## 5512 34362 Subsetting Vectors 1
+## 5513 34362 Subsetting Vectors 1
+## 5514 34362 Subsetting Vectors 1
+## 5515 34362 Subsetting Vectors 1
+## 5516 34362 Subsetting Vectors 1
+## 5517 34362 Subsetting Vectors 1
+## 5518 34362 Subsetting Vectors 2
+## 5519 34362 Subsetting Vectors 3
+## 5520 34362 Subsetting Vectors 4
+## 5521 34362 Subsetting Vectors 1
+## 5522 34362 Subsetting Vectors 1
+## 5523 34362 Subsetting Vectors 2
+## 5524 34362 Subsetting Vectors 1
+## 5525 34362 Vectors 1
+## 5526 34362 Vectors 2
+## 5527 34362 Vectors 3
+## 5528 34362 Vectors 4
+## 5529 34362 Vectors 1
+## 5530 34362 Vectors 1
+## 5531 34362 Vectors 1
+## 5532 34362 Subsetting Vectors 1
+## 5533 34362 Subsetting Vectors 2
+## 5534 34362 Subsetting Vectors 1
+## 5535 34362 Subsetting Vectors 1
+## 5536 34362 Subsetting Vectors 2
+## 5537 34362 Subsetting Vectors 1
+## 5538 34362 Subsetting Vectors 1
+## 5539 34362 Subsetting Vectors 1
+## 5540 34362 Subsetting Vectors 1
+## 5541 34362 Logic 1
+## 5542 34362 Logic 1
+## 5543 34362 Logic 2
+## 5544 34362 Logic 1
+## 5545 34362 Logic 1
+## 5546 34362 Logic 1
+## 5547 34362 Logic 1
+## 5548 34362 Logic 1
+## 5549 34362 Logic 1
+## 5550 34362 Logic 1
+## 5551 34362 Logic 2
+## 5552 34362 Logic 3
+## 5553 34362 Logic 1
+## 5554 34362 Logic 1
+## 5555 34362 Logic 1
+## 5556 34362 Logic 1
+## 5557 34362 Logic 1
+## 5558 34362 Logic 1
+## 5559 34362 Logic 1
+## 5560 34362 Vectors 2
+## 5561 34362 Vectors 3
+## 5562 34362 Vectors 4
+## 5563 34362 Vectors 1
+## 5564 34362 Vectors 2
+## 5565 34362 Dates and Times 1
+## 5566 34362 Dates and Times 1
+## 5567 34362 Dates and Times 1
+## 5568 34362 Dates and Times 1
+## 5569 34362 Dates and Times 1
+## 5570 34362 Dates and Times 1
+## 5571 34362 Dates and Times 2
+## 5572 34362 Vectors 1
+## 5573 34362 Missing Values 1
+## 5574 34362 Missing Values 1
+## 5575 34362 Missing Values 1
+## 5576 34362 Missing Values 1
+## 5577 34362 Missing Values 1
+## 5578 34362 Missing Values 1
+## 5579 34362 Missing Values 1
+## 5580 34362 Missing Values 1
+## 5581 34362 Missing Values 1
+## 5582 34362 Missing Values 1
+## 5583 34362 Workspace and Files 1
+## 5584 34362 Vectors 1
+## 5585 34362 Vectors 1
+## 5586 34362 Vectors 1
+## 5587 34362 Vectors 1
+## 5588 34362 Vectors 1
+## 5589 34362 Vectors 1
+## 5590 34362 Vectors 1
+## 5591 34362 Vectors 1
+## 5592 34362 Vectors 1
+## 5593 34362 Vectors 2
+## 5594 34362 Vectors 1
+## 5595 34362 Vectors 1
+## 5596 34362 Vectors 1
+## 5597 34362 Vectors 2
+## 5598 34362 Vectors 1
+## 5599 34362 Vectors 1
+## 5600 34362 Workspace and Files 1
+## 5601 34362 Workspace and Files 1
+## 5602 34362 Workspace and Files 1
+## 5603 34362 Workspace and Files 1
+## 5604 34362 Workspace and Files 2
+## 5605 34362 Basic Building Blocks 1
+## 5606 34362 Basic Building Blocks 1
+## 5607 34362 Basic Building Blocks 1
+## 5608 34362 Basic Building Blocks 1
+## 5609 34362 Basic Building Blocks 1
+## 5610 34362 Basic Building Blocks 1
+## 5611 34362 Basic Building Blocks 1
+## 5612 34362 Dates and Times 1
+## 5613 34362 Dates and Times 2
+## 5614 34362 Functions 3
+## 5615 34362 Functions 4
+## 5616 34362 Functions 1
+## 5617 34362 Functions 2
+## 5618 34362 Functions 1
+## 5619 34362 Functions 1
+## 5620 34362 Functions 2
+## 5621 34362 Functions 1
+## 5622 34362 Functions 1
+## 5623 34362 Functions 2
+## 5624 34362 Workspace and Files 1
+## 5625 34362 Workspace and Files 1
+## 5626 34362 Workspace and Files 1
+## 5627 34362 Workspace and Files 1
+## 5628 34362 Workspace and Files 1
+## 5629 34362 Workspace and Files 2
+## 5630 34362 Workspace and Files 1
+## 5631 34362 Workspace and Files 2
+## 5632 34362 Workspace and Files 1
+## 5633 34362 Workspace and Files 1
+## 5634 34362 Workspace and Files 1
+## 5635 34362 Workspace and Files 1
+## 5636 34362 Workspace and Files 1
+## 5637 34362 Workspace and Files 1
+## 5638 34362 Workspace and Files 1
+## 5639 34362 Workspace and Files 2
+## 5640 34362 Basic Building Blocks 1
+## 5641 34362 Basic Building Blocks 1
+## 5642 34362 Basic Building Blocks 1
+## 5643 34362 Basic Building Blocks 1
+## 5644 34362 Basic Building Blocks 1
+## 5645 34362 Basic Building Blocks 1
+## 5646 34362 Workspace and Files 1
+## 5647 34362 Workspace and Files 1
+## 5648 34362 Workspace and Files 1
+## 5649 34362 Workspace and Files 2
+## 5650 34362 Workspace and Files 1
+## 5651 34362 Workspace and Files 2
+## 5652 34362 Basic Building Blocks 1
+## 5653 34362 Functions 1
+## 5654 34362 Dates and Times 1
+## 5655 34362 Dates and Times 1
+## 5656 34362 Basic Building Blocks 1
+## 5657 34362 Basic Building Blocks 1
+## 5658 34362 Dates and Times 1
+## 5659 34362 Basic Building Blocks 1
+## 5660 34362 Basic Building Blocks 1
+## 5661 34362 Basic Building Blocks 1
+## 5662 34362 Basic Building Blocks 1
+## 5663 34362 Basic Building Blocks 1
+## 5664 34362 Functions 3
+## 5665 34362 Functions 4
+## 5666 34362 Workspace and Files 1
+## 5667 34362 Workspace and Files 1
+## 5668 34362 Workspace and Files 1
+## 5669 34362 Dates and Times 2
+## 5670 34362 Dates and Times 1
+## 5671 34362 Workspace and Files 1
+## 5672 34362 Dates and Times 1
+## 5673 34362 Dates and Times 1
+## 5674 34362 Dates and Times 1
+## 5675 34362 Dates and Times 1
+## 5676 34362 Dates and Times 1
+## 5677 34362 Dates and Times 1
+## 5678 34362 Basic Building Blocks 1
+## 5679 34362 Logic 1
+## 5680 34362 Workspace and Files 1
+## 5681 34362 Workspace and Files 1
+## 5682 34362 Functions 2
+## 5683 34362 Workspace and Files 1
+## 5684 34362 Functions 2
+## 5685 34362 Functions 2
+## 5686 34362 Functions 3
+## 5687 34362 Functions 4
+## 5688 34362 Functions 5
+## 5689 34362 Functions 1
+## 5690 34362 Functions 1
+## 5691 34362 Functions 1
+## 5692 34362 Functions 1
+## 5693 34362 Basic Building Blocks 1
+## 5694 34362 Functions 1
+## 5695 34362 Workspace and Files 1
+## 5696 34362 Functions 1
+## 5697 34362 Functions 1
+## 5698 34362 Functions 1
+## 5699 34362 Functions 1
+## 5700 35235 Basic Building Blocks 1
+## 5701 35235 Basic Building Blocks 1
+## 5702 35235 Basic Building Blocks 1
+## 5703 35235 Basic Building Blocks 1
+## 5704 35235 Basic Building Blocks 1
+## 5705 35235 Basic Building Blocks 1
+## 5706 35235 Basic Building Blocks 1
+## 5707 35235 Basic Building Blocks 1
+## 5708 35235 Basic Building Blocks 2
+## 5709 35235 Basic Building Blocks 1
+## 5710 35235 Basic Building Blocks 1
+## 5711 35235 Basic Building Blocks 1
+## 5712 35235 Basic Building Blocks 1
+## 5713 35235 Basic Building Blocks 1
+## 5714 35235 Basic Building Blocks 1
+## 5715 35235 Basic Building Blocks 1
+## 5716 35235 Basic Building Blocks 1
+## 5717 35235 Basic Building Blocks 1
+## 5718 35235 Basic Building Blocks 1
+## 5719 35235 Basic Building Blocks 2
+## 5720 35235 Basic Building Blocks 1
+## 5721 35235 Basic Building Blocks 1
+## 5722 35235 Basic Building Blocks 2
+## 5723 35235 Basic Building Blocks 1
+## 5724 35235 Basic Building Blocks 1
+## 5725 35235 Basic Building Blocks 1
+group_by function to create a data frame that sums all the attempts for each hash by each lesson_name called DF3library(dplyr)
+DF3 <- DF2 %>% group_by(hash, lesson_name) %>% summarise(sum = sum(attempt))
+## `summarise()` regrouping output by 'hash' (override with `.groups` argument)
+DF3
+## # A tibble: 226 x 3
+## # Groups: hash [41]
+## hash lesson_name sum
+## <int> <chr> <int>
+## 1 2864 Basic Building Blocks 29
+## 2 4807 Basic Building Blocks 49
+## 3 4807 Dates and Times 51
+## 4 4807 Logic 116
+## 5 4807 Matrices and Data Frames 43
+## 6 4807 Missing Values 19
+## 7 4807 Subsetting Vectors 35
+## 8 4807 Vectors 35
+## 9 4807 Workspace and Files 39
+## 10 6487 Basic Building Blocks 25
+## # … with 216 more rows
+On a scrap piece of paper draw what you think DF3 would look like if all the lesson names were column names
Convert DF3 to this format
library(tidyr)
+script <- spread(DF3, lesson_name, sum, fill = NA, convert = FALSE)
+## Warning: The `x` argument of `as_tibble.matrix()` must have unique column names if `.name_repair` is omitted as of tibble 2.0.0.
+## Using compatibility `.name_repair`.
+## This warning is displayed once every 8 hours.
+## Call `lifecycle::last_warnings()` to see where this warning was generated.
+DF1 called DF4 that only includes the variables hash, lesson_name and correctlibrary(dplyr)
+DF4 <- select(DF1, hash, lesson_name, correct)
+correct variable so that TRUE is coded as the number 1 and FALSE is coded as 0DF4$correct <- ifelse(DF4$correct == "FALSE", 0, 1)
+DF5 that provides a mean score for each student on each courselibrary(dplyr)
+course_name <- DF1[,1]
+DF5 <- bind_cols(DF4, course_name)
+## New names:
+## * NA -> ...4
+DF5 %>% group_by(hash, ...4) %>% summarise(mean = mean(correct))
+## `summarise()` regrouping output by 'hash' (override with `.groups` argument)
+## # A tibble: 66 x 3
+## # Groups: hash [41]
+## hash ...4 mean
+## <int> <chr> <dbl>
+## 1 2864 R Programming NA
+## 2 4807 R Programming NA
+## 3 6487 R Programming NA
+## 4 8766 R Programming NA
+## 5 11801 Getting and Cleaning Data NA
+## 6 11801 R Pro NA
+## 7 11801 R Programming NA
+## 8 12264 Getting and Cleaning Data NA
+## 9 12264 R Programming NA
+## 10 14748 R Programming NA
+## # … with 56 more rows
+datetime variable into month-day-year format and create a new data frame (DF6) that shows the average correct for each dayFinally use the knitr function to generate an html document from your work. Commit, Push and Pull Request your work back to the main branch of the repository. Make sure you include both the .Rmd file and the .html file.
+