Detecting variance-controlling genes

Størrelse: px
Starte visningen fra side:

Download "Detecting variance-controlling genes"

Transkript

1 Detecting variance-controlling genes Lars Rönnegård Högskolan Dalarna Swedish University of Agricultural Sciences NordStat 2012

2 Outline Are there genes controlling phenotypic robustness? Methods to nd genes for phenotypic robustness The non-parametric Levene's test A full parametric method using Double Generalized Linear Models hglm: A package for tting hierarchical generalized linear models (HGLM) Double hierarchical generalized linear models (DHGLM) Modelling phenotypic robustness in animal models

3 Mean-controlling genes

4 Variance-controlling genes

5 Figure 1: Substitution eect of the MOT1 allele. (From Shen et al. 2012)

6 Non-parametric test Parametric test Levene's test for inequality of variance We have observations Y with sample size N divided into k subgroups, then Levene's test statistic is W = (N k) k i=1 N i( Zi. Z.. ) 2 (k 1) k i=1 N i j=1 ( Zij Zi.) 2 where Z ij = Y ij Ȳ i. with Y ij the value of Y for the j:th observation of the i:th subgroup, and with bars indicating subgroup means. The Levene test rejects the hypothesis that the variances are equal if: W > F (α,k 1,N k) Pros: Not sensitive to deviations from normality Cons: Not possible to include covariates and random eects (to adjust for family structure).

7 Non-parametric test Parametric test Levene's test for inequality of variance We have observations Y with sample size N divided into k subgroups, then Levene's test statistic is W = (N k) k i=1 N i( Zi. Z.. ) 2 (k 1) k i=1 N i j=1 ( Zij Zi.) 2 where Z ij = Y ij Ȳ i. with Y ij the value of Y for the j:th observation of the i:th subgroup, and with bars indicating subgroup means. The Levene test rejects the hypothesis that the variances are equal if: W > F (α,k 1,N k) Pros: Not sensitive to deviations from normality Cons: Not possible to include covariates and random eects (to adjust for family structure).

8 Results from Arabidopsis Non-parametric test Parametric test Shen, Pettersson, Rönnegård and Carlborg (2012). Inheritance beyond plain heritability: variance controlling genes in Arabidopsis thaliana. PLoS Genetics (accepted) Arabidopsis thaliana study including 199 individuals Trait: molybdenum content 216,130 SNP Most signicant SNP located within the gene: ion transporter gene MOT1

9 Figure 2: A gene controlling robustness of molybdenum contents in Arabidopsis. Top gure (a) shows logp values for mean-controlling SNP (yellow) and variance-controlling SNP (dierent colours for dierent chromosomes). Bottom gure (b) shows substitution eect of the MOT1 allele. (Shen et al PLoS Genetics)

10 Results from human studies Using Levene's test to nd interactions Non-parametric test Parametric test Paré et al (2010) On the Use of Variance per Genotype as a Tool to Identify Quantitative Trait Interaction Eects: A Report from the Women's Genome Health Study. PLoS Genetics 6(6): e Women's Genome Health Study including 21,799 American women Trait: Inammatory marker, C-reactive protein (CRP) 339,596 SNP The SNP rs had P-value Interaction eects tested using a linear model SNP x BMI (with P-value 10 9 ) Their conclusion: detection of variance heterogeneity is a way to prioritize search for interaction eects

11 Results from human studies Using Levene's test to nd interactions Non-parametric test Parametric test Paré et al (2010) On the Use of Variance per Genotype as a Tool to Identify Quantitative Trait Interaction Eects: A Report from the Women's Genome Health Study. PLoS Genetics 6(6): e Women's Genome Health Study including 21,799 American women Trait: Inammatory marker, C-reactive protein (CRP) 339,596 SNP The SNP rs had P-value Interaction eects tested using a linear model SNP x BMI (with P-value 10 9 ) Their conclusion: detection of variance heterogeneity is a way to prioritize search for interaction eects

12 Results from human studies Using Levene's test to nd interactions Non-parametric test Parametric test Paré et al (2010) On the Use of Variance per Genotype as a Tool to Identify Quantitative Trait Interaction Eects: A Report from the Women's Genome Health Study. PLoS Genetics 6(6): e Women's Genome Health Study including 21,799 American women Trait: Inammatory marker, C-reactive protein (CRP) 339,596 SNP The SNP rs had P-value Interaction eects tested using a linear model SNP x BMI (with P-value 10 9 ) Their conclusion: detection of variance heterogeneity is a way to prioritize search for interaction eects

13 Non-parametric test Parametric test Using Double GLM to t a parametric model

14 Non-parametric test Parametric test Introduction to genome-wide association studies

15 GWAS Non-parametric test Parametric test Example: 3 individuals and 5 SNPs Linear model y = µ + x j b + e with y = and x1 = and ˆb = 6.5 (P = 0.56) Calculate P-value for each b at dierent positions and plot log 10 P

16 GWAS Non-parametric test Parametric test Example: 3 individuals and 5 SNPs Linear model y = µ + x j b + e with y = and x1 = and ˆb = 6.5 (P = 0.56) Calculate P-value for each b at dierent positions and plot log 10 P

17 GWAS Non-parametric test Parametric test Example: 3 individuals and 5 SNPs Linear model y = µ + x j b + e with y = and x1 = and ˆb = 6.5 (P = 0.56) Calculate P-value for each b at dierent positions and plot log 10 P

18 A GWAS plot Non-parametric test Parametric test Example from: Weedon et al. 2008, Nature Genetics 40,

19 Model Non-parametric test Parametric test Traditional model for single SNP regression y = µ + x j b + e e N(0,σ 2 e ) Model to detect variance-controlling genes y = µ + x j b + e e i N(0,σ 2 e,i) ; log(σ 2 e ) = c + x j v

20 Model Non-parametric test Parametric test Traditional model for single SNP regression y = µ + x j b + e e N(0,σ 2 e ) Model to detect variance-controlling genes y = µ + x j b + e e i N(0,σ 2 e,i) ; log(σ 2 e ) = c + x j v

21 Using GLM Non-parametric test Parametric test Traditional model for single SNP regression y = µ + x j b + e e N(0,σ 2 e ) model1 <- glm(y ~ SNP, family = gaussian(link = identity)) Model to detect variance-controlling genes y = µ + x j b + e e i N(0,σe,i) 2 ; log(σ 2 e ) = c + x j v Model easy to t using Gordon K. Smyth's dglm package in R library(dglm) model2 <- dglm(y ~ SNP, ~ SNP, family = gaussian(link = identity))

