-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathP13.R
37 lines (29 loc) · 1.22 KB
/
P13.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# making table data sets
library(dplyr)
library(tidyr)
library(MorpheusData)
#############benchmark 1
dat <- read.table(text=
"id type transactions amount
20 income 20 100
20 expense 25 95
30 income 50 300
30 expense 45 250
", header=T)
write.csv(dat, "data-raw/p13_input1.csv", row.names=FALSE)
df_out = dat %>% gather(var, val, transactions:amount) %>%
unite(var2, type, var) %>%
spread(var2, val)
write.csv(df_out, "data-raw/p13_output1.csv", row.names=FALSE)
p13_output1 <- read.csv("data-raw/p13_output1.csv", check.names = FALSE)
fctr.cols <- sapply(p13_output1, is.factor)
int.cols <- sapply(p13_output1, is.integer)
p13_output1[, fctr.cols] <- sapply(p13_output1[, fctr.cols], as.character)
p13_output1[, int.cols] <- sapply(p13_output1[, int.cols], as.numeric)
save(p13_output1, file = "data/p13_output1.rdata")
p13_input1 <- read.csv("data-raw/p13_input1.csv", check.names = FALSE)
fctr.cols <- sapply(p13_input1, is.factor)
int.cols <- sapply(p13_input1, is.integer)
p13_input1[, fctr.cols] <- sapply(p13_input1[, fctr.cols], as.character)
p13_input1[, int.cols] <- sapply(p13_input1[, int.cols], as.numeric)
save(p13_input1, file = "data/p13_input1.rdata")