-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from nmfs-fish-tools/add-render-readme
Add render readme workflow, update README.Rmd, update ghas
- Loading branch information
Showing
6 changed files
with
62 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Render readme, based on | ||
# https://raw.githubusercontent.com/r-lib/actions/master/.github/workflows/render-readme.yaml | ||
name: Render README | ||
on: | ||
push: | ||
branches: main | ||
paths: | ||
- 'README.Rmd' | ||
|
||
jobs: | ||
render: | ||
name: Render README | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: r-lib/actions/setup-r@v2 | ||
- uses: r-lib/actions/setup-pandoc@v2 | ||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: | | ||
any::rmarkdown | ||
any::devtools | ||
- name: Install local package | ||
run: | | ||
devtools::install_local(".") | ||
shell: Rscript {0} | ||
- name: Render README | ||
run: Rscript -e 'rmarkdown::render("README.Rmd")' | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
commit-message: 'docs: update readme' | ||
branch: update-readme | ||
title: 'Update readme' | ||
body: | | ||
Auto-generated by [render-readme.yml](https://github.com/nmfs-fish-tools/nmfspalette/tree/main/.github/workflows/render-readme.yml). | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ output: | |
variant: gfm | ||
--- | ||
|
||
<!-- README.md is generated from README.Rmd. Please edit that file --> | ||
<!-- README.md is generated from README.Rmd. Please edit README.Rmd --> | ||
|
||
```{r, echo = FALSE, warning=FALSE, message=FALSE} | ||
knitr::opts_chunk$set( | ||
|
@@ -16,32 +16,32 @@ knitr::opts_chunk$set( | |
require(ggplot2) | ||
``` | ||
|
||
# nmfspalette <a href={https:://nmfs-general-modeling-tools.github.io/nmfspalette}><img src="man/figures/logo.png" align="right" width=139 height=139 alt="logo with an image of a fish in multiple palette colors" /> | ||
# nmfspalette <a href={https:://nmfs-fish-tools.github.io/nmfspalette}><img src="man/figures/logo.png" align="right" width=139 height=139 alt="logo with an image of a fish in multiple palette colors" /> | ||
|
||
an R color palette for `ggplot2` using NOAA Fisheries branding colors | ||
An R color palette for `{ggplot2}` using NOAA Fisheries branding colors | ||
|
||
![R-CMD-check](https://github.com/nmfs-general-modeling-tools/nmfspalette/workflows/R-CMD-check/badge.svg) | ||
![R-CMD-check](https://github.com/nmfs-fish-tools/nmfspalette/workflows/call-r-cmd-check/badge.svg) | ||
|
||
************** | ||
This implements these [steps](https://drsimonj.svbtle.com/creating-corporate-colour-palettes-for-ggplot2) to create a `ggplot2` compatible palette according to NOAA Fisheries branding. The branding materials can be found [here](https://drive.google.com/drive/folders/1pcMRQHGdzX4NfsiDNTCYIBpRyP1-F57J) (NOAA internal only). | ||
`{nmfspalette}` implements these [steps](https://drsimonj.svbtle.com/creating-corporate-colour-palettes-for-ggplot2) to create a `{ggplot2}` compatible palette according to [NOAA Fisheries branding](https://drive.google.com/drive/folders/1pcMRQHGdzX4NfsiDNTCYIBpRyP1-F57J)(NOAA internal only). | ||
|
||
## Installation | ||
|
||
To install from Github use the following: | ||
To install from GitHub use the following: | ||
```{r, message=FALSE} | ||
remotes::install_github("nmfs-general-modeling-tools/nmfspalette") | ||
library(nmfspalette) | ||
remotes::install_github("nmfs-fish-tools/nmfspalette") | ||
``` | ||
|
||
## Contributing | ||
We welcome contributions to `nmfspalette`. You are welcome to make any changes you would like on a fork and submit a pull request. For more substantial changes or to create a branch, please contact [email protected] (NOAA Affiliates only). We ask that all contributors adhere to The NOAA Fisheries Integrated Toolbox [code of conduct](https://github.com/nmfs-fish-tools/Resources/blob/master/CONTRIBUTING.md). | ||
We welcome contributions to `{nmfspalette}`. You are welcome to make any changes you would like on a fork and submit a pull request. For more substantial changes or to create a branch, please contact [email protected] (NOAA Affiliates only). We ask that all contributors adhere to The NOAA Fisheries Integrated Toolbox [code of conduct](https://github.com/nmfs-fish-tools/Resources/blob/main/CONTRIBUTING.md). | ||
|
||
|
||
## Usage | ||
To learn how to use `nmfspalette`, please check out the [interactive `learnr` tutorial](https://connect.fisheries.noaa.gov/colors/). | ||
|
||
Extract an interpolated color palette from the default "oceans" palette. | ||
|
||
Extract an interpolated color palette from the default "oceans" palette. You can change the number of colors (10 shown below). | ||
You can change the number of colors (10 shown below). | ||
```{r, default_pal} | ||
nmfspalette::nmfs_palette("oceans")(10) | ||
``` | ||
|
@@ -86,13 +86,13 @@ nmfspalette::display_nmfs_palette("regional", 6) | |
|
||
## Examples | ||
|
||
In addition to `nmfs_palette` and `display_nmfs_palette` to get in-built palettes, you can extract colors by name. Please see the NOAA Fisheries Branding guide for color names, all spaces are replaced with underscores in the color names. | ||
In addition to `nmfs_palette` and `display_nmfs_palette` to get palettes, you can extract colors by name. Please see the [NOAA Fisheries Branding guide](https://drive.google.com/drive/folders/1pcMRQHGdzX4NfsiDNTCYIBpRyP1-F57J)(NOAA internal only) for color names. Here, all spaces are removed in the color names. | ||
|
||
```{r, nmfs_cols} | ||
nmfspalette::nmfs_cols("processblue") | ||
``` | ||
|
||
To use the palettes with `ggplot2`, the `scale_color_nmfs()` and `scale_fill_nmfs()` functions are provided. If no argument is given to `scale_color_nmfs()`, a default ("oceans") is used: | ||
To use the palettes with `{ggplot2}`, the `scale_color_nmfs()` and `scale_fill_nmfs()` functions are provided. If no argument is given to `scale_color_nmfs()`, a default ("oceans") is used: | ||
|
||
```{r, default_plot, fig.height=3} | ||
p <- ggplot(iris, aes(Sepal.Width, Sepal.Length, color = Species)) + | ||
|
@@ -101,7 +101,7 @@ p <- ggplot(iris, aes(Sepal.Width, Sepal.Length, color = Species)) + | |
p | ||
``` | ||
|
||
`scale_fill_nmfs` does not have a default and therefore requires a named argument for now, this is an example using the "crustacean" palette | ||
`scale_fill_nmfs()` does not have a default and therefore requires a named argument, this is an example using the "crustacean" palette: | ||
```{r, scale_fill_example, fig.height=3} | ||
ggplot(faithfuld, aes(waiting, eruptions)) + | ||
geom_raster(aes(fill = density)) + | ||
|
@@ -114,9 +114,6 @@ ggplot(faithfuld, aes(waiting, eruptions)) + | |
|
||
“The United States Department of Commerce (DOC) GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. DOC has relinquished control of the information and no longer has responsibility to protect the integrity, confidentiality, or availability of the information. Any claims against the Department of Commerce stemming from the use of its GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce. The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.” | ||
|
||
- This project code is made available through GitHub but is managed by NOAA at | ||
https://vlab.ncep.noaa.gov/redmine/projects/integrated-fisheries-toolbox/files | ||
|
||
***** ******* | ||
<a href="https://www.fisheries.noaa.gov/"><img src="man/figures/noaa-fisheries-rgb-2line-horizontal-small.png" height=75 alt="NOAA Fisheries" /> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters