-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Rhistory
95 lines (95 loc) · 2.87 KB
/
.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
library(tidyverse)
library(forcats)
overtime.df <- read.csv(file = "Three_Weeks_OT.csv",header = TRUE, na.strings=c("", "NA"),sep = ",")
as_tibble(overtime.df)
View(overtime.df)
rename(overtime.df, Date = ï..Date)
View(overtime.df)
View(overtime.df)
rename(overtime.df, Date = ï..Date)
View(overtime.df)
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read.csv(file = "Three_Weeks_OT.csv",header = TRUE, na.strings=c("", "NA"),sep = ",")
as_tibble(overtime.df)
rename(overtime.df, Date = ï..Date)
View(overtime.df)
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read.csv(file = "Three_Weeks_OT.csv",header = TRUE, na.strings=c("", "NA"),sep = ",")
as_tibble(overtime.df)
rename(overtime.df, Date = ï..Date)
View(overtime.df)
as_tibble(overtime.df)
rename(overtime.df, Date = ï..Date)
mean(overtime.df$Overtime.Shifts)
?mean
mean(overtime.df$Overtime.Shifts, na.rm = TRUE)
knitr::kable(overtime.df,
caption = "Table with kable")
sum(overtime.df$Overtime.Shifts)
?add_count
?sum
?read_csv
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv",header = TRUE, na.strings=c("", "NA"),sep = ",")
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv")
rename(overtime.df, Date = ï..Date)
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv")
knitr::kable(overtime.df,
caption = "Table with kable")
View(overtime.df)
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv")
knitr::kable(overtime.df,
caption = "Table with kable")
View(overtime.df)
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv")
overtime.df <- na.omit(overtime.df)
knitr::kable(overtime.df,
caption = "Table with kable")
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv")
overtime.df <- na.omit(overtime.df)
knitr::kable(overtime.df,
caption = "Table with kable")
library(tidyverse)
library(forcats)
## Read in data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv")
overtime.df <- na.omit(overtime.df)
knitr::kable(overtime.df,
caption = "Table with kable")
library(tidyverse)
Threeweekcalls.df <- read_csv(file = "Threeweeks.csv")
View(Threeweekcalls.df)
Threeweekma.df <- read_csv(file = "THREEWEEKSMA.csv")
unique(Threeweekma.df$ma_dept_desc)
knitr::kable(Threeweekcalls.df,
caption = "SBFD Calls, 7/11/2022 thru 7/30/2022")
library(tidyverse)
library(forcats)
## Read in Overtime data ##
overtime.df <- read_csv(file = "Three_Weeks_OT.csv")
overtime.df <- na.omit(overtime.df)
## Read in run data 7/11/2022 thru 7/30/2022 ##
Threeweekcalls.df <- read_csv(file = "Threeweeks.csv")
## Read in mutual aid responses for same time period ##
Threeweekma.df <- read_csv(file = "THREEWEEKSMA.csv")