-
Notifications
You must be signed in to change notification settings - Fork 0
/
COMPILACAO.Rmd
2102 lines (1758 loc) · 84.8 KB
/
COMPILACAO.Rmd
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: Rosix R Notebook
author: R Félix
date: _February 9, 2020_
output:
html_document:
highlight: textmate
number_sections: yes
toc: yes
toc_depth: 4
toc_float: true
keep_md: true
bibliography: refs.bib
csl: apa.csl
link-citations: yes
#runtime: shiny
---
```{css,echo=FALSE}
button.btn.collapsed:before
{
content:'+' ;
display:block;
width:15px;
}
button.btn:before
{
content:'-' ;
display:block;
width:15px;
}
```
```{r definicao dos colapse expand,echo=FALSE,results='hide'}
knitr::knit_hooks$set(drop1=function(before, options, envir) {
if (before) {
paste(
'<p>',
'<button class="btn btn-primary collapsed" data-toggle="collapse" data-target="#ce1">',
'</button>',
'</p>',
'<div class="collapse" id="ce1">',
'<div class="card card-body">', sep = "\n")
} else {
paste("</div>", "</div>", sep = "\n")
}
})
knitr::knit_hooks$set(drop2=function(before, options, envir) {
if (before) {
paste(
'<p>',
'<button class="btn btn-primary collapsed" data-toggle="collapse" data-target="#ce2">',
'</button>',
'</p>',
'<div class="collapse" id="ce2">',
'<div class="card card-body">', sep = "\n")
} else {
paste("</div>", "</div>", sep = "\n")
}
})
knitr::knit_hooks$set(drop3=function(before, options, envir) {
if (before) {
paste(
'<p>',
'<button class="btn btn-primary collapsed" data-toggle="collapse" data-target="#ce3">',
'</button>',
'</p>',
'<div class="collapse" id="ce3">',
'<div class="card card-body">', sep = "\n")
} else {
paste("</div>", "</div>", sep = "\n")
}
})
knitr::knit_hooks$set(drop4=function(before, options, envir) {
if (before) {
paste(
'<p>',
'<button class="btn btn-primary collapsed" data-toggle="collapse" data-target="#ce4">',
'</button>',
'</p>',
'<div class="collapse" id="ce4">',
'<div class="card card-body">', sep = "\n")
} else {
paste("</div>", "</div>", sep = "\n")
}
})
load(".RData")
```
```{r figures store, echo = FALSE}
knitr::opts_chunk$set(
fig.path = "README_figs/README-"
)
#, results="asis"
```
```{r summary tools css, echo=FALSE, results='hide'}
suppressPackageStartupMessages(library(summarytools))
st_css()
```
```{r summary tools settings, echo = FALSE, results='hide'}
st_options(bootstrap.css = FALSE, # Already part of the theme so no need for it
plain.ascii = FALSE, # One of the essential settings
style = "rmarkdown", # Idem.
dfSummary.silent = TRUE, # Suppresses messages about temporary files
footnote = NA, # Keeping the results minimalistic
subtitle.emphasis = FALSE) # For the vignette theme, this gives
# much better results. Your mileage may vary.
```
## Sobre
Este é um bloco de notas virtuais para mim mesma, que usa o [R](https://www.r-project.org/), o [R Studio](https://www.rstudio.com/) e o [R Markdown](http://rmarkdown.rstudio.com).
É um trabalho em actualização constante, onde procuro adicionar chunks de código, em linguagem R, para que possa voltar a usar no futuro sem pesquisar muito.
Aqui pretendo dividir em capítulos, tais como:
1. Scripts básicos de R, tais como libraries, importar tabelas, apagar linhas, ler colunas, mudar nomes de variáveis, gravar outputs
2. Estatísticas simples
3. Plotagem de gáficos
4. Modelação
5. Operações geoespaciais
6. Matrizes OD
7. Rotinas e funções
__VER [CHEATSHEET do Markdown](https://github.com/rstudio/cheatsheets/raw/master/rmarkdown-2.0.pdf) para melhores resultados__
Há várias formas de chegar ao mesmo resultado. Aqui apresento as que tenho usado, não necessariamente eficientes :D
#Scripts básicos
##Importar packages
Devem ser importados no início
```{r library, eval=F}
#ler e importar tabelas
library(readr) #base do R
library(readxl) #excel
library(lessR) #simplificar código
#manipular tabelas
library(tidyverse)
library(reshape2)
library(dplyr)
library(tidyr) #obsoleto
library(purrr)
library(tibble)
#fazer gráficos
library(ggplot2)
library(ggthemes)
library(ggmap)
library(rgeos) #obsoleto
library(wesanderson)
library(RColorBrewer)
library(waffle)
library(JLutils) #para usar o stat_fill_labels
library(likert)
library(ggcorrplot)
library(gridExtra)
library(export) #para gravar plots em formato nativo MS office
#trabalhar com shapefiles ou operações espaciais
library(sf)
library(ggmap)
library(maptools)
library(shiny) #ficar mais bonito e interactivo
library(stplanr) #package for sustainable transport planning
library(openrouteservice)
library(gmapsdistance)#distância e tempos
library(googleway) #percursos
library(cyclestreets) #percursos e info detalhada em bici
#modelos, econometria, clusters, correlações
library(mclust)
library(Hmisc)
library(corrplot)
library(ggcorrplot)
library(mlogit) #para fazer modelos
library(haven) #para importar tabela do spss
library(lmtest) #para LLratio
library(pscl) #para pseudo-r2
library(ResourceSelection) #para Hosmer-Lemeshow test
library(mfx) #para efeitos marginais
library(ape) #para auto-correlações espaciais
#visualização de dados em tabelas limpas
library(stargazer) #contínuas
library(summarytools) #contínuas e categóricas
library(fastDummies) #criar variáveis dummy a partir de categóricas
```
```{r library downgrade, eval=F}
#instalar uma versão específica de um package - útil para donwgrade
require(devtools)
install_version("stplanr", version = "0.3.1", repos = "http://cran.us.r-project.org")
```
##Shortcuts
* Correr linha/seleccão - `crtl`+`enter`
* Setinha `<-` - `crtl`+`alt`+`-`
* Pipes `%>%` - `crtl`+`shift`+`m`
* Inserir chunks - `crtl`+`alt`+`i`
* Knit - `crtl`+`shift`+`k`
* Restart R - `crtl`+`shift`+`F10`
* Quit R - `crtl`+`q`
> _Pode não funcionar em Mac_
##Definição do ambiente de trabalho
Isto permite que não se tenha de estar sempre a escrever o caminho completo do ficheiro a abrir ou a guardar (outputs).
Definir no início da sessão.
```{r set workspace, eval=F}
setwd("D:/GIS/Rosix")
```
ou `crtl`+`shift`+`h`
##Importar tabelas
```{r import tables, eval=F}
#importar tabela em formato nativo R
readRDS(TABELA, "D:/R/Tabela.Rds")
#ler e importar tabela em txt, separada por tabulação
UtilizadoresLX_CPcorrecto <- read_delim("UtilizadoresLX_CPcorrecto.txt",
"\t", escape_double = FALSE, trim_ws = TRUE)
#ler e importar tabelas excel
TABELA <- read_excel("D:/rosa/Dropbox/MIT/EMEL Gira/Dados/exemplo dados_Julho 2018.xlsx",
sheet = "Folha1")
#abrir a tabela
View(UtilizadoresALL)
#cruzar tabelas R com uma tabela editável em excel, fazendo match ao ID/code - dá jeito para traduções
COldBarriersTrad <- read_excel("D:/rosa/Dropbox/MIT/Inquerito Lisboa/Traducoes/TraductionsList.xlsx",
sheet = "COldBarriersTrad")
MCBARRIERSERA$ENshort <- COldBarriersTrad$ENshort[match(MCBARRIERSERA$names,COldBarriersTrad$Code)]
```
ler todos os ficheiros dentro de uma pasta e juntá-los todos num só, por determinado padrão do nome
```{r script abrir todos, eval=F}
directories <- list.dirs("D:\\rosa\\Dropbox\\MIT\\Inquerito Lisboa\\GIS")
files <- lapply(directories, list.files, pattern="ODlines_BikeFastest.txt", full.names = TRUE)
files <- lapply(files, sort)
lisbon<-st_read(files[[1]][[1]]) #só checkar se está ok
for ( i in 2:length(files)){
lisbon1<-st_read(files[[1]][[i]])
lisbon<-rbind(lisbon,lisbon1)
}
rm(lisbon1)
write.table(lisbon,"D:\\rosa\\Dropbox\\MIT\\Inquerito Lisboa\\GIS\\missing_ODlines_BikeFastest.txt", row.names = F , sep = "\t")
rm(files)
```
##Chamar tabelas
Uma tabela tem sempre linhas e colunas.
- Para chamar a tabela, deve-se referir ao nome dela ```TABELA```
- Para chamar um valor da tabela, segundo a linha X e coluna Y
`TABELA[X,Y] `
- Para referir a uma variável `TABELA$Y`
- Para referir a uma coluna dentro da tabela `TABELA[,c(2)]` , em que 2 é o índice dessa coluna
- Para referir a uma linha da tabela `TABELA[X,]`
- Para seleccionar coindicionalmente umas linhas da tabela
- ` TABELA[TABELA$Idade>18,]` maior
- ` TABELA[TABELA$Idade<18,]` menor
- ` TABELA[TABELA$Idade>=18,]` maior ou igual
- ` TABELA[TABELA$Idade>=18,]` menor ou igual
- ` TABELA[TABELA$Idade==18,]` igual
- ` TABELA[TABELA$Idade!=18,]` diferente de
- ` TABELA[is.na(TABELA$Idade),]` só os casos vazios (NA)
- ` TABELA[!is.na(TABELA$Idade),]` exclui os casos vazios (NA)
- Para seleccionar coindicionalmente umas linhas da tabela, com mais do que uma condição na seleção das linhas
` TABELA[TABELA$Idade>18 | TABELA$Idade<=65 ,]` OU
- Para seleccionar coindicionalmente umas linhas da tabela, com mais do que uma condição na seleção das linhas
` TABELA[TABELA$Idade>18 & TABELA$Genero=="Feminino",]` E
- Para seleccionar coindicionalmente umas linhas da tabela, com mais do que uma condição na seleção das linhas e colunas
` TABELA[TABELA$Idade>18 & TABELA$Genero=="Feminino", c(1:3)]` colunas 1 a 3
- Para mudar uma coluna com a condição de uma linha
`RULEBASE$B3types[RULEBASE$Fluxo12mes=="2"] <-"Non-Cyclists"`
`CANDNC$Children_Class[CANDNC$ChildrenYAge<4] <- 10`
No caso de números, é directo. No caso de variáveis tipo string > meter sempre entre aspas.
>_Nunca, mas nunca, esquecer de meter a vírgula dentro dos [,] depois de chamar uma tabela_
##Ler e alterar colunas
```{r basics, eval=F}
#listar todas as colunas da tabela
colnames(TABELA)
#descrição do tipo de tabela
class(TABELA)
#descrição do tipo de variáveis
str(TABELA$var)
str(TABELA) #para todas as variáveis incluídas
#mudar nomes das variáveis
names(TABELA)<- c("Cyclists", "Non-Cyclists", "Quitters")
#Mudar o nome de uma das variáveis
colnames(TABELA)[colnames(TABELA)=="Antigo"] <- "Novo"
colnames(TABELA)[which(names(TABELA) == "Antigo")] <- "Novo"
names(TABELA)[1]<-"Novo" #mudar o nome da primeira coluna
#Criar uma tabela separada, condicionando uma variável
TABELAnova<-TABELA[TABELA$TYPE=="1",]
#Criar uma tabela separada, que contem apenas umas colunas
TABELAnova<-TABELA[,c(3:5,8)] #neste caso as colunas 3,4,5,8
#Criar uma tabela separada condicionando uma variável e com apenas algumas colunas
TABELAnova<-TABELA[TABELA$TYPE=="1",c(3:5,8)]
#reordenar colunas
TABELA <-TABELA[c(4,2,3,1)]
#Criar nova variável, por preencher !!é capaz de dar erro à primeira, mas insistir
NEWPMOT$Nothing <- NA
#Criar nova variável, com determinado valor
NEWPMOT$Valor <- 5
NEWPMOT$Valorr <- NEWPMOT$Valor + NEWPMOT$Nothing
#Remover determinada coluna
TABELA<-TABELA[,-c(6)] #remover coluna 6
TABELA<-TABELA[is.na(TABELA$Modo0), -c(2,3,8:15)] #remover várias colunas segundo uma condição
#Extrair uma parte da tabela
SubClustNC <-subset(SubNC, select=c(240,241))
#ver também filtros abaixo...
#reordenar linhas, por variável
TABELA <- TABELA[order(TABELA$ID_viagem),]
TABELA <- TABELA[order(TABELA$Zona, TABELA$ID_viagem),] #por mais de uma variável
TABELA <- TABELA[order(TABELA$Zona, -TABELA$ID_viagem),] #por mais de uma variável, com ordem decrescente na segunda
#reodenar linhas, usando dyplr
TABELA <- arrange(TABELA, var1) #ascendente
TABELA <- arrange(TABELA, desc(var1)) #descendente, por 1 variável
TABELA <- arrange(TABELA, desc(var1, var2)) #por mais que 1 variável
#adicionar um ID a cada linha, em ordem sequencial
TABELA$ID<-seq.int(nrow(TABELA))
#converter os nomes das linhas (rownames) em uma variável (coluna) com essa informação
TABELA$names <- row.names(TABELA)
#converter uma coluna em nomes das linhas - contrário do de cima
TABELA<-data.frame(TABELA, row.names = 1)
#juntar tabelas (linhas) com exactamente as mesmas colunas do mesmo tipo
NEWMOTIVATORS<-rbind(NEWOPMOT,NEWPMOT)
#juntar tabelas (colunas) com exactamente o mesmo número de linhas na mesma ordem
NEWMOTIVATORS<-cbind(NEWMOTIVATORS,FREQUENCIA)
#fazer um merge (original)
MCBARRIERS <-merge(MCBARRIERS.MEAN,MCBARRIERS.FREQ, by="ID")
MCBARRIERS <-merge(MCBARRIERS.MEAN,MCBARRIERS.FREQ, by="ID", all.x=T, all.y=F)
#fazer um merge por mais do que uma variável
MCBARRIERS <-merge(MCBARRIERS.MEAN,MCBARRIERS.FREQ, by=c("ID","Type"), all.x=T, all.y=F)
#fazer um merge usando o tydiverse
MCBARRIERS <-left_join(MCBARRIERSMEAN,MCBARRIERSFREQ) #assume as variáveis que têm o mesmo nome
MCBARRIERS <-left_join(MCBARRIERSMEAN,MCBARRIERSFREQ, by=c("nomeA"="nomeB")) #declarar as variáveis que quero que faça o mach, em ambas as tabelas
MCBARRIERS <-right_join(MCBARRIERSMEAN,MCBARRIERSFREQ)
#ficar com uma tabela com as linhas que não estão em ambas
CP7not<-anti_join(CP7CML, CP7, by = c("CP74" = "CP7")) #ver os que estavam na CML que ainda não tinhamos no nosso CP7
#remover linhas exactamente iguais (duplicados)
VIAGENS<-unique(VIAGENS)
VIAGENS<-distinct(VIAGENS) #usa o tidyverse. pode-de declarar à frente quais as variáveis a inspeccionar
#tabelar vector
MCTRIGGERS.MEAN <- data.frame(MCTRIGGERS.MEAN)
#tabelar e transpor um vector e juntar a uma tabela existente
MNBARRIERS.MEAN$FREQ <- t(data.frame(t(MNBARRIERS.FREQ)))
#encontrar e substituir um caracter
TABELA$AA <- str_replace_all(TABELA$AA, '_', '-')
#remover uma tabela do environment
rm(CBARRIERS)
rm(CBARRIERS,NMOTIVATORS) #mais do que uma
#omitir o nome da tabela, para referir simplesmente à variável
attach(TABELA)
detach(TABELA) #reverter
```
###Concatenate e seprate
```{r concatenate, eval=F, echo=TRUE}
#juntar variáveis numa só
TABELA$coordenadas<-paste("POINT(",TABELA$Longitude," ",TABELA$Latitude,")")
TABELA$gorila<-paste("go","ri","la", sep = "_") #go_ri_la
TABELA$gorila<-paste("go","ri","la", sep = "") #gorila
TABELA$gorila<-paste0("go","ri","la") #gorila
#separar variveis delimitadas por...
ALOJAMENTO<-separate(ALOJAMENTO, ID_aloj, into=c("IDa", "ID1"), sep="F1_", remove = F)
#separa a variável ID_aloj em duas (dar os nomes), segundo um padrão, remover a variável original por default
```
###Mudar o tipo de variável
```{r change variable, eval=F}
TABELA$IDADE<-as.numeric(TABELA$IDADE)
TABELA$IDADE<-as.character(TABELA$IDADE)
#Bonverter várias variáveis ao mesmo tempo
BioGeme[,c(7,9:13,24:28,33:35,38:40)] <- as.integer(unlist(BioGeme[,c(7,9:13,24:28,33:35,38:40)])) #binárias para inteiros - útil para biogeme
#Converter campo de data para sistema POSIX, extrair ano, mês, etc para colunas separadas
Taxis$DataSTi <-as.POSIXlt(Taxis$DataHora, format="%Y/%m/%d %H:%M:%S")
Taxis$Ano <- format(as.POSIXlt(Taxis$DataHora, format="%Y/%m/%d %H:%M:%S"),"%Y")
Taxis$Mes <- format(as.POSIXlt(Taxis$DataHora, format="%Y/%m/%d %H:%M:%S"),"%m")
Taxis$HoraMin <- format(as.POSIXlt(Taxis$DataHora, format="%Y/%m/%d %H:%M:%S"),"%H:%M")
#... e por aí fora
#Ficar só com a hora, sem os minutos - meter os minutos a zero (usando engenharia inversa)
Taxis$Data2016<-paste(Taxis$Ano,Taxis$Mes,Taxis$Dia,sep="-")
Taxis$Hora2016<-paste(Taxis$HoraMin,"00","00", sep=":") #se quiseres depois fazer por dia em vez de hora, é aqui que metes zeros
Taxis$DataHora2016<-paste(Taxis$Data2016,Taxis$Hora2016, sep = " ")
Taxis$DataHora2016<-as.POSIXct(Taxis$DataHora2016, format="%Y-%m-%d %H:%M:%S")
```
###Criar tabela com data sequencial, por dia ou hora
```{r list date, eval=F}
#Cria uma tabela com todas as horas do ano de 2016
Horas2016<-as.data.frame(seq.POSIXt(ISOdate(2016,1,1,0), ISOdate(2016,12,31,23), by="hour")) #é aqui que podes trocar por dia ou minuto
```
>__Dica:__ explorar o [_lubridate_](https://github.com/rstudio/cheatsheets/raw/master/lubridate.pdf)
##Pipes e filtros
Outra maneira de pegar apenas numa parte da tabela, é usando filtros (uma função do [dyplr](https://dplyr.tidyverse.org/))
```{r pipes, eval=F}
filter(TABELA, var1=="Autocarro")
filter(TABELA, var1!=var2) #selecciona os casos em que a var1 é diferente da var2
TABELA %>% filter(var1!=var2) #usando pipes, omite-se o primeiro argumento
```
Pode-se usar infinitos pipes, e escrever só numa linha o código, evitando também criar dataframes intermédios.
> cuidado com o summarise_at, pensar qual o o número do campo da tabela virtual criada.
##Group by, summarize e melt
Calcula as médias e freq, de uma variável
```{r group_by summarize, eval=F}
#média
groupmean<-group_by(MCBARRIERSERA,ERA)
summaryMEAN<-summarise_all(groupmean,"mean")
#freq
groupfreq<-group_by(CBARRIERSERA,ERA)
summaryFREQ<-summarise_all(groupfreq,"sum")
#outras operações, variável a variável
v<-group_by(v,ID0, ID1)
ODsViagesStatistics<-summarise(v, cont=n(), min(DuracaoMinutos), max(DuracaoMinutos), median(DuracaoMinutos), mean(DuracaoMinutos), sd(DuracaoMinutos))
ODsViagens<-group_by(VIAGENSredux, Tipo, ID0, ID1)
ODsViagens<-summarise(ODsViagens,sum(DistanciaM), n())
```
###Group by e summarize com pipes
```{r group_by pipes, eval=F}
VIAGENSamlGAMA <- VIAGENSaml %>% group_by(inter, gama) %>% summarise(viagens = sum(PESOFIN), count=n())
VIAGENSamlGAMAlisboa <- VIAGENSaml %>% filter(DTCC_or=="1106" | DTCC_de=="1106" ) %>% group_by(inter, gama) %>% summarise(viagens = sum(PESOFIN)) #filtrando apenas algumas
```
###Melt
Dissolve as colunas em várias linhas repetidas
```{r melt, eval=F}
MCBARRIERSERAmelt <- melt(MCBARRIERSERA, id.vars=c("names","MCBARRIERSERA.MEAN", "MCBARRIERSERA.FREQ"))
```
##Variáveis categóricas
###Factors e levels
```{r factors, eval=F}
#Criar factors e levels
TODOS$Gender<-factor(TODOS$Gender)
TODOS$Gender<-factor(TODOS$Gender, levels = c("Male", "Female", "Other")) #definir logo a ordem
#renomear - imagina que na tabela é 0,1,2
levels(TODOS$Gender)<- c("Male", "Female", "Other")
#ver quantos há de cada
table(TODOS$Gender)
table(TODOS$TYPE, TODOS$Gender) #tabela cruzada
#ver a percentagem de quantos há de cada
prop.table(table(TODOS$Gender))*100
#ver a percentagem arredondada de quantos há de cada
round(prop.table(table(TODOS$Gender))*100)
round(prop.table(table(CANDNC$WorkTrvDays_Class[CANDNC$TYPE==1]))*100)
#trocar a ordem (dá jeito para plots)
CYCclass$Childhood_No<- relevel(CYCclass$Childhood_No, "No") #o No vai passar a ser o primeiro level
#colocar apenas um level primeiro
TODOS$Gender <- relevel(TODOS$Gender, "Female")
#inverter a ordem dos factores
TODOS$Gender <- factor(TODOS$Gender, levels=rev(levels(TODOS$Gender)))
#ordenar factores - variáveis categóricas ordinais
TODOS$CHANGE_Class3 <- ordered(TODOS$CHANGE_Class3, levels = c("Pessimists", "Optimists", "Enthusiasts", "Cyclists"))
```
##Operações nas tabelas ou matrizes
```{r operations, eval=F}
#Somar colunas
CTRIGGERS$SomaPontos <- rowSums(CTRIGGERS[,c(146:193,196)])
#Somar colunas, removendo os NA
CANDNC$VehiclesOwnHouse_SUM <- rowSums(CANDNC[629:630],na.rm = TRUE)
#Vector só com as médias de uma tabela
MOTIVATORS.MEAN <- colMeans(NEWMOTIVATORS,na.rm = TRUE)
#Vector só com as médias de umas linhas
MCTRIGGERS.MEAN <- colMeans(MCTRIGGERS[1:49])
#Vector só com as somas de umas linhas
MCTRIGGERS.FREQ <- colSums(CTRIGGERS[c(1:48,194)])
#normalizar valores
COMP_TrMot$MCTRIGGERS.MEANcomp <- (COMP_TrMot$MCTRIGGERS.MEAN - min(COMP_TrMot$MCTRIGGERS.MEAN, na.rm=T)) / (max(COMP_TrMot$MCTRIGGERS.MEAN, na.rm=T) - min(COMP_TrMot$MCTRIGGERS.MEAN, na.rm=T))
#Normalizar valores, na escala de 0-100
MCTRIGGERS.MEAN$MCTRIGGERS.MEANscale <- 100*((MCTRIGGERS.MEAN$MCTRIGGERS.MEAN-min(MCTRIGGERS.MEAN$MCTRIGGERS.MEAN))/(max(MCTRIGGERS.MEAN$MCTRIGGERS.MEAN)-min(MCTRIGGERS.MEAN$MCTRIGGERS.MEAN)))
#substituir NAs por zeros, em toda a tabela
CBARRIERS[][is.na(CBARRIERS[])]<- 0
CBARRIERS[is.na(CBARRIERS)]<-0
is.na(CBARRIERS)<- 0 #?
#substituir NAs por zeros, em determinadas colunas
CTRIGGERS[, 1:48][is.na(CTRIGGERS[, 1:48])] <- 0
#remover linhas que têm pelo menos um NA
na.omit(TABELA)
#Dividir colunas por um valor de uma coluna
MCTRIGGERS <- CTRIGGERS[,c(146:193,196)]/CTRIGGERS$SomaPontos
```
##Gravar outputs
```{r gravar txt, eval=F}
#gravar tabela em ficheiro nativo R
saveRDS(TABELA, "Tabela.Rds")
#gravar tabela em txt, separado por tabulação
write.table(COMP_TrMot, "D:\\rosa\\Dropbox\\MIT\\Inquerito Lisboa\\Respostas\\R\\COMP_TrMot.txt", sep="\t")
write.table(COMP_TrMot, "D:/rosa/Dropbox/MIT/Inquerito Lisboa/Respostas/R/COMP_TrMot.txt", sep="\t")
write.table(COMP_TrMot, "COMP_TrMot.txt", sep="\t") #fica no workspace definido do projecto
#gravar tabela em txt, separado por tabulação, sem uma coluna com o nome da linha (rownames)
write.table(COMP_TrMot, "COMP_TrMot.txt", sep="\t", row.names = F)
#gravar tabela em txt, separado por tabulação, sem uma coluna com o nome da linha (rownames) e sem nomes das colunas (colnames)
write.table(MatrizOD,"MatrizOD.txt",sep="\t",row.names=FALSE, col.names =FALSE)
#gravar em tsv ou csv - separado por tabs ou vírgulas, e com um nome diferente da tabela e ficheiro
write_tsv(MCBARRIERSERA.JOINALL, "TRIGGERSeraAll.tsv")
write.csv(PERSONAL, "personal.csv")
```
#Estatísticas simples
```{r statistics, eval=F}
#média, quartis
summary(TODOS$IDADE)
```
##Chi quadrado
```{r Chi square test, eval=F}
chisq.test(table(CANDNC$TYPE, CANDNC$Gender))
```
##T-test
Comparar duas variáveis. É mesmo superior? Inferior? Igual?
```{r T test, eval=F}
#t.test(x, y = NULL, alternative = c("two.sided", "less", "greater"), mu = 0,
# paired = FALSE, var.equal = FALSE, conf.level = 0.95)
t.test(c2018$SumCiclistas, c2017$SumCiclistas, alternative = "greater", mu = 0,
paired = T, var.equal = FALSE, conf.level = 0.95) #paired - linha a linha
t.test(c2018$Mulher/c2018$SumCiclistas, c2017$Mulher/c2017$SumCiclistas, alternative = "greater", mu = 0,
paired = T, var.equal = FALSE, conf.level = 0.95)
t.test(c2018$CCapacete/c2018$SumCiclistas, c2017$CCapacete/c2017$SumCiclistas, alternative = "less", mu = 0,
paired = T, var.equal = FALSE, conf.level = 0.95)
```
##Correlações
```{r correlations, eval=F}
# Pearson
cor.test(MOTIVATORS$NMotivators_16, MOTIVATORS$NMotivators_50)
# Kendall's tau or Spearman's rho statistic is used to estimate a rank-based measure of association.
cor.test(COMP_TrMot$MCTRIGGERS.MEAN,COMP_TrMot$MOTIVATORS.MEAN, method="kendall", alternative = "g")
cor.test(COMP_TrMot$MCTRIGGERS.MEAN,COMP_TrMot$MOTIVATORS.MEAN, method="kendall", alternative = "two.sided")
cor.test(COMP_TrMot$MCTRIGGERS.MEAN,COMP_TrMot$MOTIVATORS.MEAN, method="spearm", alternative = "g")
cor.test(COMP_TrMot$MCTRIGGERS.MEAN,COMP_TrMot$MOTIVATORS.MEAN, method="spearm", alternative = "two.sided")
```
#Gráficos e plots
__VER [CHEATSHEET do ggplot](https://github.com/rstudio/cheatsheets/raw/master/data-visualization-2.1.pdf) __
##Temas, cores, definições
###Cores
```colors = c("#969696", "orange", "aquamarine4", "darkorchid1")```
```scale_fill_brewer( palette = "Pastel2")```
```scale_fill_manual(values = wes_palette("GrandBudapest1"), "Frequency of choices")```
###Temas
Definir que o tema que se vai usar é o Classic, ou BW, ou minimal, ou...
```theme_set(theme_classic())```
```theme_set(theme_bw())```
```theme_set(theme_minimal())```
> __Dica:__ Ver como [modificar um tema](https://ggplot2.tidyverse.org/reference/theme.html)
####Script para fazer primeiro, antes de se querer meter os valores de percentagem dentro do gráfico
Correr isto num script à parte, e só depois o stat_fill_labels
```{r script stat_fill_labels, drop3=TRUE, eval=F}
#' @rdname stat_fill_labels
#' @format NULL
#' @usage NULL
#' @export
StatFillLabels <- ggproto(
"StatFillLabels",
StatCount,
compute_panel = function(self, data, scales, ...) {
if (ggplot2:::empty(data)) {
return(data.frame())
}
groups <- split(data, data$group)
stats <- lapply(groups, function(group) {
self$compute_group(data = group, scales = scales, ...)
})
stats <- mapply(function(new, old) {
if (ggplot2:::empty(new)) {
return(data.frame())
}
unique <- ggplot2:::uniquecols(old)
missing <- !(names(unique) %in% names(new))
cbind(new, unique[rep(1, nrow(new)), missing, drop = FALSE])
}, stats, groups, SIMPLIFY = FALSE)
data <- do.call(plyr::rbind.fill, stats)
plyr::ddply(
data, "x", plyr::mutate,
prop = count / sum(count),
cumprop = inv_cumsum(count) / sum(count),
ylabel = (inv_cumsum(count) - count / 2) / sum(count),
na.rm = TRUE
)
},
default_aes = aes(y = ..ylabel.., label = paste0(round(100 * ..prop.., digits = 0))) #É aqui que se mete os dígitos
)
stat_fill_labels <- function(mapping = NULL, data = NULL, geom = "text",
position = "identity", width = NULL, na.rm = FALSE, show.legend = NA,
inherit.aes = TRUE, ...) {
layer(
stat = StatFillLabels, data = data, mapping = mapping, geom = geom,
position = position, show.legend = show.legend, inherit.aes = inherit.aes,
params = list(na.rm = na.rm, ...)
)
}
# default_aes = aes(y = ..ylabel.., label = paste0(round(100 * ..prop.., digits = 0), "%")) pode-se meter o símbolo do percento
```
###Gravar plots
```{r export, eval=F}
#em jpg, dimensões em polegadas
ggsave("mtcars.jpg", width = 4, height = 4)
#em pdf, dimensões em centímetros
ggsave("mtcars.pdf", width = 20, height = 20, units = "cm")
```
####Em formato vectorial
Pode-se fazer __Export > Copy > Metafile__ . Fica vectorial, mas quando se grava como pdf podem aparecer umas linhas na diagonal (que não aparecem quando se IMPRIME para pdf)
Para imagens em grande formato, seguir [este tutorial](https://blogs.kent.ac.uk/psychotech/2017/04/11/create-high-res-300dpi-images-from-excel-charts-and-plots/) que as grava em jpg com grande qualidade, mas por experiuência prórpia, não o suficiente.
####Gravar em formato MS Office
Isto dá jeito para exportar para o word sem perder qualidade - continua vectorial
```{r export ms, eval=F}
library(export)
graph2doc(file="plot.docx", width=7, height=5)
graph2ppt(file="plot.pptx", width=7, height=5) #em inches
graph2ppt(file="plot.pptx", width=9, aspectr=sqrt(2)) #9 inches wide and A4 aspect ratio
#o comando refere-se ao último plot que foi feito
#outros formatos
graph2ppt()
graph2doc()
# export to bitmap or vector formats
graph2svg()
graph2png()
graph2tif()
graph2jpg()
```
##Histogramas
###Histograma, usando o base do R
```{r histogramas, echo=TRUE}
hist(TODOS$Age,breaks = 10, labels = TRUE, col = "grey", main="Histogram of Age", xlab="Age")
abline(v = mean(TODOS$Age), col="red")
abline(v=median(TODOS$Age), col="yellow")
```
###Histograma, com ggplot
```{r runhide, include=FALSE}
library(ggplot2)
```
```{r histogramas2, echo=TRUE}
#histograma de barras
p<-ggplot(NCspss, aes(x=CHANGE)) +
geom_histogram(binwidth=5,color="#1F3552", fill="#4271AE")+
geom_vline(xintercept = 77.5, size = 1, colour = "darkgrey",
linetype = "dashed") + scale_x_continuous(breaks = seq(0, 100, 10))
p+ labs(title="Probability to change to cycling") +
labs(x="Probability to change", y="Count") + theme_bw()
#com zoom aos valores de 0 a 150
p+ labs(title="Probability to change to cycling") +
labs(x="Probability to change", y="Count") +coord_cartesian(xlim = c(0, 100), ylim = c(0, 150)) + theme_bw()
#histograma simples, com a mediana assinalada em linha tracejada, e números com separador de milhar
summary(TODOS$lenght)
ggplot(TODOS[TODOS$lenght<=12000 & !is.na(TODOS$lenght),], aes(x=lenght)) +
geom_histogram(binwidth=500,color="#1F3552", fill="#79C000")+
geom_vline(xintercept = 5922, size = 1, colour = "blue", linetype = "dashed") +
scale_x_continuous(breaks = seq(0, 12000, 1000),labels=function(y) format(y, big.mark = " ")) +
labs(title="Distancia das viagens") + labs(x="Distância [m]", y="Casos") + theme_bw()
```
##Gáficos de tarte ou waffles
```{r piechart, echo=TRUE, fig.height=4, fig.width=5}
#pie chart
TODOS$Gender<-factor(TODOS$Gender)
levels(TODOS$Gender)<- c("Male", "Female", "Other")
pie(table(TODOS$Gender))
```
```{r waffle, echo=TRUE}
library(waffle)
#waffle
vals <- c(313/1196*100,766/1196*100,113/1196*100)
val_names <- sprintf("%s (%s)", c("Cyclists", "Non-Cyclists", "Quitters"), scales::percent(round(vals/sum(vals), 3)))
names(vals) <- val_names
waffle::waffle(vals, rows = 5, title = "Types of cyclists")
## dois waffle num só plot
iron(
waffle(vals, rows = 5, title = "Types of cyclists"),
waffle(c(Male = 610/1196*100, Female = 583/1196*100, Other=3/1196*100), rows = 5, colors = c("#702963", "#FFA500","#003153"), title = "Gender")
)
```
##Gráficos de barras
```{r run, include=FALSE}
library(plyr)
library(ggplot2)
library(wesanderson)
```
###Barras verticais
```{r plot barras v, echo=T, fig.width=9}
#vertical, legendas a 45º, por categoria - MESSY
ggplot(data=MCTRIGGERS, aes(x=reorder(names,-MCTRIGGERS.MEAN), y=MCTRIGGERS.MEAN, fill = Category)) +
geom_bar(stat="identity") +geom_text(aes(label=ENshort), size=5, hjust = -0.05, angle =45, vjust=-0.3) +
labs(title = "Triggers for cycling - relevance", x = "Triggers of Cyclists", y = "Mean of weighted scores") +
theme_classic() +theme(axis.text.x=element_blank(),axis.ticks.x=element_blank(), legend.position=c(0.8,0.8)) +
scale_fill_brewer(palette="Paired") + coord_cartesian(xlim=c(0,39)) + ylim(NA, 0.16)
#barras com realce dos quartis nas legendas
ggplot(data=MCTRIGGERS, aes(x=reorder(names,-MCTRIGGERS.MEAN), y=MCTRIGGERS.MEAN, fill = quartis)) +
geom_bar(stat="identity") +geom_text(aes(label=ENshort), data=subset(MCTRIGGERS,quartis=="75-100%"), size=4, hjust = -0.05, angle =45, vjust=-0.3) +
geom_text(aes(label=ENshort), data=subset(MCTRIGGERS,quartis=="50-75%"), size=3, hjust = -0.05, angle =45, vjust=-0.3, color="azure4") +
geom_text(aes(label=ENshort), data=subset(MCTRIGGERS,names=="17"), size=3, hjust = -0.05, angle =45, vjust=-0.3) +
labs(title = "Triggers for cycling - relevance", x = "Triggers of Cyclists", y = "Mean of weighted scores") +
theme_classic() +theme(axis.text.x=element_blank(),axis.ticks.x=element_blank(), legend.position=c(0.8,0.8), plot.title = element_text(size=22, hjust=0.5)) +
scale_fill_manual(values = wes_palette("GrandBudapest1"), "Frequency of choices") + coord_cartesian(xlim=c(0,45)) + ylim(NA, 0.14)
```
####Stacked 100%
```{r plot barras stacked, echo=TRUE}
#barras de 100% stacked
ggplot(TODOS, aes(CHANGE_Class3, fill=Gender) ) + geom_bar(position="Fill")+ scale_fill_grey()+ theme_classic()+
labs(title="Gender",
subtitle="Sub-groups of potential cyclists",
x="Class",
y=element_blank())+scale_y_continuous(labels = scales::percent)
#com palete de cores, e com Cyclists primeiro
ggplot(TODOS, aes(factor(TODOS$CHANGE_Class3, levels=rev(levels(TODOS$CHANGE_Class3))), fill=Gender) ) + geom_bar(position="Fill")+ scale_fill_brewer( palette = "Pastel2")+ theme_classic()+
labs(title="Gender",
subtitle="Sub-groups of potential cyclists",
x="Class",
y=element_blank())+scale_y_continuous(labels = scales::percent)
#remover os que não repsonderam pq não tinham carro
ggplot(TODOS[!is.na(TODOS$CarGiveUp),], aes(CHANGE_Class3, fill=CarGiveUp) ) + geom_bar(position="fill")+ scale_fill_brewer( palette ="RdYlGn") + theme_classic() +
theme(legend.title=element_blank()) +
labs(title="Could you give up having a car?",
subtitle="Sub-groups of potential cyclists",
x="Class",
y=element_blank())+scale_y_continuous(labels = scales::percent)
#alterar ordem das cores
ggplot(TODOS[TODOS$MODES!="Other",], aes(CHANGE_Class3, fill=MODES) ) + geom_bar(position="fill")+
scale_fill_brewer( palette = "Paired", direction=-1)+ theme_classic() + theme(legend.title=element_blank())+
labs(title="Travel Mode",
subtitle="Sub-groups of potential cyclists",
x="Class", y=element_blank())+scale_y_continuous(labels = scales::percent)
```
```{r plot barras percent, eval=FALSE}
#meter valores de percentagem nas barras
library(JLutils)#para usar o stat_fill_labels, ver script acima
ggplot(TODOS[TODOS$MODES!="Other",], aes(CHANGE_Class3, fill=MODES) ) + geom_bar(position = "fill")+
stat_fill_labels(size = 3)+
scale_fill_brewer( palette = "Paired", direction=-1)+ theme(legend.title=element_blank())+
labs(title="Travel Mode",
subtitle="Sub-groups of potential cyclists",
x="Class", y=element_blank())+scale_y_continuous(labels = scales::percent)
#plotar e gravar
ggplot(data=subset(TComb2,(Freq>2 & Freq<100)), aes(x=reorder(Var1,Freq), y=Freq))+geom_bar(stat="identity")+coord_flip()+
geom_text(aes(label=Freq),size=3,hjust=-0.5)+
labs(title="Travel Mode alternative combinations", subtitle="Freq >2",x="Combinations")
ggsave("TMode_Alternative_freq.png", width = 8.5, height = 11, dpi=300)
```
####Stacked
```{r plot barras v stakednon100, echo=T}
#gráfico barras verticais com dois valores, e x como factor
ggplot(VIAGENSamlGAMA, aes(gama, viagens/1000, fill=inter) ) + geom_bar(stat="identity")+
theme_classic()+
labs(title="Viagens AML",
subtitle="Número de viagens por gamas de distâncias",
x="Gama de distâncias [km]",
y="x1000 viagens")
```
###Barras horizontais
```{r plot barras h, echo=TRUE}
#barras na horixontal
ggplot(CONTAGENSzonasMT, aes(x=reorder(Names,SumFluxos), y=SumFluxos, fill=factor(AnoMT, levels=c("2018 Tarde", "2018 Manhã","2017 Tarde", "2017 Manhã")))) +
geom_bar(stat="identity", position="dodge") + guides(fill=guide_legend(reverse=TRUE), colour=guide_legend(reverse=TRUE)) +
scale_fill_brewer(palette="Paired", direction=-1, "Ano e Período") + ggtitle("Pico de ciclistas por hora de ponta, por ano e zona") +
coord_flip() + theme_minimal() + theme(legend.position = c(0.752, 0.305), legend.title = element_text(face="bold")) + labs(y="Pico de ciclistas por hora de ponta", x="Zonas")
#simplificado, com legendas nas barras
ggplot(CONTAGENSzonas, aes(x=reorder(Names,SumFluxos), y=SumFluxos4, fill=factor(Ano, levels=c("2018","2017")))) +
geom_bar(stat="identity", position="dodge", show.legend=F) + #scale_fill_manual(values = wes_palette("Darjeeling1"), 2) +
geom_text(aes(label=Ano), color="white", size=3, position = position_dodge(1), hjust=1.3) +
coord_flip() + theme_minimal() + labs(y="Média de ciclistas por hora de ponta", x="Zonas")
```
###Facets
```{r plot facets, echo=TRUE}
#meter vários gráficos lado a lado, pela variável "ERA" - isto funciona bem com um Melt primeiro
ggplot(data=subset(MCBARRIERSERA.JOINALL,(MCBARRIERSERA.MEANscale>10 & names!="Other") & (MCBARRIERSERA.MEANscale>4.5 & names!="40")), aes(x=reorder(ENshort,MCBARRIERSERA.MEANscale), y=ERA_MEANscale, fill = quartis)) +
geom_bar(stat="identity")+
labs(title = "Previous Barriers for cycling - relevance", x = "Barriers of Cyclists", y = "Mean of weighted scores") +
theme(axis.text.x=element_text(size=5), plot.title = element_text(size=22, hjust=0.5)) +
scale_fill_manual(values = wes_palette("GrandBudapest1"), "Frequency of choices") +
coord_flip() + facet_wrap(~ERA)
```
```{r plot facets vertical, echo=TRUE, fig.width=10}
#na vertical, sem linhas horizontais, por arruamento
ggplot(CONTAGENSevolucao, aes(x=Ano, y=Ciclistas, fill=factor(Gira, levels=c("Trotinetas","Bicicleta partilhada", "Bicicleta própria")))) +
geom_bar(stat="identity", position="stack") + facet_grid(~Local2, switch="x") + scale_fill_manual(values=c("#D4A017", "#B2DF8A", "#33A02C")) +
guides(fill=guide_legend(reverse=TRUE), colour=guide_legend(reverse=TRUE)) + theme_bw() + ggtitle("Comparação do volume de ciclistas observados por local") +
theme(legend.position = c(0.9,0.8), legend.title=element_blank(),panel.grid.major.x=element_blank(),axis.ticks.y=element_blank(), axis.text.y=element_blank(), panel.border=element_blank(), strip.placement="outside", strip.background = element_rect(colour = "white")) +
labs(y="Volume de ciclistas", x= element_blank())
# ! não está a funcionar bem a parte de remover os eixos
#é capaz de haver uma maneira mais eficiente de fazer isto...
```
```{r tableshow1, echo=FALSE, results='asis'}
library(knitr)
kable(CONTAGENSevolucao[3:10,c(1:6)], caption = "Exemplo dos dados em melt", row.names = F)
```
##Gráficos de bolas
Plot cujas bolas variam com o número de casos
```{r plot bolas, echo=TRUE, fig.height=5, fig.width=7, include=TRUE}
#primeiro fazer uma tabela de frequências por categoria, depois fazer o plot
DF_summary = ddply(
SubClustNC,
.(B3types, CHANGE_Class3),
summarize,
count=length(CHANGE_Class3))
ggplot(DF_summary, aes(B3types, CHANGE_Class3)) +
geom_point(aes(size=count)) + scale_size(range = c(1, 30)) + theme(legend.position="none") +
labs(title = "Types of potential cyclists", x = "Stages of Change", y = "Change class")
```
Alterar cores e adicionar labels nas bolas
```{r plot bolas labels, echo=TRUE, fig.height=5, fig.width=7, include=TRUE}
##criar coluna com a cor
DF_summary$prob <- c("g","y","y","g","g","y","r","g","g") #green, yellow, red
ggplot(DF_summary, aes(B3types, CHANGE_Class3)) +
geom_point(aes(size=count, colour=factor(prob)))+scale_color_manual(values = c("#00BA38", "#F8766D","#619CFF")) +
geom_text(data=DF_summary[DF_summary$count>25,],aes(label = count), size=4) +
geom_text(data=DF_summary[DF_summary$count<25,],aes(label = count), hjust=-1,vjust=-1, size=4) + #para as bolas pequenas
scale_size(range = c(1, 30)) + theme(legend.position="none") +
labs(title = "Types of potential cyclists", x = "Stages of Change", y = "Change class")
```
##Gráficos de dispersão, com indicação da linha de tendência
```{r plot trend dispersion, echo=TRUE}
#logarítmica
ggplot(subset(NCspss,NCspss$lenght>0 & NCspss$PercCiclovia>0), aes(lenght,PercCiclovia), geom = "point")+
geom_point()+geom_smooth(method = "lm", formula = y~log(x))+theme_classic()
```
```{r plot trend dispersion exp, eval=F}
#exponencial
ggplot(subset(NCspss,NCspss$lenght>0 & NCspss$PercCiclovia>0), aes(lenght,PercCiclovia), geom = "point")+
geom_point()+geom_smooth(method = "lm", formula = (y~exp(x)),se=FALSE)+theme_classic()
```
```{r plot trend dispersion quad, echo=TRUE, warning=FALSE}
#quadrática
#If we attempted to estimate a regression model using x+x^2, R would drop the x^2 term because it thinks it is a duplicate of x. We use the I() “as-is” operator
ggplot(subset(NCspss,NCspss$lenght>0 & NCspss$PercCiclovia>0), aes(lenght,PercCiclovia), geom = "point")+
geom_point()+geom_smooth(method = "lm", formula = (y~x+I(x^2)),se=FALSE)+theme_classic()
#invertido
ggplot(subset(NCspss,NCspss$lenght>0), aes(PercCiclovia,lenght), geom = "point") +
geom_point()+geom_smooth(method = "loess", formula = y~x, se=F) +
xlab("Potential percentage of commuting trip in cycling infrastructure") +ylab("Commuting distance [m]") +
coord_cartesian(xlim = c(0, 100), ylim = c(0, 40000))+ theme_bw()
#Com cores diferentes, graduadas por determinada variável
ggplot(NCspss, aes(lenght,PercCiclovia, color=CHANGE), geom = "point")+geom_point()+
scale_color_gradient(low="red", high="black", name="Propensity to cycling") +
ylab("Potential percentage of commuting trip in cycling infrastructure") +
xlab("Commuting distance [m]") +
coord_cartesian(xlim = c(0, 40000), ylim = c(0, 100)) +
theme_bw() + theme(legend.position=c(0.8,0.7))
```
##Gráficos de violinos
```{r plot violin, echo=TRUE}
ggplot(TODOS, aes(CHANGE_Class3, Age)) +
geom_violin(fill="black") +
labs(title="Age",
subtitle="Sub-groups of potential cyclists",
x="Class",
y="Age")
```
##Gráficos de likert scale
tutorial [aqui](http://rnotr.com/likert/ggplot/barometer/likert-plots/)
Ver passo a passo
```{r plot likert, drop1=TRUE ,eval=F}
#0 - preparar os dados
#Strongly dislike (2), Dislike (3), I am indifferent (4), Like (5), Strongly like (6), I never tried (1)
#Organizar dados para ter uma tabela com modo e pecentagem de cada nivel
Walk <-table(GOSTOS$TExperience_Walk)
Car <-table(GOSTOS$TExperience_Car)
Bus <-table(GOSTOS$TExperience_Bus)
Subway <-table(GOSTOS$TExperience_Subway)
Motorcycle <-table(GOSTOS$TExperience_Moto)
Tram <-table(GOSTOS$TExperience_Tram)
Train <-table(GOSTOS$TExperience_Train)
Bike <-table(GOSTOS$TExperience_Bike)
Taxi <-table(GOSTOS$Texperience_Taxi)
Ferry <-table(GOSTOS$TExperience_Ferry)
TREXPER <-rbind(Walk,Car,Bus,Subway,Motorcycle,Tram,Train,Bike,Taxi,Ferry)
TREXPER <-data.frame(TREXPER)
TREXPER$Mode <-rownames(TREXPER)