-
Notifications
You must be signed in to change notification settings - Fork 2
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
undocumented code objects #8
Comments
there were few other issues flagged by these checks (so it might be worth running those), but that was the only one I'm particularly concerned about for the JOSS review. |
Those functions are used to enable I just ran the checks as well, did not see anything else which should be fixed there. |
Ah, I see now that you are currently exporting every function in your package: https://github.com/boyanangelov/sdmbench/blob/master/NAMESPACE#L1 You can instead explicitly export the functions that you expect the user to interact with. You could add them individually to NAMESPACE with e.g. |
Thanks for the advice @goldingn! I just pushed the changes, now everything is generated by roxygen. |
R CMD check
flagged some exported functions that are not documented:‘customPredictFunGBM’ ‘customPredictFunKSVM’ ‘customPredictFunLogreg’ ‘customPredictFunMultinom’ ‘customPredictFunNB’ ‘customPredictFunXGB’
perhaps these were exported by mistake?
The text was updated successfully, but these errors were encountered: