The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

ArvindSt

ArvindSt is an R package implementing the Arvind distribution and five novel stochastic regression models with Arvind-distributed errors.

Installation

Install the development version from GitHub:

# install.packages("devtools")
devtools::install_github("shikhartyagi/ArvindSt")

Features

Quick Start

library(ArvindSt)

# Load example data
data(climate_consumption)

# Define formula
frm <- Consumption ~ Precip + TempMaxAvg + TempMinAvg + HumidMax + HumidAvg

# Fit all five models
m1 <- fit_rw1(frm, climate_consumption)
m2 <- fit_tvlm(frm, climate_consumption)
m3 <- fit_simex(frm, climate_consumption, me_vars = c("Precip", "TempMaxAvg"))
m4 <- fit_mixed(frm, climate_consumption, group_var = "Season")
m5 <- fit_hmm(frm, climate_consumption, nstates = 2)

# Compare all models
summary_arvind(m1, m2, m3, m4, m5)

Authors

License

MIT

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.