0 errors | 0 warnings | 0 notes
0 errors | 0 warnings | 1 notes
NOTES:
removed vignittes in the build (by adding to .Rbuildignore
) and removed VignetteBuilder: knitr
in the DESCRIPTION
field.
Maintainer: 'Paul Julian <pauljulianphd@gmail.com>'
New submission
0 errors | 0 warnings | 1 notes
Please omit the redundant "in R" from the package title.
Please make sure that you do not change the user's options, par or working directory. If you really have to do so within functions, please ensure with an *immediate* call of on.exit() that the settings are reset when the function is exited. e.g.:
...
oldpar <- par(no.readonly = TRUE) # code line i
on.exit(par(oldpar)) # code line i + 1
...
par(mfrow=c(2,2)) # somewhere after
...
If you're not familiar with the function, please check ?on.exit. This function makes it possible to restore options before exiting a function even if the function breaks. Therefore it needs to be called immediately after the option change within a function.
Please fix and resubmit.
The Date field is over a month old
Notes upon re-submission This is a re-submission. Based on comments from reviewer "in R" was removed from the description file, on.exit(...) was added to restore user's options and date in DESCRIPTION files was updated.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.