The goal of HEtools is to …
You can install the development version of HEtools from GitHub with:
# install.packages("devtools")
::install_github("bquast/HEtools") devtools
This is a basic example which shows you how to solve a common problem:
library(HEtools)
#> Loading required package: polynom
= polynomial(c(5, 3, 6))
polynomial print(polynomial)
#> 5 + 3*x + 6*x^2
CoefMod(polynomial, 5)
#> 3*x + x^2