8.3 Data
Read in a new data set.
This data set contains pulses of two species of crickets collected under varying temperatures.
# Read in the cricket data and assign it to a named object
crickets <- read.csv('data/crickets.txt')
# Have a look
head(crickets)
## Species Temp Pulse
## 1 ex 20.8 67.9
## 2 ex 20.8 65.1
## 3 ex 24.0 77.3
## 4 ex 24.0 78.7
## 5 ex 24.0 79.4
## 6 ex 24.0 80.4