knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(F2020Projt3LP)

Purpose

The intent of this vignette is for me to experiment with making a vignette by creating a short description of my testf() function within the package

testf

Why does it exist

I wrote this function as a way to check that I had set up my package properly. I wanted to make sure that everything was working, especially with GitHub, before putting the important functions into the package

What does it do

It is a very simple function that will take a vector input, square it, return the output, and then also return a statement saying what the purpose of the function is. This is not important for the graded/assigned part of Project 3.

Example

Here is an example of the function working

x <- 1:10
testf(x)

As you can see from the above output, the function does what I described.



leahpom/F2020Projt3LP documentation built on Jan. 1, 2021, 8:17 a.m.