22 Using GLM Non-parametric test Parametric test Traditional model for single SNP regression y = µ + x j b + e e N(0,σ 2 e ) model1 <- glm(y ~ SNP, family = gaussian(link = identity)) Model to detect variance-controlling genes y = µ + x j b + e e i N(0,σe,i) 2 ; log(σ 2 e ) = c + x j v Model easy to t using Gordon K. Smyth's dglm package in R library(dglm) model2 <- dglm(y ~ SNP, ~ SNP, family = gaussian(link = identity))

23

24 The hglm package Example vqtl: library(hglm) model2 <- hglm(fixed = y ~ SNP, disp = ~ SNP, random = ~ 1 ID, family = gaussian(link = identity) ) Design matrix notation: model2 <- hglm(x, y, Z, X.disp=X, family = gaussian(link = identity) )

25 The hglm package Example vqtl: library(hglm) model2 <- hglm(fixed = y ~ SNP, disp = ~ SNP, random = ~ 1 ID, family = gaussian(link = identity) ) Design matrix notation: model2 <- hglm(x, y, Z, X.disp=X, family = gaussian(link = identity) )

26 Books on HGLM and the extended likelihood principle

27 Rönnegård, Felleki, Fikse, Mulder and Strandberg (2010) Genetic heterogeneity of residual variance - estimation of variance components using double hierarchical generalized linear models. Genetics Selection Evolution 42:8.

28 Milk yield (liter/day) Daughter average Bull 1 Bull 2

29 Milk yield (liter/day) x x 30 x x x Daughter average Bull 1 Bull 2

30 Linear mixed model using pedigree information Animal model y = Xβ + Za + e a N(0, Aσ 2 a ) e N(0,σ 2 e ) a i = additive genetic eect for individual i A= relationship matrix (calculated from pedigree information) Estimated Breeding Values = Best Linear Unbiased Predictor (BLUP) of a i

31 Extending the animal model y = Xβ + Za + e a N(0, Aσ 2 a ) e i N(0,σ 2 e,i), log(σ 2 e ) = X d β d + Za d ad N(0, Aσ 2 a d ) In Rönnegård et al. (2010 GSE 42:8) we t a DHGLM for pig litter size data (previously studied in Sorensen and Waagepetersen (2003) using MCMC) DHGLM possible to t using existing variance-component estimation software (eg ASReml).

32 Extending the animal model y = Xβ + Za + e a N(0, Aσ 2 a ) e i N(0,σ 2 e,i), log(σ 2 e ) = X d β d + Za d ad N(0, Aσ 2 a d ) In Rönnegård et al. (2010 GSE 42:8) we t a DHGLM for pig litter size data (previously studied in Sorensen and Waagepetersen (2003) using MCMC) DHGLM possible to t using existing variance-component estimation software (eg ASReml).

33 Data Description Data from Danish Pig Production. Pig litter size from 4,149 sows mean litter size 10.3 The data includes 10,060 records from these 4,149 sows in 82 farms. Fixed eects: farm, season, type of insemination, parity

34 Results on pig litter size Table 1 - DHGLM and MCMC estimates σ 2 a σ 2 a d ρ DHGLM (-0.52) MCMC Felleki, Lee, Lee, Gilmour and Rönnegård (2012) Estimation of breeding values for mean and dispersion, their variance and correlation using double hierarchical generalized linear models (manuscript)

35 Results on pig litter size Table 1 - DHGLM and MCMC estimates σ 2 a σ 2 a d ρ DHGLM (-0.52) MCMC Felleki, Lee, Lee, Gilmour and Rönnegård (2012) Estimation of breeding values for mean and dispersion, their variance and correlation using double hierarchical generalized linear models (manuscript)

36 Method recently applied on a large dairy cow data set Swedish Holstein Cows ( ) including 1,693,154 observations from 177,411 animals Trait: milk yield (liter/day) rst lactation only where each cow had on average 9.5 records Rönnegård, Felleki, Fikse, Mulder and Strandberg (2012) Variance component and breeding value estimation for environmental sensitivity in Swedish Holstein dairy cattle (submitted manuscript)

37 Method recently applied on a large dairy cow data set Swedish Holstein Cows ( ) including 1,693,154 observations from 177,411 animals Trait: milk yield (liter/day) rst lactation only where each cow had on average 9.5 records Rönnegård, Felleki, Fikse, Mulder and Strandberg (2012) Variance component and breeding value estimation for environmental sensitivity in Swedish Holstein dairy cattle (submitted manuscript)

38 Thank you! Lars Rönnegård Special thanks to my students Majbritt Felleki and Xia Shen. Financial support from FORMAS and the EU-nanced RobustMilk project.

Generalized Probit Model in Design of Dose Finding Experiments. Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US

Generalized Probit Model in Design of Dose Finding Experiments. Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US Generalized Probit Model in Design of Dose Finding Experiments Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US Outline Motivation Generalized probit model Utility function Locally optimal designs

Læs mere

DoodleBUGS (Hands-on)

DoodleBUGS (Hands-on) DoodleBUGS (Hands-on) Simple example: Program: bino_ave_sim_doodle.odc A simulation example Generate a sample from F=(r1+r2)/2 where r1~bin(0.5,200) and r2~bin(0.25,100) Note that E(F)=(100+25)/2=62.5

Læs mere

Basic statistics for experimental medical researchers

Basic statistics for experimental medical researchers Basic statistics for experimental medical researchers Sample size calculations September 15th 2016 Christian Pipper Department of public health (IFSV) Faculty of Health and Medicinal Science (SUND) E-mail:

Læs mere

Reexam questions in Statistics and Evidence-based medicine, august sem. Medis/Medicin, Modul 2.4.

Reexam questions in Statistics and Evidence-based medicine, august sem. Medis/Medicin, Modul 2.4. Reexam questions in Statistics and Evidence-based medicine, august 2013 2. sem. Medis/Medicin, Modul 2.4. Statistics : ESSAY-TYPE QUESTION 1. Intelligence tests are constructed such that the average score

Læs mere

Nordisk Avlsværdivurdering

Nordisk Avlsværdivurdering (NAV) Joint Nordic Genetic Evaluation General manager Gert Pedersen Aamand gap@landscentret.dk Responsible for estimation of BVs for cattle in Finland, Sweden and Denmark 2002 Development has started 15

Læs mere

Statistik for MPH: 7

Statistik for MPH: 7 Statistik for MPH: 7 3. november 2011 www.biostat.ku.dk/~pka/mph11 Attributable risk, bestemmelse af stikprøvestørrelse (Silva: 333-365, 381-383) Per Kragh Andersen 1 Fra den 6. uges statistikundervisning:

Læs mere

Multivariate Extremes and Dependence in Elliptical Distributions

Multivariate Extremes and Dependence in Elliptical Distributions Multivariate Extremes and Dependence in Elliptical Distributions Filip Lindskog, RiskLab, ETH Zürich joint work with Henrik Hult, KTH Stockholm I II III IV V Motivation Elliptical distributions A class

Læs mere

X M Y. What is mediation? Mediation analysis an introduction. Definition

X M Y. What is mediation? Mediation analysis an introduction. Definition What is mediation? an introduction Ulla Hvidtfeldt Section of Social Medicine - Investigate underlying mechanisms of an association Opening the black box - Strengthen/support the main effect hypothesis

Læs mere

Genetic Evaluation of Calving Traits in Denmark, Finland, and Sweden

Genetic Evaluation of Calving Traits in Denmark, Finland, and Sweden Genetic Evaluation of Calving Traits in Denmark, Finland, and Sweden Dorothee Boelling Ulrik Sander Nielsen Jukka Pösö Jan-Åke Eriksson Gert Pedersen Aamand Introduction NAV: joined breeding value estimation

Læs mere

Skovgaard International In Denmark and Abroad

Skovgaard International In Denmark and Abroad Skovgaard International In Denmark and Abroad Skovgaard International ApS is an independent consulting company specialised in strategic planning and designing modern pig production units. Curriculum Vitae

Læs mere

Kursus 02323: Introducerende Statistik. Forelæsning 12: Forsøgsplanlægning. Peder Bacher

Kursus 02323: Introducerende Statistik. Forelæsning 12: Forsøgsplanlægning. Peder Bacher Kursus 02323: Introducerende Statistik Forelæsning 12: Forsøgsplanlægning Peder Bacher DTU Compute, Dynamiske Systemer Bygning 303B, Rum 009 Danmarks Tekniske Universitet 2800 Lyngby Danmark e-mail: pbac@dtu.dk

Læs mere

Probabilistic properties of modular addition. Victoria Vysotskaya

Probabilistic properties of modular addition. Victoria Vysotskaya Probabilistic properties of modular addition Victoria Vysotskaya JSC InfoTeCS, NPK Kryptonite CTCrypt 19 / June 4, 2019 vysotskaya.victory@gmail.com Victoria Vysotskaya (Infotecs, Kryptonite) Probabilistic

Læs mere

Research on development of international beef genetic evaluations for calving traits

Research on development of international beef genetic evaluations for calving traits Research on development of international beef genetic evaluations for calving traits Czech Research Team Interbeef Working Group Meeting Prague, Czech Republic, 21 st November 2013 Current situation in

Læs mere

Chapter 14. Mendel & Genetics. AP Biology

Chapter 14. Mendel & Genetics. AP Biology Chapter 14. Mendel & Genetics Gregor Mendel Modern genetics began in the mid-1800s in an abbey garden, where a monk named Gregor Mendel documented inheritance in peas used experimental method used quantitative

Læs mere

Measuring Evolution of Populations

Measuring Evolution of Populations Measuring Evolution of Populations 2007-2008 5 Agents of evolutionary change Mutation Gene Flow Non-random mating Genetic Drift Selection Populations & gene pools Concepts a population is a localized group

Læs mere

Sign variation, the Grassmannian, and total positivity

Sign variation, the Grassmannian, and total positivity Sign variation, the Grassmannian, and total positivity arxiv:1503.05622 Slides available at math.berkeley.edu/~skarp Steven N. Karp, UC Berkeley FPSAC 2015 KAIST, Daejeon Steven N. Karp (UC Berkeley) Sign

Læs mere

Oversigt. 1 Motiverende eksempel - energiforbrug. 2 Hypotesetest (Repetition) 3 Two-sample t-test og p-værdi. 4 Konfidensinterval for forskellen

Oversigt. 1 Motiverende eksempel - energiforbrug. 2 Hypotesetest (Repetition) 3 Two-sample t-test og p-værdi. 4 Konfidensinterval for forskellen Kursus 02402/02323 Introducerende Statistik Forelæsning 6: Sammenligning af to grupper Oversigt 1 Motiverende eksempel - energiforbrug 2 Hypotesetest (Repetition) 3 Klaus K. Andersen og Per Bruun Brockhoff

Læs mere

Vina Nguyen HSSP July 13, 2008

Vina Nguyen HSSP July 13, 2008 Vina Nguyen HSSP July 13, 2008 1 What does it mean if sets A, B, C are a partition of set D? 2 How do you calculate P(A B) using the formula for conditional probability? 3 What is the difference between

Læs mere

Introduction Ronny Bismark

Introduction Ronny Bismark Introduction 1 Outline Motivation / Problem Statement Tool holder Sensor calibration Motion primitive Concatenation of clouds Segmentation Next possible pose Problems and Challenges Future Work 2 Motivation

Læs mere

Statistik for MPH: oktober Attributable risk, bestemmelse af stikprøvestørrelse (Silva: , )

Statistik for MPH: oktober Attributable risk, bestemmelse af stikprøvestørrelse (Silva: , ) Statistik for MPH: 7 29. oktober 2015 www.biostat.ku.dk/~pka/mph15 Attributable risk, bestemmelse af stikprøvestørrelse (Silva: 333-365, 381-383) Per Kragh Andersen 1 Fra den 6. uges statistikundervisning:

Læs mere

Kursus 02402/02323 Introduktion til statistik. Forelæsning 13: Et overblik over kursets indhold. Klaus K. Andersen og Per Bruun Brockhoff

Kursus 02402/02323 Introduktion til statistik. Forelæsning 13: Et overblik over kursets indhold. Klaus K. Andersen og Per Bruun Brockhoff Kursus 02402/02323 Introduktion til statistik Forelæsning 13: Et overblik over kursets indhold Klaus K. Andersen og Per Bruun Brockhoff DTU Compute, Statistik og Dataanalyse Danmarks Tekniske Universitet

Læs mere

Association between occupational exposures and gestational hypertension, preeclampsia, and gestational diabetes in Sweden,

Association between occupational exposures and gestational hypertension, preeclampsia, and gestational diabetes in Sweden, Association between occupational exposures and gestational hypertension, preeclampsia, and gestational diabetes in Sweden, 1994-2012 Claudia Lissåker 1, Filip Norlén 1, Per Gustavsson 1, 2, Pernilla Wiebert

Læs mere

Faculty of Health Sciences. Basal Statistik. Logistisk regression mm. Lene Theil Skovgaard. 5. marts 2018

Faculty of Health Sciences. Basal Statistik. Logistisk regression mm. Lene Theil Skovgaard. 5. marts 2018 Faculty of Health Sciences Basal Statistik Logistisk regression mm. Lene Theil Skovgaard 5. marts 2018 1 / 22 APPENDIX vedr. SPSS svarende til diverse slides: To-gange-to tabeller, s. 3 Plot af binære

Læs mere

KA 4.2 Kvantitative Forskningsmetoder Forår 2010

KA 4.2 Kvantitative Forskningsmetoder Forår 2010 KA 4.2 Kvantitative Forskningsmetoder Forår 2010 Besvar alle spørgsmål. Brug ikke mere end én side af tekst på de åbne spørgsmål som er markeret * Answer all questions. Do not write more than one page

Læs mere

Ban Ki-Moon har slået tonen an: Milk is perfection

Ban Ki-Moon har slået tonen an: Milk is perfection Ban Ki-Moon har slået tonen an: Milk is perfection Mælk og Mejeriprodukter og realiseringen af FN s bæredygtighedsmål Jørgen Hald Christensen CEO Danish Dairy Board Danish Dairy Board Mejeribrugets Dag

Læs mere

Question I.1 (1) We use Method 3.8 from Chapter 3 to achieve

Question I.1 (1) We use Method 3.8 from Chapter 3 to achieve Correct answers: 35132 25225 11354 53441 12141 32235 Exercise I Question I.1 (1) We use Method 3.8 from Chapter 3 to achieve And since, qt(0.95, 24) ## [1] 1.710882 90.4 ± t 0.95 10.3 25 We get that 10.3

Læs mere

Aggregation based on road topologies for large scale VRPs

Aggregation based on road topologies for large scale VRPs Aggregation based on road topologies for large scale VRPs Eivind Nilssen, SINTEF Oslo, June 12-14 2008 1 Outline Motivation and background Aggregation Some results Conclusion 2 Motivation Companies with

Læs mere

Besvarelser til Lineær Algebra Reeksamen Februar 2017

Besvarelser til Lineær Algebra Reeksamen Februar 2017 Besvarelser til Lineær Algebra Reeksamen - 7. Februar 207 Mikkel Findinge Bemærk, at der kan være sneget sig fejl ind. Kontakt mig endelig, hvis du skulle falde over en sådan. Dette dokument har udelukkende

Læs mere

Kursus 02402/02323 Introducerende Statistik. Forelæsning 6: Sammenligning af to grupper

Kursus 02402/02323 Introducerende Statistik. Forelæsning 6: Sammenligning af to grupper Kursus 02402/02323 Introducerende Statistik Forelæsning 6: Sammenligning af to grupper Peder Bacher DTU Compute, Dynamiske Systemer Bygning 303B, Rum 009 Danmarks Tekniske Universitet 2800 Lyngby Danmark

Læs mere

Vomfyldekorrektion i tidlig laktation

Vomfyldekorrektion i tidlig laktation Vomfyldekorrektion i tidlig laktation Resultater fra projektet vægt på fodereffektivitet i praksis Udarbejdet af: Vivi M. Thorup, Auning Data vmt@thorupconsult.dk Vomfyldekorrektion i tidlig laktation

Læs mere

The GAssist Pittsburgh Learning Classifier System. Dr. J. Bacardit, N. Krasnogor G53BIO - Bioinformatics

The GAssist Pittsburgh Learning Classifier System. Dr. J. Bacardit, N. Krasnogor G53BIO - Bioinformatics The GAssist Pittsburgh Learning Classifier System Dr. J. Bacardit, N. Krasnogor G53BIO - Outline bioinformatics Summary and future directions Objectives of GAssist GAssist [Bacardit, 04] is a Pittsburgh

Læs mere

Linear regression. Statistical modelling. Gilles Guillot. September 17,

Linear regression. Statistical modelling. Gilles Guillot. September 17, Linear regression Statistical modelling Gilles Guillot gigu@dtu.dk September 17, 2013 Gilles Guillot (gigu@dtu.dk) Linear regression September 17, 2013 1 / 33 Example Example Concentration of DDT (a toxic

Læs mere

The soil-plant systems and the carbon circle

The soil-plant systems and the carbon circle The soil-plant systems and the carbon circle Workshop 15. november 2013 Bente Hessellund Andersen The soil-plant systems influence on the climate Natural CO 2 -sequestration The soil-plant systems influence

Læs mere

Application form for access to data and biological samples Ref. no

Application form for access to data and biological samples Ref. no Application form for access to data and biological samples Ref. 2016-02 Project title: Applicant: Other partners taking part in the project Names and work addresses: "Skilsmisse og selvvurderet mentalt

Læs mere

Kvant Eksamen December 2010 3 timer med hjælpemidler. 1 Hvad er en continuous variable? Giv 2 illustrationer.

Kvant Eksamen December 2010 3 timer med hjælpemidler. 1 Hvad er en continuous variable? Giv 2 illustrationer. Kvant Eksamen December 2010 3 timer med hjælpemidler 1 Hvad er en continuous variable? Giv 2 illustrationer. What is a continuous variable? Give two illustrations. 2 Hvorfor kan man bedre drage konklusioner

Læs mere

Sommereksamen 2013. Bacheloruddannelsen i Medicin/Medicin med industriel specialisering

Sommereksamen 2013. Bacheloruddannelsen i Medicin/Medicin med industriel specialisering Sommereksamen 2013 Titel på kursus: Uddannelse: Semester: Statistik og evidensbaseret medicin Bacheloruddannelsen i Medicin/Medicin med industriel specialisering 2. semester Eksamensdato: 17. juni 2013

Læs mere

Generalized Tietjen Moore test to detect outliers

Generalized Tietjen Moore test to detect outliers Mathematical Sciences (2018) 12:7 15 https://doi.org/10.1007/s40096-017-0239-8 (0456789().,-volV)(0456789().,-volV) ORIGINAL RESEARCH Generalized Tietjen Moore test to detect outliers Derya Karagöz 1 Serpil

Læs mere

Portal Registration. Check Junk Mail for activation . 1 Click the hyperlink to take you back to the portal to confirm your registration

Portal Registration. Check Junk Mail for activation  . 1 Click the hyperlink to take you back to the portal to confirm your registration Portal Registration Step 1 Provide the necessary information to create your user. Note: First Name, Last Name and Email have to match exactly to your profile in the Membership system. Step 2 Click on the

Læs mere

Adaptive Algorithms for Blind Separation of Dependent Sources. George V. Moustakides INRIA, Sigma 2

Adaptive Algorithms for Blind Separation of Dependent Sources. George V. Moustakides INRIA, Sigma 2 Adaptive Algorithms for Blind Separation of Dependent Sources George V. Moustakides INRIA, Sigma 2 Problem definition-motivation Existing adaptive scheme-independence General adaptive scheme-dependence

Læs mere

Linear Programming ١ C H A P T E R 2

Linear Programming ١ C H A P T E R 2 Linear Programming ١ C H A P T E R 2 Problem Formulation Problem formulation or modeling is the process of translating a verbal statement of a problem into a mathematical statement. The Guidelines of formulation

Læs mere

Muligheder: NB: test for µ 1 = µ 2 i model med blocking ækvivalent med parret t-test! Ide: anskue β j som stikprøve fra normalfordeling.

Muligheder: NB: test for µ 1 = µ 2 i model med blocking ækvivalent med parret t-test! Ide: anskue β j som stikprøve fra normalfordeling. Eksempel: dæktyper og brændstofforbrug (opgave 25 side 319) Program: cars 1 2 3 4 5... radial 4.2 4.7 6.6 7.0 6.7... belt 4.1 4.9 6.2 6.9 6.8... Muligheder: 1. vi starter med at gennemgå opgave 7 side

Læs mere

Basal Statistik - SPSS

Basal Statistik - SPSS Faculty of Health Sciences Basal Statistik - SPSS Korrelerede målinger. Lene Theil Skovgaard 8. april 2019 1 / 21 APPENDIX med instruktioner til SPSS-analyse svarende til nogle af slides Plots: s. 3, 4,

Læs mere

PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU

PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU OUTLINE INEFFICIENCY OF ATTILA WAYS TO PARALLELIZE LOW COMPATIBILITY IN THE COMPILATION A SOLUTION

Læs mere

Basal Statistik - SPSS

Basal Statistik - SPSS Faculty of Health Sciences APPENDIX Basal Statistik - SPSS Korrelerede målinger. Lene Theil Skovgaard 8. april 2019 med instruktioner til SPSS-analyse svarende til nogle af slides Plots: s. 3, 4, 7, 11-12

Læs mere

SPSS appendix SPSS APPENDIX. Box plots. Indlæsning. Faculty of Health Sciences. Basal Statistik: Sammenligning af grupper, Variansanalyse

SPSS appendix SPSS APPENDIX. Box plots. Indlæsning. Faculty of Health Sciences. Basal Statistik: Sammenligning af grupper, Variansanalyse Faculty of Health Sciences SPSS APPENDIX SPSS appendix Basal Statistik: Sammenligning af grupper, Variansanalyse Lene Theil Skovgaard 12. september 2017 med instruktioner til SPSS-analyse svarende til

Læs mere

Faculty of Health Sciences. SPSS appendix. Basal Statistik: Sammenligning af grupper, Variansanalyse. Lene Theil Skovgaard. 22.

Faculty of Health Sciences. SPSS appendix. Basal Statistik: Sammenligning af grupper, Variansanalyse. Lene Theil Skovgaard. 22. Faculty of Health Sciences SPSS appendix Basal Statistik: Sammenligning af grupper, Variansanalyse Lene Theil Skovgaard 22. januar 2018 1 / 20 SPSS APPENDIX med instruktioner til SPSS-analyse svarende

Læs mere

SPSS appendix SPSS APPENDIX. Box plots. Indlæsning. Faculty of Health Sciences. Basal Statistik: Sammenligning af grupper, Variansanalyse

SPSS appendix SPSS APPENDIX. Box plots. Indlæsning. Faculty of Health Sciences. Basal Statistik: Sammenligning af grupper, Variansanalyse Faculty of Health Sciences SPSS APPENDIX SPSS appendix Basal Statistik: Sammenligning af grupper, Variansanalyse Lene Theil Skovgaard 11. februar 2019 med instruktioner til SPSS-analyse svarende til nogle

Læs mere

Analyseinstitut for Forskning

Analyseinstitut for Forskning Analyseinstitut for Forskning CIS3 The Danish Non-response Analysis Peter S. Mortensen Notat 2003/1 fra Analyseinstitut for Forskning The Danish Institute for Studies in Research and Research Policy Finlandsgade

Læs mere

Module I: Statistical Background on Multi-level Models

Module I: Statistical Background on Multi-level Models Module I: Statistical Background on Multi-level Models Francesca Dominici Michael Griswold The Johns Hopkins University Bloomberg School of Public Health 2005 Hopkins Epi-Biostat Summer Institute 1 Statistical

Læs mere

The X Factor. Målgruppe. Læringsmål. Introduktion til læreren klasse & ungdomsuddannelser Engelskundervisningen

The X Factor. Målgruppe. Læringsmål. Introduktion til læreren klasse & ungdomsuddannelser Engelskundervisningen The X Factor Målgruppe 7-10 klasse & ungdomsuddannelser Engelskundervisningen Læringsmål Eleven kan give sammenhængende fremstillinger på basis af indhentede informationer Eleven har viden om at søge og

Læs mere

A multimodel data assimilation framework for hydrology

A multimodel data assimilation framework for hydrology A multimodel data assimilation framework for hydrology Antoine Thiboult, François Anctil Université Laval June 27 th 2017 What is Data Assimilation? Use observations to improve simulation 2 of 8 What is

Læs mere

Afsnit E1 Konfidensinterval for middelværdi i normalfordeling med kendt standardafvigelse

Afsnit E1 Konfidensinterval for middelværdi i normalfordeling med kendt standardafvigelse Afsnit 8.3 - E1 Konfidensinterval for middelværdi i normalfordeling med kendt standardafvigelse Først skal normalfordelingen lige defineres i Maple, så vi kan benytte den i vores udregninger. Dette gøres

Læs mere

Intro to: Symposium on Syntactic Islands in Scandinavian and English

Intro to: Symposium on Syntactic Islands in Scandinavian and English Intro to: Symposium on Syntactic Islands in Scandinavian and English Ken Ramshøj Christensen Dept. of English, AU Symposium on Syntactic Islands in Scandinavian and English Aarhus University, June 11-12,

Læs mere

Unitel EDI MT940 June 2010. Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004)

Unitel EDI MT940 June 2010. Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004) Unitel EDI MT940 June 2010 Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004) Contents 1. Introduction...3 2. General...3 3. Description of the MT940 message...3 3.1.

Læs mere

Ikke-parametriske tests

Ikke-parametriske tests Ikke-parametriske tests 2 Dagens menu t testen Hvordan var det nu lige det var? Wilcoxson Mann Whitney U Kruskall Wallis Friedman Kendalls og Spearmans correlation 3 t-testen Patient Drug Placebo difference

Læs mere

Lovkrav vs. udvikling af sundhedsapps

Lovkrav vs. udvikling af sundhedsapps Lovkrav vs. udvikling af sundhedsapps Health apps give patients better control User Data Social media Pharma Products User behaviour Relatives www Self monitoring (app) data extract Healthcare specialists

Læs mere

Engelsk. Niveau C. De Merkantile Erhvervsuddannelser September 2005. Casebaseret eksamen. www.jysk.dk og www.jysk.com.

Engelsk. Niveau C. De Merkantile Erhvervsuddannelser September 2005. Casebaseret eksamen. www.jysk.dk og www.jysk.com. 052430_EngelskC 08/09/05 13:29 Side 1 De Merkantile Erhvervsuddannelser September 2005 Side 1 af 4 sider Casebaseret eksamen Engelsk Niveau C www.jysk.dk og www.jysk.com Indhold: Opgave 1 Presentation

Læs mere

k UAFHÆNGIGE grupper Oversigt 1 Intro eksempel 2 Model og hypotese 3 Beregning - variationsopspaltning og ANOVA tabellen 4 Hypotesetest (F-test)

k UAFHÆNGIGE grupper Oversigt 1 Intro eksempel 2 Model og hypotese 3 Beregning - variationsopspaltning og ANOVA tabellen 4 Hypotesetest (F-test) Kursus 02323: Introduktion til Statistik Forelæsning 11: Envejs variansanalse, ANOVA Peder Bacher DTU Compute, Dnamiske Sstemer Bgning 303B, Rum 009 Danmarks Tekniske Universitet 2800 Lngb Danmark e-mail:

Læs mere

Basal Statistik - SPSS

Basal Statistik - SPSS Faculty of Health Sciences Basal Statistik - SPSS Kovariansanalyse. Lene Theil Skovgaard 1. oktober 2018 1 / 12 APPENDIX med instruktioner til SPSS-analyse svarende til nogle af slides Bland-Altman plot,

Læs mere

Project Step 7. Behavioral modeling of a dual ported register set. 1/8/ L11 Project Step 5 Copyright Joanne DeGroat, ECE, OSU 1

Project Step 7. Behavioral modeling of a dual ported register set. 1/8/ L11 Project Step 5 Copyright Joanne DeGroat, ECE, OSU 1 Project Step 7 Behavioral modeling of a dual ported register set. Copyright 2006 - Joanne DeGroat, ECE, OSU 1 The register set Register set specifications 16 dual ported registers each with 16- bit words

Læs mere

Basal Statistik - SPSS

Basal Statistik - SPSS Faculty of Health Sciences Basal Statistik - SPSS Kovariansanalyse. Lene Theil Skovgaard 3. oktober 2017 1 / 12 APPENDIX med instruktioner til SPSS-analyse svarende til nogle af slides Bland-Altman plot,

Læs mere

Hvorfor bøvle med MIXED

Hvorfor bøvle med MIXED Hvorfor bøvle med MIXED E. Jørgensen 1 1 Genetik og Bioteknologi Danmarks Jordbrgsforskning Forskergrppe for Statistik og besltningsteori Årslev 18/01/2006 MIXED vs. GLM Lidt baggrnd Generel Lineær Model

Læs mere

Particle-based T-Spline Level Set Evolution for 3D Object Reconstruction with Range and Volume Constraints

Particle-based T-Spline Level Set Evolution for 3D Object Reconstruction with Range and Volume Constraints Particle-based T-Spline Level Set for 3D Object Reconstruction with Range and Volume Constraints Robert Feichtinger (joint work with Huaiping Yang, Bert Jüttler) Institute of Applied Geometry, JKU Linz

Læs mere

Elite sports stadium requirements - views from Danish municipalities

Elite sports stadium requirements - views from Danish municipalities Elite sports stadium requirements - views from Danish municipalities JENS ALM Ph.d. student Malmö University jens.alm@mah.se Analyst Danish Institute for Sports Studies jens.alm@idan.dk Background Definitions

Læs mere

Cross-Sectorial Collaboration between the Primary Sector, the Secondary Sector and the Research Communities

Cross-Sectorial Collaboration between the Primary Sector, the Secondary Sector and the Research Communities Cross-Sectorial Collaboration between the Primary Sector, the Secondary Sector and the Research Communities B I R G I T T E M A D S E N, P S Y C H O L O G I S T Agenda Early Discovery How? Skills, framework,

Læs mere

1 enote 1: Simple plots og deskriptive statistik. 2 enote 2: Diskrete fordelinger. 3 enote 2: Kontinuerte fordelinger

1 enote 1: Simple plots og deskriptive statistik. 2 enote 2: Diskrete fordelinger. 3 enote 2: Kontinuerte fordelinger Kursus 02402/02323 Introduktion til statistik Forelæsning 13: Et overblik over kursets indhold Peder Bacher DTU Compute, Dynamiske Systemer Building 303B, Room 017 Danish Technical University 2800 Lyngby

Læs mere

Engelsk. Niveau D. De Merkantile Erhvervsuddannelser September Casebaseret eksamen. og

Engelsk. Niveau D. De Merkantile Erhvervsuddannelser September Casebaseret eksamen.  og 052431_EngelskD 08/09/05 13:29 Side 1 De Merkantile Erhvervsuddannelser September 2005 Side 1 af 4 sider Casebaseret eksamen Engelsk Niveau D www.jysk.dk og www.jysk.com Indhold: Opgave 1 Presentation

Læs mere

Generelle lineære modeller

Generelle lineære modeller Generelle lineære modeller Regressionsmodeller med én uafhængig intervalskala variabel: Y en eller flere uafhængige variable: X 1,..,X k Den betingede fordeling af Y givet X 1,..,X k antages at være normal

Læs mere

ANIMAL MODEL FOR YDELSE

ANIMAL MODEL FOR YDELSE ANIMAL MODEL FOR YDELSE Forfattere: Sektionsleder, Ph.D. Gert Pedersen Aamand Konsulent, Ph.D. Jørn Pedersen Landskonsulent, Cand. Agro Ulrik Sander Nielsen Landskontoret for Kvæg Forsøgsleder, Ph.D. Just

Læs mere

DENCON ARBEJDSBORDE DENCON DESKS

DENCON ARBEJDSBORDE DENCON DESKS DENCON ARBEJDSBORDE Mennesket i centrum betyder, at vi tager hensyn til kroppen og kroppens funktioner. Fordi vi ved, at det er vigtigt og sundt jævnligt at skifte stilling, når man arbejder. Bevægelse

Læs mere

Oversigt. 1 Motiverende eksempel - energiforbrug. 2 Hypotesetest (Repetition) 3 Two-sample t-test og p-værdi. 4 Konfidensinterval for forskellen

Oversigt. 1 Motiverende eksempel - energiforbrug. 2 Hypotesetest (Repetition) 3 Two-sample t-test og p-værdi. 4 Konfidensinterval for forskellen Kursus 02402/02323 Introducerende Statistik Forelæsning 6: Sammenligning af to grupper Peder Bacher DTU Compute, Dynamiske Systemer Bygning 303B, Rum 009 Danmarks Tekniske Universitet 2800 Lyngby Danmark

Læs mere

to register

to register www.livebidding.com.au to register ON ON PROPERTY RAM SALE LIST THURSDAY 15TH SEPTEMBER 2016 Inspection 9.30 Sale 1pm Glenwood 39R Dilladerry Rd Dubbo Matthew & Cherie Coddington 0438 877286 68877286 rpmerinos@bigpond.com

Læs mere

Reference wetlands in three ecoregions of the central plains.

Reference wetlands in three ecoregions of the central plains. Reference wetlands in three ecoregions of the central plains. Central Plains Center for BioAssessment Kansas Biological Survey KBS Report 147 Beury, Baker, and Huggins Nov. 2008 Denver EPA grant FED41930

Læs mere

Molio specifications, development and challenges. ICIS DA 2019 Portland, Kim Streuli, Molio,

Molio specifications, development and challenges. ICIS DA 2019 Portland, Kim Streuli, Molio, Molio specifications, development and challenges ICIS DA 2019 Portland, Kim Streuli, Molio, 2019-06-04 Introduction The current structure is challenged by different factors. These are for example : Complex

Læs mere

Strings and Sets: set complement, union, intersection, etc. set concatenation AB, power of set A n, A, A +

Strings and Sets: set complement, union, intersection, etc. set concatenation AB, power of set A n, A, A + Strings and Sets: A string over Σ is any nite-length sequence of elements of Σ The set of all strings over alphabet Σ is denoted as Σ Operators over set: set complement, union, intersection, etc. set concatenation

Læs mere

Forelæsning 11: Envejs variansanalyse, ANOVA

Forelæsning 11: Envejs variansanalyse, ANOVA Kursus 02323: Introduktion til Statistik Forelæsning 11: Envejs variansanalyse, ANOVA Peder Bacher DTU Compute, Dynamiske Systemer Bygning 303B, Rum 009 Danmarks Tekniske Universitet 2800 Lyngby Danmark

Læs mere

Naturvidenskabelig Bacheloruddannelse Forår 2006 Matematisk Modellering 1 Side 1

Naturvidenskabelig Bacheloruddannelse Forår 2006 Matematisk Modellering 1 Side 1 Matematisk Modellering 1 Side 1 I nærværende opgavesæt er der 16 spørgsmål fordelt på 4 opgaver. Ved bedømmelsen af besvarelsen vægtes alle spørgsmål lige. Endvidere lægges der vægt på, at det af besvarelsen

Læs mere

Trolling Master Bornholm 2012

Trolling Master Bornholm 2012 Trolling Master Bornholm 1 (English version further down) Tak for denne gang Det var en fornøjelse især jo også fordi vejret var med os. Så heldig har vi aldrig været før. Vi skal evaluere 1, og I må meget

Læs mere

Skriftlig Eksamen Beregnelighed (DM517)

Skriftlig Eksamen Beregnelighed (DM517) Skriftlig Eksamen Beregnelighed (DM517) Institut for Matematik & Datalogi Syddansk Universitet Mandag den 7 Januar 2008, kl. 9 13 Alle sædvanlige hjælpemidler (lærebøger, notater etc.) samt brug af lommeregner

Læs mere

ESG reporting meeting investors needs

ESG reporting meeting investors needs ESG reporting meeting investors needs Carina Ohm Nordic Head of Climate Change and Sustainability Services, EY DIRF dagen, 24 September 2019 Investors have growing focus on ESG EY Investor Survey 2018

Læs mere

Module 9: Residualanalyse

Module 9: Residualanalyse Mathematical Statistics ST6: Linear Models Bent Jørgensen og Pia Larsen Module 9: Residualanalyse 9 Rå residualer 92 Standardiserede residualer 3 93 Ensidig variansanalyse 4 94 Studentiserede residualer

Læs mere

University of Copenhagen Faculty of Science Written Exam April Algebra 3

University of Copenhagen Faculty of Science Written Exam April Algebra 3 University of Copenhagen Faculty of Science Written Exam - 16. April 2010 Algebra This exam contains 5 exercises which are to be solved in hours. The exercises are posed in an English and in a Danish version.

Læs mere

DONG-område Resten af landet

DONG-område Resten af landet TDC A/S regulering@tdc.dk Fremsendes alene via mail Tillægsafgørelse vedrørende fastsættelse af priser for BSA leveret via TDC s fibernet 1 Indledning traf fredag den 15. april 2011 LRAIC-prisafgørelse

Læs mere

