-
Notifications
You must be signed in to change notification settings - Fork 0
/
exploration.R
41 lines (31 loc) · 1010 Bytes
/
exploration.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
38
39
40
41
# Explorative data analysis
#
# characteristic of the INCOV study cohort, the characteristic of of the local
# STIGMA study collective is done elsewhere (SPSS, other members of the study
# team)
#
# Testing for the normality and EOV for the study variables (STIGMA and INCOV)
#
# Investigating correlation of the response variables in the STIGMA cohort
# with age and differences between the genders
# tools --------
library(plyr)
library(tidyverse)
library(trafo)
library(stringi)
library(exda)
library(soucer)
select <- dplyr::select
reduce <- purrr::reduce
insert_head()
source_all('./tools/tools.R',
message = TRUE, crash = TRUE)
# analysis scripts -------
insert_msg('Analysis scripts')
c('./exploration scripts/cohort.R',
'./exploration scripts/distribution.R',
'./exploration scripts/age.R',
'./exploration scripts/gender.R') %>%
source_all(message = TRUE, crash = TRUE)
# END -----
insert_tail()