knitr::opts_chunk$set(echo = TRUE)

Problem 1: Regression Analysis

The following dataset on body weight and on futher observations on a number of animals is given.

s_ex01_p01_path <- "https://charlotte-ngs.github.io/asmss2022/data/asm_bw_mult_reg.csv"
tbl_ex01_p01_data <- readr::read_csv(file = s_ex01_p01_path)
knitr::kable(tbl_ex01_p01_data,
             booktabs = TRUE,
             longtable = TRUE,
             escape = FALSE)

The data can be read from r s_ex01_p01_path. The additional columns contain data on body condition score (BCS) and height (HEI).

Tasks

Your Solution

Problem 2

Use the same dataset as in Problem 1 and verify your results using the function lm() in R.

Your Solution

cat('\n---\n\n _Latest Changes: ', format(Sys.time(), '%Y-%m-%d %H:%M:%S'), ' (', Sys.info()['user'], ')_\n', sep = '')


charlotte-ngs/asmss2022 documentation built on June 7, 2022, 1:33 p.m.