This file contains hidden or 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
| # ============================================================================= | |
| # @file Makefile | |
| # @brief Makefile for generating previews of the paper | |
| # @author Michael Hucka <[email protected]> | |
| # @license Please see the file named LICENSE in the project directory | |
| # @website https://github.com/casics/dassie | |
| # ============================================================================= | |
| # Change the following values to match your configuration. | |
| # ............................................................................. |
This file contains hidden or 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
| # not possible to change labels via V4 | |
| # https://platform.github.community/t/mutations-for-label/2144 | |
| # list labels | |
| current_labels <- gh::gh("/repos/:owner/:repo/labels", | |
| owner = "ropensci", | |
| repo = "unconf18") | |
| current_labels <- purrr::map_chr(current_labels, "name") | |
| # delete all labels |
This file contains hidden or 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
| library(patchwork) | |
| library(ggplot2) | |
| library(purrr) | |
| library(dplyr) | |
| library(glue) | |
| map( | |
| 5:8, | |
| ~iris %>% | |
| filter(Petal.Length < .x) %>% | |
| ggplot() + |
OlderNewer