Skip to content

Coding Practices

Joe Shannon edited this page Jun 13, 2018 · 2 revisions
  1. Function names should be in snake_case
  2. Function arguments should be written with dots such as function.argument
  3. Objects created within functions should be in snake_case
  4. All functions should export a data.frame rather than a tibble, matrix, list, etc.
  5. Functions that read in data should be in the format ingest_data_description()
Clone this wiki locally