forked from plotrix/plotrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
60 lines (39 loc) · 1.33 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
---
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 = "100%"
)
```
# plotrix
<!-- badges: start -->
[![R-CMD-check](https://github.com/plotrix/plotrix/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/plotrix/plotrix/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
`plotrix` is an `R` package that provides many plotting, labeling, and axis &
color scaling functions.
## Installation
You can install the current release of `plotrix` from CRAN with:
``` r
install.packages("plotrix")
```
You can install the development version of plotrix from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("plotrix/plotrix")
```
## Authors
The original author and maintainer of `plotrix`, Jim Lemon, passed away in
September 2023.
Currently it is being maintained by Duncan Murdoch. Please submit
bug reports to https://github.com/plotrix/plotrix/issues.
```{r echo = FALSE}
authors <- eval(parse(text = packageDescription("plotrix")$Authors))
keep <- sapply(authors, function(a) !any((c("aut", "cre") %in% a$role)))
```
Other contributors include:
`r paste(authors[keep], collapse=", \n")`.