Blame | Last modification | View Log | Download | RSS feed
## run reproduction scripts from the NLME book chapterstestdir <- system.file("scripts", package = "nlme", mustWork = TRUE)scripts <- dir(testdir, pattern = "^ch[0-9]*\\.R$")for(f in scripts) {writeLines(c("", strrep("=", nchar(f)), basename(f), strrep("=", nchar(f))))set.seed(3)options(warn = 1) # chapters set digitssource(file.path(testdir, f), echo = TRUE,max.deparse.length = Inf, keep.source = TRUE)}