Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xiangpin/ggstar
:star: star layer for ggplot2
https://github.com/xiangpin/ggstar
Last synced: 3 days ago
JSON representation
:star: star layer for ggplot2
- Host: GitHub
- URL: https://github.com/xiangpin/ggstar
- Owner: xiangpin
- Created: 2020-03-07T15:03:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T07:47:38.000Z (7 months ago)
- Last Synced: 2024-05-18T20:47:51.534Z (6 months ago)
- Language: R
- Homepage:
- Size: 2.5 MB
- Stars: 90
- Watchers: 2
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output:
md_document:
variant: gfm
html_preview: false
---# ggstar: star layer for ggplot2
```{r, echo=FALSE, results="hide", message=FALSE}
library(badger)
```[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/ggstar?color=green)](https://cran.r-project.org/package=ggstar)
[![](https://cranlogs.r-pkg.org/badges/grand-total/ggstar?color=green)](https://cran.r-project.org/package=ggstar)
[![](https://cranlogs.r-pkg.org/badges/ggstar?color=green)](https://cranlogs.r-pkg.org/downloads/total/last-month/ggstar)
[![](https://cranlogs.r-pkg.org/badges/last-week/ggstar?color=green)](https://cranlogs.r-pkg.org/downloads/total/last-week/ggstar)```{r, comment="", echo=FALSE, results='asis'}
cat(packageDescription('ggstar')$Description)
```# :writing_hand: Author
[Shuangbin Xu](https://github.com/xiangpin)
School of Basic Medical Sciences, Southern Medical University
# :arrow_double_down: Installation
Get the released version from `CRAN`:
```r
install.packages("ggstar")
```Or the development version from `github`:
```r
if (!requireNamespace("devtools", quietly=TRUE))
install.packages("devtools")
devtools::install_github("xiangpin/ggstar")
```# :beginner: Usage
Total starshapes:
![](./inst/extdata/starshapes.png)
```{r, eval=FALSE, echo=FALSE}
library(ggplot2)
library(ggstar)
p <- ggplot(data=mtcars,
mapping=aes(x=wt,
y=mpg,
fill=cyl)) +
geom_star()
p
``````{r, eval=FALSE, echo=FALSE}
p2 <- ggplot(data=iris,
mapping=aes(x=Sepal.Length,
y=Sepal.Width,
fill=Species)) +
geom_star()
p2
``````{r, eval=FALSE, echo=FALSE}
p3 <- ggplot(data=iris,
mapping=aes(x=Sepal.Length,
y=Sepal.Width,
fill=Species,
starshape=Species)) +
geom_star() + scale_starshape_manual(values=c(1, 2, 9))
p3
```# :book: Vignette
For more details, please refer to the [online vignette](https://cran.r-project.org/web/packages/ggstar/vignettes/ggstar.html)
If you have installed it, you can also view the vignette on local.
```r
browseVignettes("ggstar")
```# :sparkling_heart: Contributing
We welcome any contributions! By participating in this project you agree to abide
by the terms outlined in the [Contributor Code of Conduct](CONDUCT.md).