UofTChem-Teaching / R4EnvChem

Textbook of R recipes and workflows for environmental chemists.
https://uoftchem-teaching.github.io/R4EnvChem/
1 stars 2 forks source link

Error in code section 12.2 #31

Open stephschneider opened 3 years ago

stephschneider commented 3 years ago

In my tidied data, the intercept and slope are:

intercept <- as.numeric(tidied[1,4])
slope <- as.numeric(tidied[2,4])

NOT

intercept <- as.numeric(tidied[1,5])
slope <- as.numeric(tidied[2,5])

(I think that's the error on the intercept/slope)