knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(F2020Projt3LP)
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
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
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.
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.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.