Guest User

Untitled

a guest
Dec 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # install.packages("fs")
  2.  
  3. library(fs)
  4.  
  5. make_project_dir <- function() {
  6.  
  7. dir_names <- c(
  8. "00_Data",
  9. "00_Scripts",
  10. "01_Business_Understanding",
  11. "02_Data_Understanding",
  12. "03_Data_Preparation",
  13. "04_Modeling",
  14. "05_Evaluation",
  15. "06_Deployment")
  16.  
  17. dir_create(dir_names)
  18.  
  19. dir_ls()
  20. }
Add Comment
Please, Sign In to add comment