diet <- fread(file = "data_raw/2019_03_04_Diet/Diet_columns.txt",
header = TRUE,
data.table = FALSE)
dim(diet)
[1] 502618 230
# Recode as factor
dietfactor <-c("Reason.for.not.eating.or.drinking.normally.0.0")
diet[dietfactor] <- lapply(diet[dietfactor], factor)
# Numeric columns
# Pregnancy and Menopause are numeric for recoding
UKBnumeric <-c()
Food.weight.columns <- c("Food.weight.0.0",
"Food.weight.1.0",
"Food.weight.2.0",
"Food.weight.3.0",
"Food.weight.4.0")
# Calculate mean for each time point
Food.weight.0.0.mean <- mean(diet$Food.weight.0.0, na.rm = TRUE)
Food.weight.1.0.mean <- mean(diet$Food.weight.1.0, na.rm = TRUE)
Food.weight.2.0.mean <- mean(diet$Food.weight.2.0, na.rm = TRUE)
Food.weight.3.0.mean <- mean(diet$Food.weight.3.0, na.rm = TRUE)
Food.weight.4.0.mean <- mean(diet$Food.weight.4.0, na.rm = TRUE)
# Calculate sd for each time point
Food.weight.0.0.sd <- sd(diet$Food.weight.0.0, na.rm = TRUE)
Food.weight.1.0.sd <- sd(diet$Food.weight.1.0, na.rm = TRUE)
Food.weight.2.0.sd <- sd(diet$Food.weight.2.0, na.rm = TRUE)
Food.weight.3.0.sd <- sd(diet$Food.weight.3.0, na.rm = TRUE)
Food.weight.4.0.sd <- sd(diet$Food.weight.4.0, na.rm = TRUE)
# Calculate 3.5 sds
Food.weight.0.0.sd3.5 <- sd(diet$Food.weight.0.0, na.rm = TRUE)*3.5
Food.weight.1.0.sd3.5 <- sd(diet$Food.weight.1.0, na.rm = TRUE)*3.5
Food.weight.2.0.sd3.5 <- sd(diet$Food.weight.2.0, na.rm = TRUE)*3.5
Food.weight.3.0.sd3.5 <- sd(diet$Food.weight.3.0, na.rm = TRUE)*3.5
Food.weight.4.0.sd3.5 <- sd(diet$Food.weight.4.0, na.rm = TRUE)*3.5
# Replace values that are more extreme than +3.5 sds with NA
Food.weight.0.0.excl <- diet$Food.weight.0.0[diet$Food.weight.0.0>(Food.weight.0.0.mean+Food.weight.0.0.sd3.5)] <- NA
Food.weight.1.0.excl <- diet$Food.weight.1.0[diet$Food.weight.1.0>(Food.weight.1.0.mean+Food.weight.1.0.sd3.5)] <- NA
Food.weight.2.0.excl <- diet$Food.weight.2.0[diet$Food.weight.2.0>(Food.weight.2.0.mean+Food.weight.2.0.sd3.5)] <- NA
Food.weight.3.0.excl <- diet$Food.weight.3.0[diet$Food.weight.3.0>(Food.weight.3.0.mean+Food.weight.3.0.sd3.5)] <- NA
Food.weight.4.0.excl <- diet$Food.weight.4.0[diet$Food.weight.4.0>(Food.weight.4.0.mean+Food.weight.4.0.sd3.5)] <- NA
# Replace values that are more extreme than -3.5 sds with NA
Food.weight.0.0.excl <- diet$Food.weight.0.0[diet$Food.weight.0.0<(Food.weight.0.0.mean-Food.weight.0.0.sd3.5)] <- NA
Food.weight.1.0.excl <- diet$Food.weight.1.0[diet$Food.weight.1.0<(Food.weight.1.0.mean-Food.weight.1.0.sd3.5)] <- NA
Food.weight.2.0.excl <- diet$Food.weight.2.0[diet$Food.weight.2.0<(Food.weight.2.0.mean-Food.weight.2.0.sd3.5)] <- NA
Food.weight.3.0.excl <- diet$Food.weight.3.0[diet$Food.weight.3.0<(Food.weight.3.0.mean-Food.weight.3.0.sd3.5)] <- NA
Food.weight.4.0.excl <- diet$Food.weight.4.0[diet$Food.weight.4.0<(Food.weight.4.0.mean-Food.weight.4.0.sd3.5)] <- NA
# Column: sum of outcome per participants
diet$Food.weight.sum <- rowSums(diet[, c("Food.weight.0.0",
"Food.weight.1.0",
"Food.weight.2.0",
"Food.weight.3.0",
"Food.weight.4.0")],
na.rm = TRUE)
# Column: number of NA values per outcome per participants
diet$Food.weight.NA <- rowSums(is.na(diet[, c("Food.weight.0.0",
"Food.weight.1.0",
"Food.weight.2.0",
"Food.weight.3.0",
"Food.weight.4.0")]))
# Column: number of time points each participant completed the questionnaire per outcome
diet$Food.weight.N.answered <- length(Food.weight.columns) - diet$Food.weight.NA
# Column: Average per outcome per participant
diet$Food.weight.average <- diet$Food.weight.sum/diet$Food.weight.N.answered
# Number of NAs per time point
Food.weight.0.0.N.NAs <- sum(is.na(diet$Food.weight.0.0))
Food.weight.1.0.N.NAs <- sum(is.na(diet$Food.weight.1.0))
Food.weight.2.0.N.NAs <- sum(is.na(diet$Food.weight.2.0))
Food.weight.3.0.N.NAs <- sum(is.na(diet$Food.weight.3.0))
Food.weight.4.0.N.NAs <- sum(is.na(diet$Food.weight.4.0))
# Subset
Food.weight.df <- diet %>%
select(., IID, starts_with("Food.weight"))
Food.weight.spread <- gather(Food.weight.df, key = Time.point, value = Food.weight, Food.weight.columns)
Food.weight.spread$Time.point.old <- Food.weight.spread$Time.point
Food.weight.spread$Time.point <- factor(Food.weight.spread$Time.point,
levels = Food.weight.columns,
labels = c("0",
"1",
"2",
"3",
"4") )
# Violin plot
ggplot(Food.weight.spread,
aes(x = Time.point, Food.weight)) +
geom_violin(aes(fill = Time.point)) +
scale_fill_manual(values=c("#6352FF", "#385FE8", "#32A1FF", "#22CCE8", "#1FFFD5")) +
labs(y = "Weight [kg]",
x = "Time points",
title = "Food weight (self-report)",
color = "black") +
theme(panel.grid.major.y = element_line(size = 0.5,
linetype = 'dashed',
colour = "gray"),
axis.title.y = element_blank(),
axis.text.x = element_text(colour="black", size = 12),
axis.text.y = element_text(colour="black", size = 12),
axis.ticks.x = element_blank(),
axis.ticks.y = element_blank(),
panel.background = element_blank(),
legend.position="none")
Warning: Removed 2056673 rows containing non-finite values (stat_ydensity).
ggplot(Food.weight.spread,
aes(x = factor(Time.point), Food.weight)) +
geom_boxplot(aes(fill = Time.point)) +
scale_fill_manual(values=c("#6352FF", "#385FE8", "#32A1FF", "#22CCE8", "#1FFFD5")) +
labs(y = "Weight [kg]",
x = "Time points",
title = "Food weight (self-report)",
color = "black") +
theme(panel.grid.major.y = element_line(size = 0.5,
linetype = 'dashed',
colour = "gray"),
axis.title.y = element_blank(),
axis.text.x = element_text(colour="black", size = 12),
axis.text.y = element_text(colour="black", size = 12),
axis.ticks.x = element_blank(),
axis.ticks.y = element_blank(),
panel.background = element_blank(),
legend.position="none")
Warning: Removed 2056673 rows containing non-finite values (stat_boxplot).
Diet questionnaire
summarytools::dfSummary(diet[,-1],
bootstrap.css = FALSE, # Already part of the theme so no need for it
plain.ascii = FALSE, # One of the essential settings
style = "grid", # Idem.
dfSummary.silent = TRUE, # Suppresses messages about temporary files
footnote = NA, # Keeping the results minimalistic
subtitle.emphasis = FALSE,
graph.magnif = 0.75,
tmp.img.dir = "/tmp")
Dimensions: 502618 x 233
Duplicates: 290858
No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Valid | Missing |
---|---|---|---|---|---|---|
1 |
Food.weight.0.0 |
Mean (sd) : 3241.7 (884.9) |
13549 distinct values |
70391 |
432227 |
|
2 |
Food.weight.1.0 |
Mean (sd) : 3166.7 (806.5) |
14281 distinct values |
100104 |
402514 |
|
3 |
Food.weight.2.0 |
Mean (sd) : 3214.2 (827.7) |
13886 distinct values |
82846 |
419772 |
|
4 |
Food.weight.3.0 |
Mean (sd) : 3100.9 (789.8) |
14072 distinct values |
103255 |
399363 |
|
5 |
Food.weight.4.0 |
Mean (sd) : 3162.9 (808.6) |
14304 distinct values |
99821 |
402797 |
|
6 |
Energy.0.0 |
Mean (sd) : 8825.8 (3229.9) |
65002 distinct values |
70747 |
431871 |
|
7 |
Energy.1.0 |
Mean (sd) : 8869 (2978.9) |
88986 distinct values |
100602 |
402016 |
|
8 |
Energy.2.0 |
Mean (sd) : 8864.7 (3023.6) |
75256 distinct values |
83267 |
419351 |
|
9 |
Energy.3.0 |
Mean (sd) : 8782.8 (2951.1) |
91943 distinct values |
103794 |
398824 |
|
10 |
Energy.4.0 |
Mean (sd) : 8882 (3032.3) |
88782 distinct values |
100285 |
402333 |
|
11 |
Protein.0.0 |
Mean (sd) : 81.8 (31.3) |
13825 distinct values |
70747 |
431871 |
|
12 |
Protein.1.0 |
Mean (sd) : 82.9 (29.3) |
14315 distinct values |
100602 |
402016 |
|
13 |
Protein.2.0 |
Mean (sd) : 82.5 (30) |
13954 distinct values |
83267 |
419351 |
|
14 |
Protein.3.0 |
Mean (sd) : 82.1 (28.9) |
14352 distinct values |
103794 |
398824 |
|
15 |
Protein.4.0 |
Mean (sd) : 82.7 (29.7) |
14383 distinct values |
100285 |
402333 |
|
16 |
Fat.0.0 |
Mean (sd) : 76.8 (36.3) |
15198 distinct values |
70747 |
431871 |
|
17 |
Fat.1.0 |
Mean (sd) : 78.3 (34.7) |
15984 distinct values |
100602 |
402016 |
|
18 |
Fat.2.0 |
Mean (sd) : 78.1 (35) |
15471 distinct values |
83267 |
419351 |
|
19 |
Fat.3.0 |
Mean (sd) : 77.9 (34.2) |
15941 distinct values |
103794 |
398824 |
|
20 |
Fat.4.0 |
Mean (sd) : 79.4 (35.2) |
16210 distinct values |
100285 |
402333 |
|
21 |
Carbohydrate.0.0 |
Mean (sd) : 258.1 (108.6) |
30831 distinct values |
70747 |
431871 |
|
22 |
Carbohydrate.1.0 |
Mean (sd) : 255.6 (99.5) |
33801 distinct values |
100602 |
402016 |
|
23 |
Carbohydrate.2.0 |
Mean (sd) : 254.1 (100.8) |
31917 distinct values |
83267 |
419351 |
|
24 |
Carbohydrate.3.0 |
Mean (sd) : 252.4 (98.8) |
34083 distinct values |
103794 |
398824 |
|
25 |
Carbohydrate.4.0 |
Mean (sd) : 254.1 (100.9) |
34046 distinct values |
100285 |
402333 |
|
26 |
Saturated.fat.0.0 |
Mean (sd) : 29.5 (15.8) |
7722 distinct values |
70747 |
431871 |
|
27 |
Saturated.fat.1.0 |
Mean (sd) : 30.1 (15.1) |
7997 distinct values |
100602 |
402016 |
|
28 |
Saturated.fat.2.0 |
Mean (sd) : 30 (15.3) |
7801 distinct values |
83267 |
419351 |
|
29 |
Saturated.fat.3.0 |
Mean (sd) : 30.1 (15) |
7998 distinct values |
103794 |
398824 |
|
30 |
Saturated.fat.4.0 |
Mean (sd) : 30.5 (15.4) |
8136 distinct values |
100285 |
402333 |
|
31 |
Polyunsaturated.fat.0.0 |
Mean (sd) : 14.2 (8.8) |
4657 distinct values |
70747 |
431871 |
|
32 |
Polyunsaturated.fat.1.0 |
Mean (sd) : 14.5 (8.6) |
4813 distinct values |
100602 |
402016 |
|
33 |
Polyunsaturated.fat.2.0 |
Mean (sd) : 14.4 (8.5) |
4628 distinct values |
83267 |
419351 |
|
34 |
Polyunsaturated.fat.3.0 |
Mean (sd) : 14.3 (8.5) |
4823 distinct values |
103794 |
398824 |
|
35 |
Polyunsaturated.fat.4.0 |
Mean (sd) : 14.6 (8.6) |
4851 distinct values |
100285 |
402333 |
|
36 |
Total.sugars.0.0 |
Mean (sd) : 123.2 (62) |
21633 distinct values |
70747 |
431871 |
|
37 |
Total.sugars.1.0 |
Mean (sd) : 121.2 (56.2) |
22799 distinct values |
100602 |
402016 |
|
38 |
Total.sugars.2.0 |
Mean (sd) : 120.9 (56.8) |
21746 distinct values |
83267 |
419351 |
|
39 |
Total.sugars.3.0 |
Mean (sd) : 118.5 (55.5) |
22753 distinct values |
103794 |
398824 |
|
40 |
Total.sugars.4.0 |
Mean (sd) : 120.2 (56.4) |
22734 distinct values |
100285 |
402333 |
|
41 |
Englyst.dietary.fibre.0.0 |
Mean (sd) : 16.6 (7.9) |
4451 distinct values |
70747 |
431871 |
|
42 |
Englyst.dietary.fibre.1.0 |
Mean (sd) : 16.6 (7.3) |
4445 distinct values |
100602 |
402016 |
|
43 |
Englyst.dietary.fibre.2.0 |
Mean (sd) : 16.4 (7.3) |
4349 distinct values |
83267 |
419351 |
|
44 |
Englyst.dietary.fibre.3.0 |
Mean (sd) : 16.4 (7.2) |
4398 distinct values |
103794 |
398824 |
|
45 |
Englyst.dietary.fibre.4.0 |
Mean (sd) : 16.3 (7.2) |
4380 distinct values |
100285 |
402333 |
|
46 |
Portion.size.0.0 |
Mean (sd) : 10.2 (2.2) |
5 : 5490 ( 7.8%) |
70714 |
431904 |
|
47 |
Portion.size.1.0 |
Mean (sd) : 10 (2.1) |
5 : 8921 ( 8.9%) |
100602 |
402016 |
|
48 |
Portion.size.2.0 |
Mean (sd) : 10 (2.1) |
5 : 7602 ( 9.1%) |
83267 |
419351 |
|
49 |
Portion.size.3.0 |
Mean (sd) : 10 (2.1) |
5 : 9369 ( 9.0%) |
103794 |
398824 |
|
50 |
Portion.size.4.0 |
Mean (sd) : 9.9 (2.1) |
5 : 9418 ( 9.4%) |
100251 |
402367 |
|
51 |
Iron.0.0 |
Mean (sd) : 13.6 (5.3) |
3270 distinct values |
70747 |
431871 |
|
52 |
Iron.1.0 |
Mean (sd) : 13.8 (5) |
3257 distinct values |
100602 |
402016 |
|
53 |
Iron.2.0 |
Mean (sd) : 13.9 (5) |
3229 distinct values |
83267 |
419351 |
|
54 |
Iron.3.0 |
Mean (sd) : 13.6 (4.9) |
3226 distinct values |
103794 |
398824 |
|
55 |
Iron.4.0 |
Mean (sd) : 13.8 (5) |
3269 distinct values |
100285 |
402333 |
|
56 |
Vitamin.B6.0.0 |
Mean (sd) : 2.2 (0.9) |
687 distinct values |
70747 |
431871 |
|
57 |
Vitamin.B6.1.0 |
Mean (sd) : 2.2 (0.8) |
673 distinct values |
100602 |
402016 |
|
58 |
Vitamin.B6.2.0 |
Mean (sd) : 2.2 (0.8) |
659 distinct values |
83267 |
419351 |
|
59 |
Vitamin.B6.3.0 |
Mean (sd) : 2.1 (0.8) |
664 distinct values |
103794 |
398824 |
|
60 |
Vitamin.B6.4.0 |
Mean (sd) : 2.2 (0.8) |
685 distinct values |
100285 |
402333 |
|
61 |
Vitamin.B12.0.0 |
Mean (sd) : 6.4 (5.5) |
3083 distinct values |
70747 |
431871 |
|
62 |
Vitamin.B12.1.0 |
Mean (sd) : 6.6 (5.6) |
3329 distinct values |
100602 |
402016 |
|
63 |
Vitamin.B12.2.0 |
Mean (sd) : 6.6 (5.7) |
3270 distinct values |
83267 |
419351 |
|
64 |
Vitamin.B12.3.0 |
Mean (sd) : 6.4 (5.5) |
3304 distinct values |
103794 |
398824 |
|
65 |
Vitamin.B12.4.0 |
Mean (sd) : 6.7 (5.7) |
3324 distinct values |
100285 |
402333 |
|
66 |
Folate.0.0 |
Mean (sd) : 307.7 (135.2) |
36413 distinct values |
70747 |
431871 |
|
67 |
Folate.1.0 |
Mean (sd) : 305.8 (125.6) |
40823 distinct values |
100602 |
402016 |
|
68 |
Folate.2.0 |
Mean (sd) : 300.8 (123.4) |
37687 distinct values |
83267 |
419351 |
|
69 |
Folate.3.0 |
Mean (sd) : 300.9 (124.3) |
41133 distinct values |
103794 |
398824 |
|
70 |
Folate.4.0 |
Mean (sd) : 302.2 (122.9) |
40370 distinct values |
100285 |
402333 |
|
71 |
Vitamin.C.0.0 |
Mean (sd) : 154.2 (129.2) |
31249 distinct values |
70747 |
431871 |
|
72 |
Vitamin.C.1.0 |
Mean (sd) : 150.2 (114.7) |
34441 distinct values |
100602 |
402016 |
|
73 |
Vitamin.C.2.0 |
Mean (sd) : 164 (121.6) |
33984 distinct values |
83267 |
419351 |
|
74 |
Vitamin.C.3.0 |
Mean (sd) : 142 (108.7) |
33575 distinct values |
103794 |
398824 |
|
75 |
Vitamin.C.4.0 |
Mean (sd) : 151.6 (114.2) |
34525 distinct values |
100285 |
402333 |
|
76 |
Potassium.0.0 |
Mean (sd) : 3780 (1560) |
65461 distinct values |
70747 |
431871 |
|
77 |
Potassium.1.0 |
Mean (sd) : 3798.1 (1444.3) |
89421 distinct values |
100602 |
402016 |
|
78 |
Potassium.2.0 |
Mean (sd) : 3802.3 (1467.2) |
75536 distinct values |
83267 |
419351 |
|
79 |
Potassium.3.0 |
Mean (sd) : 3744.1 (1423) |
91816 distinct values |
103794 |
398824 |
|
80 |
Potassium.4.0 |
Mean (sd) : 3778.1 (1450.8) |
89030 distinct values |
100285 |
402333 |
|
81 |
Magnesium.0.0 |
Mean (sd) : 349.7 (129.8) |
35304 distinct values |
70747 |
431871 |
|
82 |
Magnesium.1.0 |
Mean (sd) : 351.1 (120.4) |
39428 distinct values |
100602 |
402016 |
|
83 |
Magnesium.2.0 |
Mean (sd) : 349.2 (121.5) |
36595 distinct values |
83267 |
419351 |
|
84 |
Magnesium.3.0 |
Mean (sd) : 347.4 (119.3) |
39728 distinct values |
103794 |
398824 |
|
85 |
Magnesium.4.0 |
Mean (sd) : 351.2 (121.8) |
39507 distinct values |
100285 |
402333 |
|
86 |
Retinol.0.0 |
Mean (sd) : 314.3 (200.2) |
42274 distinct values |
68629 |
433989 |
|
87 |
Retinol.1.0 |
Mean (sd) : 327.3 (199.1) |
51684 distinct values |
96993 |
405625 |
|
88 |
Retinol.2.0 |
Mean (sd) : 323 (200.1) |
46502 distinct values |
80424 |
422194 |
|
89 |
Retinol.3.0 |
Mean (sd) : 330 (199.6) |
52432 distinct values |
100002 |
402616 |
|
90 |
Retinol.4.0 |
Mean (sd) : 330.3 (201.3) |
51783 distinct values |
96696 |
405922 |
|
91 |
Carotene.0.0 |
Mean (sd) : 3211.8 (3273.3) |
66353 distinct values |
70747 |
431871 |
|
92 |
Carotene.1.0 |
Mean (sd) : 3191.9 (3056.5) |
92765 distinct values |
100602 |
402016 |
|
93 |
Carotene.2.0 |
Mean (sd) : 2983.2 (2865.8) |
77463 distinct values |
83267 |
419351 |
|
94 |
Carotene.3.0 |
Mean (sd) : 3117.1 (2947.4) |
95407 distinct values |
103794 |
398824 |
|
95 |
Carotene.4.0 |
Mean (sd) : 2999.6 (2879.7) |
92170 distinct values |
100285 |
402333 |
|
96 |
Typical.diet.yesterday.0.0 |
Min : 0 |
0 : 12811 (18.1%) |
70714 |
431904 |
|
97 |
Typical.diet.yesterday.1.0 |
Min : 0 |
0 : 19754 (19.6%) |
100602 |
402016 |
|
98 |
Typical.diet.yesterday.2.0 |
Min : 0 |
0 : 17247 (20.7%) |
83267 |
419351 |
|
99 |
Typical.diet.yesterday.3.0 |
Min : 0 |
0 : 18779 (18.1%) |
103794 |
398824 |
|
100 |
Typical.diet.yesterday.4.0 |
Min : 0 |
0 : 18411 (18.4%) |
100251 |
402367 |
|
101 |
Vitamin.D.0.0 |
Mean (sd) : 2.8 (3.3) |
1865 distinct values |
70747 |
431871 |
|
102 |
Vitamin.D.1.0 |
Mean (sd) : 2.9 (3.3) |
1976 distinct values |
100602 |
402016 |
|
103 |
Vitamin.D.2.0 |
Mean (sd) : 3 (3.5) |
1946 distinct values |
83267 |
419351 |
|
104 |
Vitamin.D.3.0 |
Mean (sd) : 2.8 (3.2) |
1942 distinct values |
103794 |
398824 |
|
105 |
Vitamin.D.4.0 |
Mean (sd) : 3 (3.5) |
1999 distinct values |
100285 |
402333 |
|
106 |
Alcohol.0.0 |
Mean (sd) : 15.9 (24.1) |
1870 distinct values |
70747 |
431871 |
|
107 |
Alcohol.1.0 |
Mean (sd) : 16.1 (23.2) |
2225 distinct values |
100602 |
402016 |
|
108 |
Alcohol.2.0 |
Mean (sd) : 17.3 (24.1) |
2250 distinct values |
83267 |
419351 |
|
109 |
Alcohol.3.0 |
Mean (sd) : 15.9 (23.1) |
2395 distinct values |
103794 |
398824 |
|
110 |
Alcohol.4.0 |
Mean (sd) : 16.1 (23.3) |
2343 distinct values |
100285 |
402333 |
|
111 |
Starch.0.0 |
Mean (sd) : 123.4 (56.4) |
21492 distinct values |
70747 |
431871 |
|
112 |
Starch.1.0 |
Mean (sd) : 123.1 (52.5) |
22744 distinct values |
100602 |
402016 |
|
113 |
Starch.2.0 |
Mean (sd) : 120.7 (52.4) |
21714 distinct values |
83267 |
419351 |
|
114 |
Starch.3.0 |
Mean (sd) : 122.8 (52.3) |
22859 distinct values |
103794 |
398824 |
|
115 |
Starch.4.0 |
Mean (sd) : 122.1 (53) |
22850 distinct values |
100285 |
402333 |
|
116 |
Calcium.0.0 |
Mean (sd) : 987 (470.3) |
55013 distinct values |
70747 |
431871 |
|
117 |
Calcium.1.0 |
Mean (sd) : 992.3 (445) |
70502 distinct values |
100602 |
402016 |
|
118 |
Calcium.2.0 |
Mean (sd) : 968.1 (442) |
61276 distinct values |
83267 |
419351 |
|
119 |
Calcium.3.0 |
Mean (sd) : 976.4 (439.7) |
72012 distinct values |
103794 |
398824 |
|
120 |
Calcium.4.0 |
Mean (sd) : 985.4 (446.9) |
70112 distinct values |
100285 |
402333 |
|
121 |
Vitamin.E.0.0 |
Mean (sd) : 9.2 (5.6) |
3270 distinct values |
70747 |
431871 |
|
122 |
Vitamin.E.1.0 |
Mean (sd) : 9.4 (5.4) |
3431 distinct values |
100602 |
402016 |
|
123 |
Vitamin.E.2.0 |
Mean (sd) : 9.5 (5.4) |
3320 distinct values |
83267 |
419351 |
|
124 |
Vitamin.E.3.0 |
Mean (sd) : 9.2 (5.3) |
3379 distinct values |
103794 |
398824 |
|
125 |
Vitamin.E.4.0 |
Mean (sd) : 9.5 (5.4) |
3441 distinct values |
100285 |
402333 |
|
126 |
Daily.dietary.data.credible.0.0 |
1 distinct value |
0 : 677 (100.0%) |
677 |
501941 |
|
127 |
Daily.dietary.data.credible.1.0 |
1 distinct value |
0 : 710 (100.0%) |
710 |
501908 |
|
128 |
Daily.dietary.data.credible.2.0 |
1 distinct value |
0 : 633 (100.0%) |
633 |
501985 |
|
129 |
Daily.dietary.data.credible.3.0 |
1 distinct value |
0 : 670 (100.0%) |
670 |
501948 |
|
130 |
Daily.dietary.data.credible.4.0 |
1 distinct value |
0 : 804 (100.0%) |
804 |
501814 |
|
131 |
Time.spent.doing.vigorous.physical.activity.0.0 |
Mean (sd) : 398.6 (897.4) |
0 : 38349 (54.2%) |
70714 |
431904 |
|
132 |
Time.spent.doing.vigorous.physical.activity.1.0 |
Mean (sd) : 392.1 (907.1) |
0 : 60034 (59.7%) |
100602 |
402016 |
|
133 |
Time.spent.doing.vigorous.physical.activity.2.0 |
Mean (sd) : 409.2 (919.4) |
0 : 47657 (57.2%) |
83267 |
419351 |
|
134 |
Time.spent.doing.vigorous.physical.activity.3.0 |
Mean (sd) : 393.8 (903.9) |
0 : 60785 (58.6%) |
103794 |
398824 |
|
135 |
Time.spent.doing.vigorous.physical.activity.4.0 |
Mean (sd) : 397.3 (908.8) |
0 : 58257 (58.1%) |
100251 |
402367 |
|
136 |
Time.spent.doing.moderate.physical.activity.0.0 |
Mean (sd) : 717.4 (1076) |
0 : 17232 (24.4%) |
70714 |
431904 |
|
137 |
Time.spent.doing.moderate.physical.activity.1.0 |
Mean (sd) : 750.1 (1118.6) |
0 : 24445 (24.3%) |
100602 |
402016 |
|
138 |
Time.spent.doing.moderate.physical.activity.2.0 |
Mean (sd) : 774.1 (1135.4) |
0 : 19117 (23.0%) |
83267 |
419351 |
|
139 |
Time.spent.doing.moderate.physical.activity.3.0 |
Mean (sd) : 756.6 (1118.9) |
0 : 25737 (24.8%) |
103794 |
398824 |
|
140 |
Time.spent.doing.moderate.physical.activity.4.0 |
Mean (sd) : 767.4 (1131.3) |
0 : 23263 (23.2%) |
100251 |
402367 |
|
141 |
Time.spent.doing.light.physical.activity.0.0 |
Mean (sd) : 21.3 (85.9) |
0 : 4807 ( 6.8%) |
70714 |
431904 |
|
142 |
Time.spent.doing.light.physical.activity.1.0 |
Mean (sd) : 24.7 (96.2) |
0 : 5666 ( 5.6%) |
100602 |
402016 |
|
143 |
Time.spent.doing.light.physical.activity.2.0 |
Mean (sd) : 24.7 (94.3) |
0 : 4615 ( 5.5%) |
83267 |
419351 |
|
144 |
Time.spent.doing.light.physical.activity.3.0 |
Mean (sd) : 23.6 (92.8) |
0 : 5990 ( 5.8%) |
103794 |
398824 |
|
145 |
Time.spent.doing.light.physical.activity.4.0 |
Mean (sd) : 22.9 (88.4) |
0 : 5744 ( 5.7%) |
100251 |
402367 |
|
146 |
When.diet.questionnaire.completed.0.0 |
1. 2010-06-18_11:58:55 |
3 ( 0.0%) |
70716 |
431902 |
|
147 |
When.diet.questionnaire.completed.1.0 |
1. 2011-02-14_10:51:32 |
3 ( 0.0%) |
100602 |
402016 |
|
148 |
When.diet.questionnaire.completed.2.0 |
1. 2011-07-05_08:59:37 |
3 ( 0.0%) |
83267 |
419351 |
|
149 |
When.diet.questionnaire.completed.3.0 |
1. 2011-10-15_15:28:00 |
3 ( 0.0%) |
103795 |
398823 |
|
150 |
When.diet.questionnaire.completed.4.0 |
1. 2012-04-14_09:48:37 |
3 ( 0.0%) |
100251 |
402367 |
|
151 |
Number.of.diet.questionnaires.completed.0.0 |
Mean (sd) : 2.2 (1.2) |
1 : 84167 (39.9%) |
211024 |
291594 |
|
152 |
Reason.for.not.eating.or.drinking.normally.0.0 |
1. 3 |
409 ( 3.2%) |
12811 |
489807 |
|
153 |
Reason.for.not.eating.or.drinking.normally.0.1 |
Mean (sd) : 5.9 (0.4) |
4 : 9 ( 1.9%) |
484 |
502134 |
|
154 |
Reason.for.not.eating.or.drinking.normally.0.2 |
Min : 5 |
5 : 6 (75.0%) |
8 |
502610 |
|
155 |
Reason.for.not.eating.or.drinking.normally.0.3 |
All NA’s |
0 |
502618 |
||
156 |
Reason.for.not.eating.or.drinking.normally.1.0 |
Mean (sd) : 5.4 (0.7) |
3 : 954 ( 4.8%) |
19754 |
482864 |
|
157 |
Reason.for.not.eating.or.drinking.normally.1.1 |
Mean (sd) : 5.9 (0.4) |
4 : 11 ( 1.4%) |
776 |
501842 |
|
158 |
Reason.for.not.eating.or.drinking.normally.1.2 |
Min : 5 |
5 : 5 (27.8%) |
18 |
502600 |
|
159 |
Reason.for.not.eating.or.drinking.normally.1.3 |
1 distinct value |
6 : 2 (100.0%) |
2 |
502616 |
|
160 |
Reason.for.not.eating.or.drinking.normally.2.0 |
Mean (sd) : 5.4 (0.7) |
3 : 634 ( 3.7%) |
17247 |
485371 |
|
161 |
Reason.for.not.eating.or.drinking.normally.2.1 |
Mean (sd) : 5.9 (0.4) |
4 : 9 ( 1.4%) |
646 |
501972 |
|
162 |
Reason.for.not.eating.or.drinking.normally.2.2 |
Min : 5 |
5 : 4 (36.4%) |
11 |
502607 |
|
163 |
Reason.for.not.eating.or.drinking.normally.2.3 |
1 distinct value |
6 : 1 (100.0%) |
1 |
502617 |
|
164 |
Reason.for.not.eating.or.drinking.normally.3.0 |
Mean (sd) : 5.4 (0.8) |
3 : 982 ( 5.2%) |
18779 |
483839 |
|
165 |
Reason.for.not.eating.or.drinking.normally.3.1 |
Mean (sd) : 5.8 (0.4) |
4 : 7 ( 0.9%) |
745 |
501873 |
|
166 |
Reason.for.not.eating.or.drinking.normally.3.2 |
Min : 5 |
5 : 3 (13.6%) |
22 |
502596 |
|
167 |
Reason.for.not.eating.or.drinking.normally.3.3 |
1 distinct value |
6 : 1 (100.0%) |
1 |
502617 |
|
168 |
Reason.for.not.eating.or.drinking.normally.4.0 |
Mean (sd) : 5.4 (0.7) |
3 : 832 ( 4.5%) |
18411 |
484207 |
|
169 |
Reason.for.not.eating.or.drinking.normally.4.1 |
Mean (sd) : 5.9 (0.3) |
4 : 6 ( 0.8%) |
716 |
501902 |
|
170 |
Reason.for.not.eating.or.drinking.normally.4.2 |
Min : 5 |
5 : 1 (10.0%) |
10 |
502608 |
|
171 |
Reason.for.not.eating.or.drinking.normally.4.3 |
1 distinct value |
6 : 1 (100.0%) |
1 |
502617 |
|
172 |
Type.of.special.diet.followed.0.0 |
Mean (sd) : 10.3 (1.3) |
8 : 1639 (10.7%) |
15368 |
487250 |
|
173 |
Type.of.special.diet.followed.0.1 |
Mean (sd) : 10.8 (1.5) |
9 : 354 (24.9%) |
1421 |
501197 |
|
174 |
Type.of.special.diet.followed.0.2 |
Mean (sd) : 11.3 (1.2) |
10 : 92 (36.6%) |
251 |
502367 |
|
175 |
Type.of.special.diet.followed.0.3 |
Mean (sd) : 11.9 (0.9) |
11 : 24 (48.0%) |
50 |
502568 |
|
176 |
Type.of.special.diet.followed.0.4 |
Min : 12 |
12 : 13 (76.5%) |
17 |
502601 |
|
177 |
Type.of.special.diet.followed.0.5 |
1 distinct value |
13 : 4 (100.0%) |
4 |
502614 |
|
178 |
Type.of.special.diet.followed.1.0 |
Mean (sd) : 10.5 (1.4) |
8 : 2150 ( 9.5%) |
22630 |
479988 |
|
179 |
Type.of.special.diet.followed.1.1 |
Mean (sd) : 11 (1.6) |
9 : 471 (23.8%) |
1977 |
500641 |
|
180 |
Type.of.special.diet.followed.1.2 |
Mean (sd) : 11.5 (1.3) |
10 : 104 (34.2%) |
304 |
502314 |
|
181 |
Type.of.special.diet.followed.1.3 |
Mean (sd) : 12 (0.9) |
11 : 18 (37.5%) |
48 |
502570 |
|
182 |
Type.of.special.diet.followed.1.4 |
Min : 12 |
12 : 12 (80.0%) |
15 |
502603 |
|
183 |
Type.of.special.diet.followed.1.5 |
1 distinct value |
13 : 8 (100.0%) |
8 |
502610 |
|
184 |
Type.of.special.diet.followed.2.0 |
Mean (sd) : 10.5 (1.5) |
8 : 1927 (10.2%) |
18954 |
483664 |
|
185 |
Type.of.special.diet.followed.2.1 |
Mean (sd) : 11 (1.6) |
9 : 382 (23.4%) |
1636 |
500982 |
|
186 |
Type.of.special.diet.followed.2.2 |
Mean (sd) : 11.8 (1.3) |
10 : 63 (28.6%) |
220 |
502398 |
|
187 |
Type.of.special.diet.followed.2.3 |
Mean (sd) : 12.3 (0.9) |
11 : 11 (28.9%) |
38 |
502580 |
|
188 |
Type.of.special.diet.followed.2.4 |
1 distinct value |
12 : 8 (100.0%) |
8 |
502610 |
|
189 |
Type.of.special.diet.followed.2.5 |
1 distinct value |
13 : 4 (100.0%) |
4 |
502614 |
|
190 |
Type.of.special.diet.followed.3.0 |
Mean (sd) : 10.5 (1.5) |
8 : 2350 (10.5%) |
22340 |
480278 |
|
191 |
Type.of.special.diet.followed.3.1 |
Mean (sd) : 10.9 (1.6) |
9 : 498 (25.7%) |
1937 |
500681 |
|
192 |
Type.of.special.diet.followed.3.2 |
Mean (sd) : 11.7 (1.3) |
10 : 78 (29.4%) |
265 |
502353 |
|
193 |
Type.of.special.diet.followed.3.3 |
Mean (sd) : 12.3 (0.9) |
11 : 8 (25.8%) |
31 |
502587 |
|
194 |
Type.of.special.diet.followed.3.4 |
Min : 12 |
12 : 6 (75.0%) |
8 |
502610 |
|
195 |
Type.of.special.diet.followed.3.5 |
1 distinct value |
13 : 3 (100.0%) |
3 |
502615 |
|
196 |
Type.of.special.diet.followed.4.0 |
Mean (sd) : 10.5 (1.5) |
8 : 2312 (10.3%) |
22435 |
480183 |
|
197 |
Type.of.special.diet.followed.4.1 |
Mean (sd) : 11 (1.6) |
9 : 487 (25.9%) |
1880 |
500738 |
|
198 |
Type.of.special.diet.followed.4.2 |
Mean (sd) : 11.6 (1.3) |
10 : 89 (32.8%) |
271 |
502347 |
|
199 |
Type.of.special.diet.followed.4.3 |
Mean (sd) : 12 (0.8) |
11 : 16 (32.0%) |
50 |
502568 |
|
200 |
Type.of.special.diet.followed.4.4 |
Min : 12 |
12 : 13 (86.7%) |
15 |
502603 |
|
201 |
Type.of.special.diet.followed.4.5 |
1 distinct value |
13 : 7 (100.0%) |
7 |
502611 |
|
202 |
Type.of.meals.eaten.0.0 |
Mean (sd) : 464.2 (1.3) |
461 : 2895 ( 4.3%) |
66929 |
435689 |
|
203 |
Type.of.meals.eaten.0.1 |
Mean (sd) : 464.7 (0.7) |
462 : 296 ( 2.1%) |
13785 |
488833 |
|
204 |
Type.of.meals.eaten.0.2 |
Mean (sd) : 464.8 (0.5) |
463 : 37 ( 6.8%) |
547 |
502071 |
|
205 |
Type.of.meals.eaten.0.3 |
Min : 464 |
464 : 7 (35.0%) |
20 |
502598 |
|
206 |
Type.of.meals.eaten.0.4 |
1 distinct value |
465 : 1 (100.0%) |
1 |
502617 |
|
207 |
Type.of.meals.eaten.1.0 |
Mean (sd) : 464.2 (1.3) |
461 : 2939 ( 3.1%) |
95105 |
407513 |
|
208 |
Type.of.meals.eaten.1.1 |
Mean (sd) : 464.7 (0.7) |
462 : 332 ( 1.7%) |
19891 |
482727 |
|
209 |
Type.of.meals.eaten.1.2 |
Mean (sd) : 464.9 (0.4) |
463 : 37 ( 4.1%) |
900 |
501718 |
|
210 |
Type.of.meals.eaten.1.3 |
Min : 464 |
464 : 4 (25.0%) |
16 |
502602 |
|
211 |
Type.of.meals.eaten.1.4 |
1 distinct value |
465 : 2 (100.0%) |
2 |
502616 |
|
212 |
Type.of.meals.eaten.2.0 |
Mean (sd) : 464.2 (1.3) |
461 : 2635 ( 3.4%) |
78233 |
424385 |
|
213 |
Type.of.meals.eaten.2.1 |
Mean (sd) : 464.7 (0.7) |
462 : 346 ( 2.1%) |
16238 |
486380 |
|
214 |
Type.of.meals.eaten.2.2 |
Mean (sd) : 464.8 (0.5) |
463 : 28 ( 4.0%) |
704 |
501914 |
|
215 |
Type.of.meals.eaten.2.3 |
Min : 464 |
464 : 1 ( 9.1%) |
11 |
502607 |
|
216 |
Type.of.meals.eaten.2.4 |
All NA’s |
0 |
502618 |
||
217 |
Type.of.meals.eaten.3.0 |
Mean (sd) : 464.2 (1.3) |
461 : 3109 ( 3.2%) |
97435 |
405183 |
|
218 |
Type.of.meals.eaten.3.1 |
Mean (sd) : 464.7 (0.7) |
462 : 374 ( 1.9%) |
20077 |
482541 |
|
219 |
Type.of.meals.eaten.3.2 |
Mean (sd) : 464.9 (0.4) |
463 : 22 ( 2.8%) |
796 |
501822 |
|
220 |
Type.of.meals.eaten.3.3 |
Min : 464 |
464 : 4 (30.8%) |
13 |
502605 |
|
221 |
Type.of.meals.eaten.3.4 |
1 distinct value |
465 : 2 (100.0%) |
2 |
502616 |
|
222 |
Type.of.meals.eaten.4.0 |
Mean (sd) : 464.2 (1.3) |
461 : 2796 ( 3.0%) |
93656 |
408962 |
|
223 |
Type.of.meals.eaten.4.1 |
Mean (sd) : 464.7 (0.7) |
462 : 313 ( 1.7%) |
18691 |
483927 |
|
224 |
Type.of.meals.eaten.4.2 |
Mean (sd) : 464.9 (0.4) |
463 : 30 ( 3.8%) |
790 |
501828 |
|
225 |
Type.of.meals.eaten.4.3 |
Min : 464 |
464 : 3 (23.1%) |
13 |
502605 |
|
226 |
Type.of.meals.eaten.4.4 |
1 distinct value |
465 : 1 (100.0%) |
1 |
502617 |
|
227 |
Fasting.time.0.0 |
Mean (sd) : 3.8 (2.5) |
35 distinct values |
501310 |
1308 |
|
228 |
Fasting.time.1.0 |
Mean (sd) : 4 (1.7) |
24 distinct values |
20337 |
482281 |
|
229 |
Fasting.time.2.0 |
Mean (sd) : 3.6 (2.1) |
22 distinct values |
13172 |
489446 |
|
230 |
Food.weight.sum |
Mean (sd) : 2879.7 (4289.6) |
54035 distinct values |
502618 |
0 |
|
231 |
Food.weight.NA |
Mean (sd) : 4.1 (1.3) |
0 : 5683 ( 1.1%) |
502618 |
0 |
|
232 |
Food.weight.N.answered |
Mean (sd) : 0.9 (1.3) |
0 : 292193 (58.1%) |
502618 |
0 |
|
233 |
Food.weight.average |
Mean (sd) : 3180.3 (764.1) |
51312 distinct values |
210425 |
292193 |