title

author

2018-07-18

Running devtools::build_vignettes() twice in a row with this file as a vignette errors out because the assignment “ChickWeight <- NULL” stays live between runs and then obscures the original datasets::ChickWeight.

data("ChickWeight")
ChickWeight <- dplyr::mutate(ChickWeight, Time = Time+1)
ChickWeight <- NULL