README.md

mathR

The goal of mathR is to ...

Installation

You can install the development version of mathR using

if(!require(remotes)) { 
  install.packages("remotes")
  library(remotes)
}

remotes::install_github("jnguyen01/mathR")

Basic Example

This is a basic example which shows you how to add two vectors:

library(mathR)

x <- c(1,2,3)
y <- c(10,15,20)
add(x,y) 

## basic example code


jnguyen01/mathR documentation built on Dec. 21, 2021, 1:14 a.m.