-
Notifications
You must be signed in to change notification settings - Fork 27
replacing plyr occurences #195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
thanks! please remove plyr from DESCRIPTION |
plyr isnt present in Suggests. in DESCRIPTION it is present as an import If i remove this, it will cause error in CRAN checks because it is also being imported in NAMESPACE . something like this. : |
|
please remove from NAMESPACE too |
|
NAMESPACE contains plyr imports - "as.quoted" and "defaults" which are being used in almost all test files. Removing these is causing many errors. Should all these occurrences of as.quoted and defaults be replaced? |
|
yes please |
|
I have replaced the plyr imported functions The plyr occurences have been replaced in /tests folder and as.quoted() and defaults() have also been replaced in /R folder But the CRAN tests are still giving the same error : Maybe it is because of the presence of plyr being used in other files in the /R folder ? What shall be done about these? |
|
we should classify each of these uses:
however this would not actually change any user-facing functionality, so I believe it is not high priority. |
trying out if tests are passing with a new branch with some changes in PR#188