-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.Rhistory
55 lines (55 loc) · 1.84 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
library(tidyverse)
library(readr)
files <- list.files(path = './data', pattern = '*.csv', full.names = T)
dados1 <- read_csv2(files[1], locale=locale(encoding="latin1"))
dados2 <- read_csv2(files[2], locale=locale(encoding="latin1"))
dados3 <- read_csv2(files[3], locale=locale(encoding="latin1"))
falta <- names(dados2)[!names(dados2) %in% names(dados1)]
table(dados1$Opção_escolhida)
hist(dados1$`Tempo_Av-TAV`, 50)
d = dados1 %>%
select(Opção_escolhida, SbjNum) %>%
mutate(ind = 1) %>%
group_by(SbjNum, Opção_escolhida) %>%
summarise(FREQ = n())
prop.table(table(d$FREQ))
names(dados1)
mudou_ideia <- unlist(unique(d[d$FREQ==1,'SbjNum']))
dados1 <- dados1 %>%
# select(`R$ Av-TAV`) %>%
mutate(dif_av_tav = as.numeric(gsub(',00','', gsub("R\\$ ","",`R$ Av-TAV`))))
library(ggplot2)
g <- ggplot(dados1, aes(x=`Tempo_Av-TAV`, y=dif_av_tav, color=Opção_escolhida)) +
geom_point() +
geom_line(aes(group = SbjNum))
g
dados1 %>%
filter(SbjNum %in% mudou_ideia) %>%
ggplot( aes(x=`Tempo_Av-TAV`, y=dif_av_tav, color=Opção_escolhida)) +
geom_point(size=2) +
geom_line(aes(group = SbjNum))
g <- ggplot(dados1, aes(x=`Tempo_Av-TAV`, y=dif_av_tav, color=Opção_escolhida)) +
geom_point() +
# geom_line(aes(group = SbjNum))
g
dados1 %>%
filter(SbjNum %in% mudou_ideia) %>%
ggplot( aes(x=`Tempo_Av-TAV`, y=dif_av_tav, color=Opção_escolhida)) +
geom_point(size=2) +
geom_line(aes(group = SbjNum))
g <- ggplot(dados1, aes(x=`Tempo_Av-TAV`, y=dif_av_tav, color=Opção_escolhida)) +
geom_point()
# geom_line(aes(group = SbjNum))
g
g <- ggplot(dados1, aes(x=`Tempo_Av-TAV`, y=dif_av_tav, color=Opção_escolhida)) +
geom_point(size=4)
# geom_line(aes(group = SbjNum))
g
dados1 %>%
filter(SbjNum %in% mudou_ideia) %>%
ggplot( aes(x=`Tempo_Av-TAV`, y=dif_av_tav, color=Opção_escolhida)) +
geom_point(size=2) +
geom_line(aes(group = SbjNum))
mudou_ideia
length(mudou_ideia)/5802
mudou_ideia