Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Write Your Own R Packages

IntroductionA set of user-defined functions (UDF) or utility functions are helpful to simplify our code and avoid repeating the same typing for daily analysis work. Previously, I saved all my R functions to a single R file. Whenever I want to use them, I can simply source the R file to import all functions. This is a simple but not perfect approach, especially when I want to check the documentation of certain functions. It was quite annoying that you can’t just type ?func to navigate to the help file. So, this is the main reason for me to write my own util package to ...

2,524 0       DATA SCIENCE DATA ENGINEERING R PROGRAMMING