Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanpd01/ggsector
Use R language to draw sector
https://github.com/yanpd01/ggsector
Last synced: 2 days ago
JSON representation
Use R language to draw sector
- Host: GitHub
- URL: https://github.com/yanpd01/ggsector
- Owner: yanpd01
- Created: 2022-11-23T02:59:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-16T10:14:49.000Z (almost 2 years ago)
- Last Synced: 2023-11-20T15:54:07.288Z (12 months ago)
- Language: R
- Size: 1.27 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output:
md_document:
variant: gfm
html_preview: false
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%",
message = FALSE,
warning = FALSE
)
``````{r echo=FALSE, results="hide", message=FALSE}
library("badger")
```# ggsector: Easily draw sectors with grid and ggplot2
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/ggsector)](https://cran.r-project.org/package=ggsector)
`r badge_devel("yanpd01/ggsector", "deepgreen")``r badger::badge_custom("Windows", "passing", "deepgreen")`
`r badger::badge_custom("Linux", "passing", "deepgreen")````{r comment="", echo=FALSE, results='asis'}
cat(packageDescription("ggsector")$Description)
```## :writing_hand: Authors
Pengdong Yan
## :arrow_double_down: Installation
Get the released version from Cran:
```{r, eval = FALSE}
install.packages("ggsector")
```Or the development version from github or gitee:
```{r, eval = FALSE}
## install.packages("remotes")## from github
# simple install
remotes::install_github("yanpd01/ggsector")
# with vignettes
remotes::install_github("yanpd01/ggsector", build_vignettes = TRUE)## from gitee
# simple install
remotes::install_git("https://gitee.com/yanpd01/ggsector")
# with vignettes
remotes::install_git("https://gitee.com/yanpd01/ggsector", build_vignettes = TRUE)
```## :books: Usage
For more details, please refer to the online
[vignette](https://cran.r-project.org/web/packages/ggsector/vignettes/ggsector.html).![logo](ggsector.png)
## :sparkling_heart: Acknowledgments
The code of this R package refers to [jjplot](https://github.com/junjunlab/jjPlot) of [JunJunLao](https://github.com/junjunlab) and [ggplot2](https://github.com/tidyverse/ggplot2) of [Hadley](https://github.com/hadley).
The Description, vignette, and readme of this R package refer to [clusterProfiler](https://github.com/YuLab-SMU/clusterProfiler), [ggfun](https://github.com/YuLab-SMU/ggfun), and [treeio](https://github.com/YuLab-SMU/treeio) of [Guangchuang YU](https://github.com/YuLab-SMU/).
Here, I would like to express my highest respect to thank the big guys for their open source spirit.