70
edits
Changes
→Reading the samples
* Calculate the milk fat percentage using the following R code:
```{r data-manipulation}
mutated.milk.data<-milk.data%>%
group_by(replicate, MouseID, Genotype)%>%
mutate(total.volume = water.corrected+fat)%>%
mutate(fat.percent = (fat/total.volume)*100)
```