-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Labels
Description
Do you know of any existing package or library that would facilitate easy generation of "CRAN-ready" R packages from Java source?
Say I had a class that exposed some functionality that I wanted to easily call from R. I'm envisioning something where I would only have to annotate the class' method with:
@RFunction
and then on a subsequent run of some utility or tool:
make-r-package
it would output a directory structure suitable for using via install.packages, . Bonus points if the documentation PDF was automatically compiled from the Javadoc.
This might be out of scope for rJava, but I was thinking this was the best place to ask.