Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.8%) to scientific vocabulary
Keywords
color-palette
data-visualization
r
r-package
Last synced: 9 months ago
·
JSON representation
Repository
Creates color palettes inspired by 'Dune'
Basic Info
- Host: GitHub
- Owner: nvietto
- License: other
- Language: R
- Default Branch: main
- Homepage: https://nvietto.github.io/Rdune/
- Size: 9.19 MB
Statistics
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 3
Topics
color-palette
data-visualization
r
r-package
Created almost 2 years ago
· Last pushed over 1 year ago
Metadata Files
Readme
Changelog
License
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# Rdune
[](https://github.com/nvietto/Rdune/actions/workflows/R-CMD-check.yaml)
[](https://CRAN.R-project.org/package=Rdune)
[](https://cran.r-project.org/package=Rdune)
The {Rdune} package offers a collection of color palettes inspired by 'Dune', designed for use in data visualizations and graphics with {ggplot2}.
The structure of the code and creative inspiration were drawn from the [{PrettyCols}](https://github.com/nrennie/PrettyCols), [{wesanderson}](https://github.com/karthik/wesanderson), [{MetBrewer}](https://github.com/BlakeRMills/MetBrewer), [{PNWColors}](https://github.com/jakelawlor/PNWColors) packages.
Colors were selected using [{eyedroppeR}](https://github.com/doehm/eyedroppeR).
## Installation
{Rdune} is available on CRAN. Install using:
``` r
install.packages("Rdune")
```
Or you can install the development version of Rdune from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("nvietto/Rdune")
```
## How to use
```{r example}
library(Rdune)
# See all palettes
names(dune_palettes)
```
## View palette
```{r, fig.height = 2}
pal <- dune_palette("atreides")
print.palette(pal)
```
## Examples
### "May thy knife chip and shatter"
```{r, example1, fig.height=3}
library(ggplot2)
ggplot(
data = iris,
mapping = aes(x = Sepal.Width, y = Sepal.Length, color = Species)
) +
geom_point(size = 2) +
scale_color_dune_d(name = "maythyknifechipandshatter")
```
### House Atreides
```{r, example2, fig.height=3}
library(ggplot2)
ggplot(
data.frame(x = rnorm(1000), y = rnorm(1000)),
aes(x = x, y = y)
) +
geom_hex() +
theme_minimal() +
scale_fill_dune_c(name = "atreides3") +
labs(x = "X-axis", y = "Y-axis", fill = "Legend")
```
## Palettes
### Arrakis
### House Atreides
### Bene Gesserit
### House Corrino
### Fremen
### House Harkonnen
### "May thy knife chip and shatter"
### Sandworm
Owner
- Name: Nicholas Vietto
- Login: nvietto
- Kind: user
- Website: https://www.nicholasvietto.com/
- Twitter: ViettoNicholas
- Repositories: 1
- Profile: https://github.com/nvietto
PhD Student
GitHub Events
Total
- Watch event: 2
- Push event: 6
Last Year
- Watch event: 2
- Push event: 6
Committers
Last synced: 12 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| nvietto | n****o@u****m | 131 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 1
- Total pull requests: 0
- Average time to close issues: 15 days
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- nvietto (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 3
-
Total downloads:
- cran 151 last-month
-
Total dependent packages: 0
(may contain duplicates) -
Total dependent repositories: 0
(may contain duplicates) - Total versions: 9
- Total maintainers: 1
proxy.golang.org: github.com/nvietto/Rdune
- Documentation: https://pkg.go.dev/github.com/nvietto/Rdune#section-documentation
- License: other
-
Latest release: v1.1.1
published almost 2 years ago
Rankings
Dependent packages count: 5.4%
Average: 5.6%
Dependent repos count: 5.8%
Last synced:
10 months ago
proxy.golang.org: github.com/nvietto/rdune
- Documentation: https://pkg.go.dev/github.com/nvietto/rdune#section-documentation
- License: other
-
Latest release: v1.1.1
published almost 2 years ago
Rankings
Dependent packages count: 5.4%
Average: 5.6%
Dependent repos count: 5.8%
Last synced:
10 months ago
cran.r-project.org: Rdune
'Creates Color Palettes Inspired by Dune'
- Homepage: https://github.com/nvietto/Rdune
- Documentation: http://cran.r-project.org/web/packages/Rdune/Rdune.pdf
- License: MIT + file LICENSE
-
Latest release: 1.1.1
published almost 2 years ago
Rankings
Dependent packages count: 28.6%
Dependent repos count: 35.2%
Average: 50.1%
Downloads: 86.7%
Maintainers (1)
Last synced:
9 months ago
Dependencies
DESCRIPTION
cran
- knitr * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests