knitr::opts_chunk$set(echo = FALSE) knitr::knit_hooks$set(hook_convert_odg = rmdhelp::hook_convert_odg)
The students
### # header names of tables vecTableHeaders <- c("Week", "Date", "Topic") # define course start date dCourseStart <- as.Date("2022/02/21") # set number of weeks in semester nNrSemesterWeeks <- 15 # define columns for weaks, dates, and subjects Week <- 1:nNrSemesterWeeks Date <- format(seq(dCourseStart, by = "week", length.out = nNrSemesterWeeks), "%d.%m") Topic <- vector(mode = "character", length = nNrSemesterWeeks) # subjects per week Topic[1] <- "Introduction" Topic[2] <- "Linear Regression Models" Topic[3] <- "Linear Fixed Effect Models" Topic[4] <- "Model Selection" Topic[5] <- "Pedigree BLUP" Topic[6] <- "Variance Components" Topic[7] <- "GBLUP - Marker-Effects Models" Topic[8] <- "GBLUP - Breeding Value Models" Topic[9] <- "__Easter Monday__" Topic[10] <- "Lasso" Topic[11] <- "SVM" Topic[12] <- "Bayesian Approaches in Linear Regression Models" Topic[13] <- "Bayesian Approaches in Linear Mixed Effects Models" Topic[14] <- "Questions, Test Exam" Topic[15] <- "Exams" dfCnTable <- data.frame(Week, Date, Topic, stringsAsFactors = FALSE) colnames(dfCnTable) <- vecTableHeaders knitr::kable(dfCnTable)
Use dataset that is used to predict genomic breeding values and introduce four methods
Fixed Linear Effects Models - Least Squares
What about the rest of animal science?
General trend of collecting data has led to development of Big Data
#rmdhelp::use_odg_graphic(ps_path = 'odg/facerecog.odg') knitr::include_graphics(path = "odg/facerecog.png")
#rmdhelp::use_odg_graphic(ps_path = 'odg/farm-infrastrucutre.odg') knitr::include_graphics(path = "odg/farm-infrastrucutre.png")
Use video image analysis for
#rmddochelper::use_odg_graphic(ps_path = "odg/datalogistics.odg") knitr::include_graphics(path = "odg/datalogistics.png")
\small "> Meuwissen THE, Hayes BJ, Goddard ME (2001) Prediction of total genetic value using genome-wide dense marker maps. Genetics 157:1819–1829"
\small "> L. R. Schaeffer. Strategy for applying genome-wide selection in dairy cat- tle. Journal of Animal Breeding and Genetics, 123(4):218–223, 2006. ISSN 09312668. doi: 10.1111/j.1439-0388.2006.00595.x."
#rmddochelper::use_odg_graphic(ps_path = "odg/snparchitecture.odg") knitr::include_graphics(path = "odg/snparchitecture.png")
#rmddochelper::use_odg_graphic(ps_path = "odg/linkagesnpqtl.odg") knitr::include_graphics(path = "odg/linkagesnpqtl.png")
#rmddochelper::use_odg_graphic(ps_path = "odg/monogenicmodeltraitdistributionnoeffect.odg") knitr::include_graphics(path = "odg/monogenicmodeltraitdistributionnoeffect.png")
#rmddochelper::use_odg_graphic(ps_path = "odg/monogenicmodeltraitdistribution.odg") knitr::include_graphics(path = "odg/monogenicmodeltraitdistribution.png")
#rmddochelper::use_odg_graphic(ps_path = "odg/twostepprocedure.odg") knitr::include_graphics(path = "odg/twostepprocedure.png")
#rmddochelper::use_odg_graphic(ps_path = "odg/summarytraditionalvsgs.odg") knitr::include_graphics(path = "odg/summarytraditionalvsgs.png")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.