Markdown Author: Jessie Bell, 2023
Libraries Used: tinytex
Create an R script that answers the questions asked in each lab.
ABDLabs foder and find script “LearningToolsWeek1.R”.
Come up with an object name for each of the following:
bodytemp_C <- c(44, 55, 60)
print(bodytemp_C)
## [1] 44 55 60
asperdose <- c(15, 17, 18.5)
print(asperdose)
## [1] 15.0 17.0 18.5
Just make sure that it is easy for you to remember, is only capitalized when you really want it to be, and does not have spaces.
Use R to calculate the following:
15*17
## [1] 255
13^3
## [1] 2197
log(14)
## [1] 2.639057
log10(100)
## [1] 2
Add equations to your markdown using typeset based on LaTeX, like below: \(\sum_{n=1}^{10} n^2\) install tinytex library and use this guide.
This lab was completed using the following textbook: The Analysis of Biological Data by Whitlock and Schluter