-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.R
92 lines (82 loc) · 2.54 KB
/
global.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
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
library(shinydashboard)
library(shinyWidgets)
library(VennDiagram)
library(openlattice)
library(ggcorrplot)
library(tidyverse)
library(lubridate)
library(esquisse)
library(shinyjs)
library(janitor)
library(plotly)
library(GGally)
library(gsheet)
library(shiny)
library(auth0)
library(httr)
library(yaml)
httr::set_config(httr::config(http_version = 0))
cols <- c("#6124e2",
"#44beff",
"#bc0000",
"#ff9a58",
"#00be84",
"#a939ff",
"#ffde00",
"#00bace",
"#f25497",
"#2f69ff",
"#00583d",
"#870000",
"#0021ba")
nacol <- "#dcdce7"
greys <- c(
"#555e6f",
"#8e929b",
"#b6bbc7",
"#cdd1db",
"#e6e6f7",
"#eaeaf0"
)
source("data_processing/get_raw_data.R")
source("data_processing/data_loading.R")
source("data_processing/tud_transform_data.R")
source("data_processing/maq_transform_childcare_households.R")
source("data_processing/maq_transform_children_demographics.R")
source("data_processing/maq_transform_data.R")
source("data_processing/maq_transform_devices.R")
source("data_processing/maq_transform_deviceuse.R")
source("data_processing/maq_transform_language.R")
source("data_processing/maq_transform_mediacontent.R")
source("data_processing/maq_transform_parents.R")
source("data_processing/maq_transform_parentmood.R")
source("data_processing/maq_transform_pm.R")
source("data_processing/maq_transform_psi.R")
source("data_processing/maq_transform_quality_metadata.R")
source("data_processing/maq_transform_respondentdetails.R")
source("data_processing/maq_transform_sleep.R")
source("data_processing/maq_transform_videochat.R")
source("data_processing/postprocessing.R")
source("data_processing/tud_summarise_data.R")
source("data_processing/chronicle_transform_data.R")
source("data_processing/subset_data.R")
source("data_processing/read_tables.R")
source("functions/plots.R")
source("functions/constants.R")
source("functions/configuration.R")
source("functions/utils.R")
source("modules/home.R")
source("modules/authentication.R")
source("modules/tables.R")
source("modules/participants_venn.R")
source("modules/participants_demographics.R")
source("modules/analysis_con_con.R")
source("modules/analysis_cat_con.R")
source("modules/analysis_univariate.R")
source("modules/analysis_multivariate_correlogram.R")
source("modules/analysis_multivariate_crossplots.R")
source("modules/analysis_esquisse.R")
source("modules/analysis_tud.R")
source("modules/analysis_scales.R")
source("modules/documentation.R")
secrets <- read_yaml("secrets.yaml")