Forelæsning 4: Konfidensinterval for middelværdi (og spredning)

Forelæsning 4: Konfidensinterval for middelværdi (og spredning) Introduktion til Statistik Forelæsning 4: Konfidensinterval for middelværdi (og spredning) Peder Bacher DTU Compute, Dynamiske Systemer Bygning 303B, Rum 009 Danmarks Tekniske Universitet 2800 Lyngby Danmark

Læs mere

how to save excel as pdf

how to save excel as pdf 1 how to save excel as pdf This guide will show you how to save your Excel workbook as PDF files. Before you do so, you may want to copy several sheets from several documents into one document. To do so,

Læs mere

Kvantitative og kvalitative metoder. Søren R. Frimodt-Møller, 19. oktober 2012

Kvantitative og kvalitative metoder. Søren R. Frimodt-Møller, 19. oktober 2012 Kvantitative og kvalitative metoder Søren R. Frimodt-Møller, 19. oktober 2012 Program 1. Forskningsspørgsmål 2. Kvantitative vs. kvalitative metoder 3. Eksempler på konkrete forskningsmetoder 4. Sampling-begrebet

Læs mere

LESSON NOTES Extensive Reading in Danish for Intermediate Learners #8 How to Interview

LESSON NOTES Extensive Reading in Danish for Intermediate Learners #8 How to Interview LESSON NOTES Extensive Reading in Danish for Intermediate Learners #8 How to Interview CONTENTS 2 Danish 5 English # 8 COPYRIGHT 2019 INNOVATIVE LANGUAGE LEARNING. ALL RIGHTS RESERVED. DANISH 1. SÅDAN

Læs mere

Vores mange brugere på musskema.dk er rigtig gode til at komme med kvalificerede ønsker og behov.

Vores mange brugere på musskema.dk er rigtig gode til at komme med kvalificerede ønsker og behov. På dansk/in Danish: Aarhus d. 10. januar 2013/ the 10 th of January 2013 Kære alle Chefer i MUS-regi! Vores mange brugere på musskema.dk er rigtig gode til at komme med kvalificerede ønsker og behov. Og

Læs mere

Improving data services by creating a question database. Nanna Floor Clausen Danish Data Archives

Improving data services by creating a question database. Nanna Floor Clausen Danish Data Archives Improving data services by creating a question database Nanna Floor Clausen Danish Data Archives Background Pressure on the students Decrease in response rates The users want more Why a question database?

Læs mere

Help / Hjælp

Help / Hjælp Home page Lisa & Petur www.lisapetur.dk Help / Hjælp Help / Hjælp General The purpose of our Homepage is to allow external access to pictures and videos taken/made by the Gunnarsson family. The Association

Læs mere

Design til digitale kommunikationsplatforme-f2013

Design til digitale kommunikationsplatforme-f2013 E-travellbook Design til digitale kommunikationsplatforme-f2013 ITU 22.05.2013 Dreamers Lana Grunwald - svetlana.grunwald@gmail.com Iya Murash-Millo - iyam@itu.dk Hiwa Mansurbeg - hiwm@itu.dk Jørgen K.

Læs mere

Differential Evolution (DE) "Biologically-inspired computing", T. Krink, EVALife Group, Univ. of Aarhus, Denmark

Differential Evolution (DE) Biologically-inspired computing, T. Krink, EVALife Group, Univ. of Aarhus, Denmark Differential Evolution (DE) Differential Evolution (DE) (Storn and Price, 199) Step 1 - Initialize and evaluate Generate a random start population and evaluate the individuals x 2 search space x 1 Differential

Læs mere

Genomisk Selektion Fra DNA til genomisk avlsværdi

Genomisk Selektion Fra DNA til genomisk avlsværdi Genomisk Selektion Fra DNA til genomisk avlsværdi præsenteret af Gert Pedersen Aamand Personalemøde 20-8-2010 Genomisk selektion historien kort 2008 50.000 genmarkører kan bestemmes for hvert dyr Første

Læs mere

Our activities. Dry sales market. The assortment

Our activities. Dry sales market. The assortment First we like to start to introduce our activities. Kébol B.V., based in the heart of the bulb district since 1989, specialises in importing and exporting bulbs world-wide. Bulbs suitable for dry sale,

Læs mere

HÅNDTERING AF RISIKOFAKTORER FOR SYGDOM Medicinforbrug og selvvurderet helbred

HÅNDTERING AF RISIKOFAKTORER FOR SYGDOM Medicinforbrug og selvvurderet helbred HÅNDTERING AF RISIKOFAKTORER FOR SYGDOM Medicinforbrug og selvvurderet helbred Kandidatuddannelsen i Folkesundhedsvidenskab Aalborg Universitet 1. Semester projekt Gruppe nummer: 755 Vejleder: Henrik Bøggild

Læs mere

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer?

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? Kandidatuddannelsen i Informationsvidenskab - Aalborg 2 respondenter 5 spørgeskemamodtagere Svarprocent: 40% Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? I hvilken grad har uddannelsen

Læs mere

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer?

Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? Kandidatuddannelsen i Informationsarkitektur - Aalborg 3 respondenter 10 spørgeskemamodtagere Svarprocent: 30% Forventer du at afslutte uddannelsen/har du afsluttet/ denne sommer? I hvilken grad har uddannelsen

Læs mere

Privat-, statslig- eller regional institution m.v. Andet Added Bekaempelsesudfoerende: string No Label: Bekæmpelsesudførende

Privat-, statslig- eller regional institution m.v. Andet Added Bekaempelsesudfoerende: string No Label: Bekæmpelsesudførende Changes for Rottedatabasen Web Service The coming version of Rottedatabasen Web Service will have several changes some of them breaking for the exposed methods. These changes and the business logic behind

Læs mere

Aktivering af Survey funktionalitet

Aktivering af Survey funktionalitet Surveys i REDCap REDCap gør det muligt at eksponere ét eller flere instrumenter som et survey (spørgeskema) som derefter kan udfyldes direkte af patienten eller forsøgspersonen over internettet. Dette

Læs mere

University of Copenhagen Faculty of Science Written Exam - 3. April Algebra 3

University of Copenhagen Faculty of Science Written Exam - 3. April Algebra 3 University of Copenhagen Faculty of Science Written Exam - 3. April 2009 Algebra 3 This exam contains 5 exercises which are to be solved in 3 hours. The exercises are posed in an English and in a Danish

Læs mere