Difference between revisions of "Food intake in Finland"

From Testiwiki
Jump to: navigation, search
(Calculations: objects.put added)
(Answer: plots fish intake per age group)
Line 13: Line 13:
  
 
<rcode graphics="1">
 
<rcode graphics="1">
 +
library(OpasnetUtils)
 +
library(ggplot2)
 +
 +
objects.get("84Sg6BQDs7potVJr")
 +
 +
#oprint(head(foodFI))
 +
 +
fishlong <- c(
 +
"Atlantic salmon (Salmo salar)",
 +
"Baltic herring (Clupea harengus membras)",
 +
"Fish and other seafood(by species, these are examples - variation by country):",
 +
"Herring (Clupea harengus)",
 +
"Pike (Esox lucius)",
 +
"Rainbow trout (Onchorchys mykiss)"
 +
)
 +
 +
fishshort <- c(
 +
"Atlantic salmon",
 +
"Baltic herring",
 +
"Fish and seafood",
 +
"Herring",
 +
"Pike",
 +
"Rainbow trout"
 +
)
 +
 +
# Why do we need to reorder the factor? It should be ordered already.
 +
 +
age =  c("6 mo", "7 mo", "8 mo", "9 mo", "7-11 mo", "10 mo", "11 mo", "1", "2", "3", "4-5", "6-9", "10-13", "14-17",
 +
"18-24", "25-34", "35-44", "45-54", "55-64", "65-74")
 +
foodFI$Age <- factor(foodFI$Age, age, ordered = TRUE)
 +
 +
#levels(foodFI$Food)[levels(foodFI$Food) %in% fishlong]
 +
levels(foodFI$Food)[levels(foodFI$Food) %in% fishlong] <- fishshort
 +
 +
cat("Fish intake data based on results from Beneris project (child data mainly from DIPP study.)\n")
 +
 +
#head(foodFI[foodFI$Food %in% fishshort , ])
 +
 +
ggplot(foodFI[foodFI$Parameter == "Fractile0.5" & foodFI$Food == fishshort , ], aes(x = Age, y = Result)) + #
 +
geom_point(aes(colour = Food)) +
 +
theme_grey(base_size = 24) +
 +
theme(axis.text.x = element_text(angle = 90, hjust = 1))
  
 
</rcode>
 
</rcode>
+
 
 
== Rationale ==
 
== Rationale ==
  

Revision as of 10:40, 12 August 2013



Question

What is intake of different food items (especially fish) in Finland in age groups 0-64 years?

Answer

+ Show code

Rationale

Data

The data contains:

a) Main food groups (ingredient level, classification used in EPIC)

b) Nutrients

c) Nutrient supplements

d) Fish and other seafood by species


Age groups are: 0, 1, 2, 3, 4-5, 6-9, 10-13, 14-17, 18-24, 25-34, 35-44, 45-54, 55-64,

The data here is generated from the DIPP study, a Type 1 Diabetes Prediction and Prevention (DIPP) project in Finland, where the cohort of 5993 children (77 % of those invited) participated in the main study, and 117 randomly selected infants in the validation study. [1] [2] This was carried out in the university hospitals of Turku, Tampere and Oulu.[3]


Unit

g/day AMONG THOSE WHO USE THIS PRODUCT

Calculations

+ Show code

See also

References

  1. Virtanen SM, Aro A. Dietary factors in the aetiology of diabetes. Ann Med 1994;26:469-478. Virtanen et al 1994
  2. Virtanen SM, Knip M. Nutritional risk predictors of beta-cell autoimmunity and type 1 diabetes at a young age. Am J Clin Nutr 2003;78:1053-67. Virtanen et al 2003
  3. DIPP study
  4. File is also in N:\YTOS\Projects\BENERIS\WP2\Datat pyydetyssa muodossa\Food consumption_FINLAND.xls (original data accessible only for the THL))
  5. D18 Subpopulation intakes. The Excel data file is in N:\YMTO\PROJECTS\BENERIS\Admin\Deliverables\D18 Subpopulation intakes\Beneris_D18_subpopulation_intakes_Finland_th.xls.