HEtools

R-CMD-check

The goal of HEtools is to …

Installation

You can install the development version of HEtools from GitHub with:

# install.packages("devtools")
devtools::install_github("bquast/HEtools")

Example

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

library(HEtools)
#> Loading required package: polynom
polynomial = polynomial(c(5, 3, 6))
print(polynomial)
#> 5 + 3*x + 6*x^2

CoefMod(polynomial, 5)
#> 3*x + x^2