README.md

FeatureEngineeringFunctions

Markdown Cheatsheet

github directions

  1. R package project creation instructions
  2. merging local git project with github copy
  3. pulling & merging

Create package directions

library(roxygen2); library(devtools)
getwd(); dir()   # reference
devtools::create("packageNameHere")  # creates package directories & files
# (then create function w/ documentation & save in the 'R' directory...)
devtools::document(paste0(normalizePath(getwd()), "\\R"))  # run this function to document files in R folder

install("packageNameHere")  # only run once
library(packageNameHere)  # finally load it
devtools::install_github(repo = "packageNameHere", "githubname")  # installs from github

# after package successfully created & documented, should be able to see...
packageNameHere::function()
?function

alt-text alt-text alt-text



sqlitus/FeatureEngineeringFunctions documentation built on May 6, 2019, 7:04 p.m.