-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson_to_tibble.R
More file actions
62 lines (58 loc) · 1.16 KB
/
json_to_tibble.R
File metadata and controls
62 lines (58 loc) · 1.16 KB
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
library(renv)
renv::restore()
library(jsonlite)
library(tibble)
library(dplyr)
library(tidyr)
library(purrr)
library(stringr)
raw <- fromJSON("./data_export.20250228.json")
df <- tibble(raw) %>%
mutate(
patient = names(raw)
)
df <- unnest(df, raw) %>%
mutate(dimension = names(raw)) %>%
pivot_wider(names_from = dimension, values_from = raw)
# Discard non-CRF data
df <- select(df, c(patient, external_crf_data))
df <- mutate(
df,
pecunia = map(external_crf_data, function(d) {
if (!is_null(d)) {
filter(d, crf_id == "PECUNIA")
}
})
)
df <- select(df, -external_crf_data)
df <- mutate(
df,
pecunia = map(pecunia, function(d) {
if (!is_null(d)) mutate(d, json_data = tibble(json_data))
})
) %>% unnest(pecunia)
df <- unnest(df, json_data)
df <- mutate(
df,
items = map(items, function(d) {
as_tibble(d)
})
) %>% unnest(items)
# Data
head(df)
# stats
d <- filter(df, !str_starts(patient, 'TST'))
# Number of responses
d %>% select(
c(patient, crf_incremental_id)
) %>% unique() %>%
group_by(
patient
) %>%
summarise(
times_completed = n()
) %>%
group_by(times_completed) %>%
summarise(
patients = n()
)