Homework Assignment 9: Building an R package

The official outline for homework assignment 9 can be found here.

Outline:


For this assignment I decided to continue developing the powers package we started in class, aiming for the following elements:


Powers Package

  1. Main Howework Repo

To faciliate package development, we're using the devtools package. It ensures the package source has the format of a valid R package and provides a fluid workflow for package development. Documenting a package and the functions within it is essential. Document files were created for each function and a package-level help file (vignette) was also generated to explain all elements of this VERY simple package to users.

Installation

You can install powers from github:

#install.packages("devtools")
devtools::install_github("mlawre01/powers")

Examples

powers::log_10(3)
powers::cube(2)



mlawre01/FirstRPackage1 documentation built on May 29, 2019, 12:05 p.m.