Reputation: 9018
I modified the plyr package and built it in R and and it resides on my local computer at
...Documents\R-3.1.2\library\plyr
Now I have another "computer B" that I want to use this modified version of plyr
How do I get this modified version of plyr on computer B?
I see a plyr.dll in the libs\x64 folder on my computer
...Documents\R-3.1.2\library\plyr\libs\x64
Do I just delete the current plyr package on computer B and place the the plyr.dll from my computer on computer B?
Thank you.
Upvotes: 1
Views: 108
Reputation: 18487
This is what I would do.
devtools::_install_github()
to install the package on the machinesIf the changes are interesting: submit a pull request to the original repository so that other can benefit from it.
Upvotes: 2