Is there a way to read the actual R code for a function that I'm using from a package?
For an example, I'm working with a package called recommenderlab, and I'm interested in learning more about how their "POPULAR" method recommendation works so I can make better business decisions.
Thank you!
EDIT: When I type the function name into the console, I get the following output.
standardGeneric for "Recommender" defined from package "recommenderlab"
function (data, ...)
standardGeneric("Recommender")
<environment: 0x00000000148b8340>
Methods may be defined for arguments: data
Use showMethods("Recommender") for currently available ones.
Any follow up steps from here?