-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
75 lines (54 loc) · 2.26 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README__",
out.width = "90%",
fig.align = "center",
dev = "svg"
)
```
# Welcome to `unitquantreg` R package <img src="man/figures/unitquantreg_hex.png" align="right" alt="" width="200">
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/unitquantreg)](https://CRAN.R-project.org/package=unitquantreg)
[![R-CMD-check](https://github.com/AndrMenezes/unitquantreg/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/AndrMenezes/unitquantreg/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/AndrMenezes/unitquantreg/branch/main/graph/badge.svg)](https://app.codecov.io/gh/AndrMenezes/unitquantreg?branch=main)
[![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/unitquantreg?)](https://github.com/r-hub/cranlogs.app)
<!-- badges: end -->
The goal of `unitquantreg` is to provide tools for estimation and inference on
parametric quantile regression models for bounded data.
We developed routines with similar interface as `stats::glm` function,
which contains estimation, inference, residual analysis, prediction, and
model comparison.
For more computation efficient the [`dpqr`]'s, likelihood, score and
hessian functions are vectorized and written in `C++`.
You can install the stable version from [CRAN](https://CRAN.R-project.org/package=unitquantreg) with:
```{r, eval=FALSE}
install.packages("unitquantreg")
```
Or you can install the development version from [GitHub](https://github.com/) with:
```{r, eval=FALSE}
if(!require(remotes)) install.packages('remotes')
remotes::install_github("AndrMenezes/unitquantreg", build_vignettes = TRUE)
```
You can then load the package
```{r, eval=FALSE}
library(unitquantreg)
```
and look at user manuals typing:
```{r, eval=FALSE}
vignette("unitquantreg")
vignette("structure_functionality")
```
## Citation
```{r}
citation("unitquantreg")
```
## License
The `unitquantreg` package is released under the Apache License, Version 2.0.
Please, see file
[`LICENSE.md`](https://github.com/AndrMenezes/unitquantreg/blob/master/LICENSE.md).