README.md

stat302Package

R-CMD-check codecov

The goal of stat302Package is to demonstrate my understandings of R packages. This package includes the following functions: - my_t.test - my_lm - my_knn_cv - my_rf_cv

Installation

You can install the development version directly from GitHub.

```{r eval=FALSE}

install.packages("devtools")

devtools::install_github("laurenng/stat302Package") library(stat302Package)


# Use

The vignette demonstrates example usage of all main functions. Please file an issue if you have a request for a tutorial that is not currently included. You can see the vignette by using the following code:

```{r eval=FALSE}
library(stat302Package)
# Use this to view the vignette in the stat302Package HTML help
help(package = "stat302Package", help_type = "html")
# Use this to view the vignette as an isolated HTML file
utils::browseVignettes(package = "stat302Package")

Example

This is a basic example which shows you how to solve a common problem:

library(stat302Package)
## basic example code


laurenng/stat302Package documentation built on Dec. 21, 2021, 9:42 a.m.