Independent Study to consolidate this week
The logic of hypothesis testing and confidence intervals
Set up
If you have just opened RStudio you will want to load the tidyverse
package
Exercises
- 💻 Adiponectin is exclusively secreted from adipose tissue and modulates a number of metabolic processes. Nicotinic acid can affect adiponectin secretion. 3T3-L1 adipocytes were treated with nicotinic acid or with a control treatment and adiponectin concentration (pg/mL) measured. The data are in adipocytes.txt. Each row represents an independent sample of adipocytes and the first column gives the concentration adiponectin and the second column indicates whether they were treated with nicotinic acid or not. Estimate the mean Adiponectin concentration in each group - this means calculate the sample mean and construct a confidence interval around it for each group. This exercise forces you to bring together ideas from this workshop and from previous workshops
- How to calculate a confidence intervals (this workshop)
- How to summarise variables in more than one group (previous BABS 1 workshop)
Answer - don’t look until you have tried!
# data import
adip <- read_table("data-raw/adipocytes.txt")
# examine the structure
str(adip)
# summarise
adip_summary <- adip %>%
group_by(treatment) %>%
summarise(mean = mean(adiponectin),
sd = sd(adiponectin),
n = length(adiponectin),
se = sd/sqrt(n),
dif = qt(0.975, df = n - 1) * se,
lower_ci = mean - dif,
uppp_ci = mean + dif)
# we conclude we're 95% certain the mean for the control group is
# between 4.73 and 6.36 and the mean for the nicotinic group is
# between 6.52 and 8.50. More usually we might put is like this:
# the mean for the control group is 5.55 +/- 0.82 and that for the nicotinic group is 7.51 +/- 0.99