-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.Rhistory
44 lines (44 loc) · 820 Bytes
/
.Rhistory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
mtcars
head(mtcars)
# Chunk 1: setup
library(knitr)
opts_chunk$set(echo=TRUE, warning=FALSE, message=FALSE)
internet <- TRUE
if(internet) {
huron.url <- "https://github.com/JVAdams/vizzy/raw/master/Huron0610.RData"
load(url(huron.url))
} else {
huron <- "C:/JVA/GitHub/vizzy/Huron0610.RData"
load(huron)
}
ls()
optrcat
optrop
head(optrop)
optrcat
head(optrcat)
library(nycflights13)
install.packages("nycflights13")
library(nycflights13)
flights
head(flights)
flights
?filter
?tidyverse::filter
filter
library(tidyverse
)
?filter
names(flights)
flight
flights
View(flights)
filter(flights, month == 1, day == 1)
filter(flights, month == 11 | month == 12)
filter(flights, dep_time<3)
filter(flights, dep_time<300)
hist(flights$dep_delay)
1400/60
names(flights)
select(flights, year, month, day, Airline=carrier)
?flights