Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Latest commit

 

History

History
51 lines (36 loc) · 2.39 KB

index.md

File metadata and controls

51 lines (36 loc) · 2.39 KB
title layout
Week 7: More on Programming and Testing
default

Schedule

Assignments (Group)

  • Write a set of functions to do some data analysis, data generation or modeling that include at least one nested function
  • Generate 3 automatic tests for your function
  • Include documentation that will generate a help page for each function
  • Post the source code on your group's git site

Resources

coding practice

testing

making packages

asides

  • dplyr - window functions like lead(), lag(), cumsum() with group_by(), filter(), summarize(), and mutate() can perform many operations that you might otherwise wrap in a for loop or apply() function.