-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
93 lines (69 loc) · 2.36 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
output: rmarkdown::github_document
editor_options:
chunk_output_type: inline
---
```{r pkg-knitr-opts, include=FALSE}
knitr::opts_chunk$set(
collapse = TRUE, fig.retina = 2, message = FALSE, warning = FALSE
)
options(width=120)
```
[](https://travis-ci.org/hrbrmstr/gglogspline)
[](https://codecov.io/gh/hrbrmstr/gglogspline)
[](https://cran.r-project.org/package=gglogspline)
# gglogspline
A 'ggplot2' Extension for Visualizing Density, Distribution, Hazard, or Survival Functions using the 'logspline' Package
## Description
Methods are provided to plot a logspline density, distribution function, hazard function or survival function from a logspline density
## What's Inside The Tin
The following functions are implemented:
- `stat_logspline`: Computes logspline density (+ counts estimate), probability, survival & hazard
## Installation
```{r install-ex, eval=FALSE}
install("gglogspline", repos = "https://cinc.rud.is")
# or
devtools::install_git("https://git.sr.ht/~hrbrmstr/gglogspline.git")
# or
devtools::install_git("https://git.rud.is/hrbrmstr/gglogspline.git")
# or
devtools::install_gitlab("hrbrmstr/gglogspline")
# or
devtools::install_bitbucket("hrbrmstr/gglogspline")
# or
devtools::install_github("hrbrmstr/gglogspline")
```
## Usage
```{r lib-ex}
library(gglogspline)
library(ggplot2)
# current version
packageVersion("gglogspline")
```
```{r}
set.seed(1)
data.frame(
val = rnorm(100)
) -> xdf
ggplot(xdf) +
stat_logspline(aes(val))
ggplot(xdf) +
stat_logspline(aes(val, y = stat(count))) +
labs(title = "logspline (count)")
ggplot(xdf) +
stat_logspline(aes(val, y = stat(probs))) +
labs(title = "logspline (probability function)")
ggplot(xdf) +
stat_logspline(aes(val, y = stat(survival))) +
labs(title = "logspline (survival function)")
ggplot(xdf) +
stat_logspline(aes(val, y = stat(hazard))) +
labs(title = "logspline (hazard function)")
```
## gglogspline Metrics
```{r cloc, echo=FALSE}
cloc::cloc_pkg_md()
```
## Code of Conduct
Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md).
By participating in this project you agree to abide by its terms.