From 06fc47dfd08f245ab52a7e1c9d029bb40271eaf4 Mon Sep 17 00:00:00 2001 From: Romain Francois Date: Sat, 3 Feb 2024 10:39:41 +0100 Subject: [PATCH] :baby: --- .Rbuildignore | 5 + .github/.gitignore | 1 + .github/CODE_OF_CONDUCT.md | 126 +++++++++++++++++++++++ .github/CONTRIBUTING.md | 47 +++++++++ .github/ISSUE_TEMPLATE/issue_template.md | 16 +++ .github/SUPPORT.md | 35 +++++++ .github/workflows/R-CMD-check.yaml | 62 +++++++++++ .github/workflows/pkgdown.yaml | 48 +++++++++ .github/workflows/pr-commands.yaml | 79 ++++++++++++++ .github/workflows/test-coverage.yaml | 50 +++++++++ .gitignore | 1 + DESCRIPTION | 11 +- NAMESPACE | 1 + R/peek.R | 9 ++ README.Rmd | 2 + README.md | 58 +++++++++++ _pkgdown.yml | 4 + codecov.yml | 14 +++ man/figures/README-pressure-1.png | Bin 0 -> 22985 bytes man/peek.Rd | 15 +++ tests/testthat/test-peek.R | 3 + 21 files changed, 581 insertions(+), 6 deletions(-) create mode 100644 .github/.gitignore create mode 100644 .github/CODE_OF_CONDUCT.md create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/ISSUE_TEMPLATE/issue_template.md create mode 100644 .github/SUPPORT.md create mode 100644 .github/workflows/R-CMD-check.yaml create mode 100644 .github/workflows/pkgdown.yaml create mode 100644 .github/workflows/pr-commands.yaml create mode 100644 .github/workflows/test-coverage.yaml create mode 100644 R/peek.R create mode 100644 README.md create mode 100644 _pkgdown.yml create mode 100644 codecov.yml create mode 100644 man/figures/README-pressure-1.png create mode 100644 man/peek.Rd create mode 100644 tests/testthat/test-peek.R diff --git a/.Rbuildignore b/.Rbuildignore index c196a26..8229716 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -3,3 +3,8 @@ ^LICENSE\.md$ ^README\.Rmd$ ^cran-comments\.md$ +^\.github$ +^codecov\.yml$ +^_pkgdown\.yml$ +^docs$ +^pkgdown$ diff --git a/.github/.gitignore b/.github/.gitignore new file mode 100644 index 0000000..2d19fc7 --- /dev/null +++ b/.github/.gitignore @@ -0,0 +1 @@ +*.html diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..3ac34c8 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,126 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at codeofconduct@posit.co. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][https://github.com/mozilla/inclusion]. + +For answers to common questions about this code of conduct, see the FAQ at +. Translations are available at . + +[homepage]: https://www.contributor-covenant.org diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..195c0a2 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,47 @@ +# Contributing to snitch + +This outlines how to propose a change to snitch. +For a detailed discussion on contributing to this and other tidyverse packages, please see the [development contributing guide](https://rstd.io/tidy-contrib) and our [code review principles](https://code-review.tidyverse.org/). + +## Fixing typos + +You can fix typos, spelling mistakes, or grammatical errors in the documentation directly using the GitHub web interface, as long as the changes are made in the _source_ file. +This generally means you'll need to edit [roxygen2 comments](https://roxygen2.r-lib.org/articles/roxygen2.html) in an `.R`, not a `.Rd` file. +You can find the `.R` file that generates the `.Rd` by reading the comment in the first line. + +## Bigger changes + +If you want to make a bigger change, it's a good idea to first file an issue and make sure someone from the team agrees that it’s needed. +If you’ve found a bug, please file an issue that illustrates the bug with a minimal +[reprex](https://www.tidyverse.org/help/#reprex) (this will also help you write a unit test, if needed). +See our guide on [how to create a great issue](https://code-review.tidyverse.org/issues/) for more advice. + +### Pull request process + +* Fork the package and clone onto your computer. If you haven't done this before, we recommend using `usethis::create_from_github("tadascience/snitch", fork = TRUE)`. + +* Install all development dependencies with `devtools::install_dev_deps()`, and then make sure the package passes R CMD check by running `devtools::check()`. + If R CMD check doesn't pass cleanly, it's a good idea to ask for help before continuing. +* Create a Git branch for your pull request (PR). We recommend using `usethis::pr_init("brief-description-of-change")`. + +* Make your changes, commit to git, and then create a PR by running `usethis::pr_push()`, and following the prompts in your browser. + The title of your PR should briefly describe the change. + The body of your PR should contain `Fixes #issue-number`. + +* For user-facing changes, add a bullet to the top of `NEWS.md` (i.e. just below the first header). Follow the style described in . + +### Code style + +* New code should follow the tidyverse [style guide](https://style.tidyverse.org). + You can use the [styler](https://CRAN.R-project.org/package=styler) package to apply these styles, but please don't restyle code that has nothing to do with your PR. + +* We use [roxygen2](https://cran.r-project.org/package=roxygen2), with [Markdown syntax](https://cran.r-project.org/web/packages/roxygen2/vignettes/rd-formatting.html), for documentation. + +* We use [testthat](https://cran.r-project.org/package=testthat) for unit tests. + Contributions with test cases included are easier to accept. + +## Code of Conduct + +Please note that the snitch project is released with a +[Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to this +project you agree to abide by its terms. diff --git a/.github/ISSUE_TEMPLATE/issue_template.md b/.github/ISSUE_TEMPLATE/issue_template.md new file mode 100644 index 0000000..d7c9eba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue_template.md @@ -0,0 +1,16 @@ +--- +name: Bug report or feature request +about: Describe a bug you've seen or make a case for a new feature +--- + +Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on or . + +Please include a minimal reproducible example (AKA a reprex). If you've never heard of a [reprex](http://reprex.tidyverse.org/) before, start by reading . + +For more advice on how to write a great issue, see . + +Brief description of the problem + +```r +# insert reprex here +``` diff --git a/.github/SUPPORT.md b/.github/SUPPORT.md new file mode 100644 index 0000000..8bb1205 --- /dev/null +++ b/.github/SUPPORT.md @@ -0,0 +1,35 @@ +# Getting help with snitch + +Thanks for using snitch! +Before filing an issue, there are a few places to explore and pieces to put together to make the process as smooth as possible. + +## Make a reprex + +Start by making a minimal **repr**oducible **ex**ample using the [reprex](https://reprex.tidyverse.org/) package. +If you haven't heard of or used reprex before, you're in for a treat! +Seriously, reprex will make all of your R-question-asking endeavors easier (which is a pretty insane ROI for the five to ten minutes it'll take you to learn what it's all about). +For additional reprex pointers, check out the [Get help!](https://www.tidyverse.org/help/) section of the tidyverse site. + +## Where to ask? + +Armed with your reprex, the next step is to figure out [where to ask](https://www.tidyverse.org/help/#where-to-ask). + +* If it's a question: start with [community.rstudio.com](https://community.rstudio.com/), and/or StackOverflow. There are more people there to answer questions. + +* If it's a bug: you're in the right place, [file an issue](https://github.com/tadascience/snitch/issues/new). + +* If you're not sure: let the community help you figure it out! + If your problem _is_ a bug or a feature request, you can easily return here and report it. + +Before opening a new issue, be sure to [search issues and pull requests](https://github.com/tadascience/snitch/issues) to make sure the bug hasn't been reported and/or already fixed in the development version. +By default, the search will be pre-populated with `is:issue is:open`. +You can [edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/) (e.g. `is:pr`, `is:closed`) as needed. +For example, you'd simply remove `is:open` to search _all_ issues in the repo, open or closed. + +## What happens next? + +To be as efficient as possible, development of tidyverse packages tends to be very bursty, so you shouldn't worry if you don't get an immediate response. +Typically we don't look at a repo until a sufficient quantity of issues accumulates, then there’s a burst of intense activity as we focus our efforts. +That makes development more efficient because it avoids expensive context switching between problems, at the cost of taking longer to get back to you. +This process makes a good reprex particularly important because it might be multiple months between your initial report and when we start working on it. +If we can’t reproduce the bug, we can’t fix it! diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml new file mode 100644 index 0000000..07c1dfa --- /dev/null +++ b/.github/workflows/R-CMD-check.yaml @@ -0,0 +1,62 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +# +# NOTE: This workflow is overkill for most R packages and +# check-standard.yaml is likely a better choice. +# usethis::use_github_action("check-standard") will install it. +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +name: R-CMD-check + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - {os: macos-latest, r: 'release'} + + - {os: windows-latest, r: 'release'} + # Use 3.6 to trigger usage of RTools35 + - {os: windows-latest, r: '3.6'} + # use 4.1 to check with rtools40's older compiler + - {os: windows-latest, r: '4.1'} + + - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-latest, r: 'release'} + - {os: ubuntu-latest, r: 'oldrel-1'} + - {os: ubuntu-latest, r: 'oldrel-2'} + - {os: ubuntu-latest, r: 'oldrel-3'} + - {os: ubuntu-latest, r: 'oldrel-4'} + + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + R_KEEP_PKG_SOURCE: yes + + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + http-user-agent: ${{ matrix.config.http-user-agent }} + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - uses: r-lib/actions/check-r-package@v2 + with: + upload-snapshots: true diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml new file mode 100644 index 0000000..a7276e8 --- /dev/null +++ b/.github/workflows/pkgdown.yaml @@ -0,0 +1,48 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + release: + types: [published] + workflow_dispatch: + +name: pkgdown + +jobs: + pkgdown: + runs-on: ubuntu-latest + # Only restrict concurrency for non-PR jobs + concurrency: + group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::pkgdown, local::. + needs: website + + - name: Build site + run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) + shell: Rscript {0} + + - name: Deploy to GitHub pages 🚀 + if: github.event_name != 'pull_request' + uses: JamesIves/github-pages-deploy-action@v4.5.0 + with: + clean: false + branch: gh-pages + folder: docs diff --git a/.github/workflows/pr-commands.yaml b/.github/workflows/pr-commands.yaml new file mode 100644 index 0000000..eea58c5 --- /dev/null +++ b/.github/workflows/pr-commands.yaml @@ -0,0 +1,79 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + issue_comment: + types: [created] + +name: Commands + +jobs: + document: + if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/document') }} + name: document + runs-on: ubuntu-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/pr-fetch@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::roxygen2 + needs: pr-document + + - name: Document + run: roxygen2::roxygenise() + shell: Rscript {0} + + - name: commit + run: | + git config --local user.name "$GITHUB_ACTOR" + git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" + git add man/\* NAMESPACE + git commit -m 'Document' + + - uses: r-lib/actions/pr-push@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + + style: + if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/style') }} + name: style + runs-on: ubuntu-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/pr-fetch@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + + - uses: r-lib/actions/setup-r@v2 + + - name: Install dependencies + run: install.packages("styler") + shell: Rscript {0} + + - name: Style + run: styler::style_pkg() + shell: Rscript {0} + + - name: commit + run: | + git config --local user.name "$GITHUB_ACTOR" + git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" + git add \*.R + git commit -m 'Style' + + - uses: r-lib/actions/pr-push@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml new file mode 100644 index 0000000..960234c --- /dev/null +++ b/.github/workflows/test-coverage.yaml @@ -0,0 +1,50 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +name: test-coverage + +jobs: + test-coverage: + runs-on: ubuntu-latest + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::covr + needs: coverage + + - name: Test coverage + run: | + covr::codecov( + quiet = FALSE, + clean = FALSE, + install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package") + ) + shell: Rscript {0} + + - name: Show testthat output + if: always() + run: | + ## -------------------------------------------------------------------- + find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true + shell: bash + + - name: Upload test results + if: failure() + uses: actions/upload-artifact@v4 + with: + name: coverage-test-failures + path: ${{ runner.temp }}/package diff --git a/.gitignore b/.gitignore index 7c794aa..457525e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ .httr-oauth .DS_Store .quarto +docs diff --git a/DESCRIPTION b/DESCRIPTION index d215af4..115161f 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,10 +1,9 @@ Package: snitch -Title: What the Package Does (One Line, Title Case) -Version: 0.0.0.9000 +Title: Spy on function calls and outputs +Version: 2024.2.0 Authors@R: - person("First", "Last", , "first.last@example.com", role = c("aut", "cre"), - comment = c(ORCID = "YOUR-ORCID-ID")) -Description: What the package does (one paragraph). + person("Romain", "François", email = "romain@tada.science", role = c("aut", "cre")) +Description: Spy and inform about function calls and outputs. License: MIT + file LICENSE Suggests: testthat (>= 3.0.0) @@ -12,5 +11,5 @@ Config/testthat/edition: 3 Encoding: UTF-8 Roxygen: list(markdown = TRUE) RoxygenNote: 7.3.1 -URL: https://github.com/tadascience/snitch +URL: https://github.com/tadascience/snitch, http://tada.science/snitch/ BugReports: https://github.com/tadascience/snitch/issues diff --git a/NAMESPACE b/NAMESPACE index 6ae9268..859697b 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,2 +1,3 @@ # Generated by roxygen2: do not edit by hand +export(peek) diff --git a/R/peek.R b/R/peek.R new file mode 100644 index 0000000..33b25d2 --- /dev/null +++ b/R/peek.R @@ -0,0 +1,9 @@ +#' Peek function inputs +#' +#' @examples +#' peek() +#' +#' @export +peek <- function() { + cat("hello\n") +} diff --git a/README.Rmd b/README.Rmd index f1daaec..39e19cd 100644 --- a/README.Rmd +++ b/README.Rmd @@ -18,6 +18,8 @@ knitr::opts_chunk$set( [![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental) [![CRAN status](https://www.r-pkg.org/badges/version/snitch)](https://CRAN.R-project.org/package=snitch) +[![R-CMD-check](https://github.com/tadascience/snitch/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/tadascience/snitch/actions/workflows/R-CMD-check.yaml) +[![Codecov test coverage](https://codecov.io/gh/tadascience/snitch/branch/main/graph/badge.svg)](https://app.codecov.io/gh/tadascience/snitch?branch=main) The goal of snitch is to ... diff --git a/README.md b/README.md new file mode 100644 index 0000000..4d1a085 --- /dev/null +++ b/README.md @@ -0,0 +1,58 @@ + + + +# snitch + + + +[![Lifecycle: +experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental) +[![CRAN +status](https://www.r-pkg.org/badges/version/snitch)](https://CRAN.R-project.org/package=snitch) +[![R-CMD-check](https://github.com/tadascience/snitch/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/tadascience/snitch/actions/workflows/R-CMD-check.yaml) +[![Codecov test +coverage](https://codecov.io/gh/tadascience/snitch/branch/main/graph/badge.svg)](https://app.codecov.io/gh/tadascience/snitch?branch=main) + + +The goal of snitch is to … + +## Installation + +You can install the development version of snitch like so: + +``` r +# FILL THIS IN! HOW CAN PEOPLE INSTALL YOUR DEV PACKAGE? +``` + +## Example + +This is a basic example which shows you how to solve a common problem: + +``` r +library(snitch) +## basic example code +``` + +What is special about using `README.Rmd` instead of just `README.md`? +You can include R chunks like so: + +``` r +summary(cars) +#> speed dist +#> Min. : 4.0 Min. : 2.00 +#> 1st Qu.:12.0 1st Qu.: 26.00 +#> Median :15.0 Median : 36.00 +#> Mean :15.4 Mean : 42.98 +#> 3rd Qu.:19.0 3rd Qu.: 56.00 +#> Max. :25.0 Max. :120.00 +``` + +You’ll still need to render `README.Rmd` regularly, to keep `README.md` +up-to-date. `devtools::build_readme()` is handy for this. + +You can also embed plots, for example: + + + +In that case, don’t forget to commit and push the resulting figure +files, so they display on GitHub and CRAN. diff --git a/_pkgdown.yml b/_pkgdown.yml new file mode 100644 index 0000000..62de321 --- /dev/null +++ b/_pkgdown.yml @@ -0,0 +1,4 @@ +url: http://snitch.tada.science +template: + bootstrap: 5 + diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..04c5585 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,14 @@ +comment: false + +coverage: + status: + project: + default: + target: auto + threshold: 1% + informational: true + patch: + default: + target: auto + threshold: 1% + informational: true diff --git a/man/figures/README-pressure-1.png b/man/figures/README-pressure-1.png new file mode 100644 index 0000000000000000000000000000000000000000..7bc4c8f7db547c559fb01ef2a8848679c60e06a8 GIT binary patch literal 22985 zcmeIabyQXD*EYII2^A282L(Y|N(BRu*dPcD?>Ya~*I5_n>cwiWWkk!;w^#UVdlrffn1Af^ zk$aJM$(?Knt9UJf)h7J=zr^v%qy2WiIh>|>pNRJjOHA<>=}}r`<&SL$76m`*E4!9c zP1>cux!zjMmevtvOg!Y{WM9Ky_xY#jPQhiJ7y^3_g_z^xMCVY$Bdi>6UDoN(y_GR# z^{s!VYI5z%lJ7?GIJps~`%eyIQ@-vN-V~#!!t6i&e=L!xqzQghO^=HZ+124FBKyoJ z@I*W2xZT%F_B*Rv4yv(Hcq75Q6oh927%!?6EQ);fR4rgmCe|sm^L#PV|5c_hqz)s# zD*nuvd%B{Fr>&`nAsI5TPTYBI&-)kf#=?9lrQ zn|r7tC9}P+Gn1{CL{j(Z7h2xDpEpsaFF)?#Y?5K$f^TF^-*H*;qGYho1{Gb%=q1YY zNwmStwTcD-2CaOzPhR~JPG@VdT+-U%j6tsuf8D>_f6`I-^PaIm$cS9bGKCWFT14@U)E(iWyfHA#*D-6Yi~!aP4oVHor&(ZIuqB`kMAAx!1A2w zQz^PSbEQFrz`fK;YpfUJRF3WxIjdwEHTYFAaZFlp*h?j=rTc*eLIJEQBhLc!*> z>%lZko<9ah1;01h#@oa{81nk6HOy(FW25tc#x`EutiyT!iuuo+q;~}4rV)4g<3-fJ zaqzPkJQjHW;k|*B+~nyekMQqZbaA+zLHdkBs|@$cTPuSM_e?K}blX|W%)GAeLQ1#7 zahcsxf6Q}Z$y)w+L@y~sN%z>I%;nMCYN~^Wlt6Ee_h;M1`}{b1ZaQvP1j&TnTl-KB z`B&bVUF@)#%B?>+5?~seUl2Y0^h53F4?Th$E>`m6W7P>PGo_PdRIRBe3nEO$P;Xti zc-~t{?(I_aIj0!f#^dtrFyB~LFXSZ}&ctfjHmSenW&ERJ9+fGW>a?cd#Qafj2$QGN z=R=LE+?nPKnweD%Cridb)Hk;Z?fvat7x!hXjv-WW!amkMqZ8pL{jPd&5Ilx=C5>cc zP^|DX9tz`MQxrD*gaLogz+c3dU>;n-Oh~{w_!(mu`Oi~2ef=mD8YL+ztmK3-H*hS5 zw6k|((RhmX?aFhdu*A00#8b4NRD+hLQ#6QOZ+^=5O;lZ>)BW^>78CO+tuFz~2&;=J z-SFwq(koN9t(M~_cC40uGO023gf=o%ZMxCchALKampQLB@ER+yyONM&6QfZWzyHx= z2xPmp8F&H{kJbzI`=480s8B+TKmSjRrcK4fPPjbA#C>!ZrhN9{f1|u335dNuhrVn$ zdMF;c1o!ASJyta8jG`si&4YIm)1t=C9FBn4HywpxB3)8@{P3AD0Q18S|7QUIS%Lqo zz<*ZY|H}$2p#ufHFYAB)I+IhynVz2BBjuHJ;F!Ew@W@!?(MHX29AZz&{6waMB)LB2 zMto%m<4!kOT%YZsFR`5nKgD?aV5_El4fAWBBafOl~Wt$x@aliuvE}e50J=zP-kE|J$Vtn#I-~^2?*O z^wB!)sWM67$MES7Jnt)l7|*@USLaSG?`lzaSq_$~spp%Vzi{C~TZZbzbnS{#)6I_N z?X|g(XJ@b1txUBWeh#3_)vduyzms&U;Z7~_p#!Bg$LPjMpcj9BB`aomqB&w`bNN_i zk1q**vh73@*S+`H?WfLIGpo=YycloP*K6ihO^#-X!q)nHyx~InQ|IOJFmJ45b>+^> zHrQd(B!~Vwm)u$l)m!dtD=8&aUwUhQAlLf4Nc!D(i9bAM51&U%tbx%z@Nj;htjL78 z)V!N>sy*$+)DN{>1IgMjwumXLQqy*(s4J$y4Y4;=SFQ;V9>gEw7no^s@!=J&>vgYg z{+q0jay$5Fx1B=%viKV{b5J~BQd*V!JyO_V^UN#|GImM_k+UU`?A1Sjz zeK<#ARvfcjTqwb5*2pT_e6diRgZ1{ZHYXP;{K)e|78NIPDBxW2FO`d#NMjL@q|F9fFrGG$}=a^1Hb zT2(D@o{fF5FMsU&{cQIM5rwm{Zrb~Nug&E6a)eEyxC})#1g;Wys_p-KoKkN~@ncI+ z=ArQ>V3S|eW|tFK4IQc+tB;7d_3TV-u3`O7A!9E=cYzldiF=~f!;WLWX5c+~s->*3 z*ZxvVB36iF2JS>zr`8gANyW1%mMV3tAEf*N= zHS0%fLsDGVe^NTid|QV(M)?Zf%MoLJ^6S8&+wjQP@3z=&-msqzofN9bdwJYlNPzj9 zJq8PDtE((^&L0FcY~&ppO4e>6Uv`qIZ=@8ZBu7lz%G_so+x^cOpbf&-r1Wx;^=iU+ zQ}cSSU2I$aet&Um!?9@Q7a1Aj>2wEA@ah%{^AGtj=8Ui4~{?}9%i;VQ^#m*zVqKXc7V@l?_q0pV{Yv%H%s~8o@iKB@Z8^Z zEZJS_8ykOVb?wEF+e}uGs80(ew~<7eZ0u-3x3*LyshHTIX^E1+0e>S$)0Q6D#5+ON z+Nuu*!ab3wnxh@nB#E4-4^K`+buIn{5hrlK7F1r#3)=-dH;*{yyvVLAp3K_19mZ;? z`N{QQU?^`MVrwlLd1|+g5?kYTBBgCF&bx2XKg;F?o!5Gd8%49{`idf&h4%Yb2;Ju^ z))ikL`Fb_7%3;hqk<9ovoSdOkt!j)GqA7CF{`Ojzm zvp&C_(Epvbkxhi=s1F_}bF8m)-xkRc5I;JWA2qAPFeVEv`V1ypUMUoqDc43^j1Rq_ zccZGkJooq1aO3MDuUlzTf*WagdHtfXQtj!3 zXQOGQkcT(EydIICpU=)V+Vl1g&Y7S;bnqz52Xw=w8Vdkd$WMqk&h;|7Z>?N*=eI{G zWNVf*NNmWwyjGhm8Dj9Wza+6}O6|bMVqlL*Roi2jfMYcTY{=!bpi6m4*DHqC_Oo0* z0L7)T2%Xy*Dp@;)?=X)BWQ=%OR@KJntBrW;q|CBk!#OknBFM$@UpURG6bQ~N>Oz!F zcv$~mVC|H(A!<53074Z2lbv{gwAb1%I~OiKJ=_Q4c+BjxkCFqVMQP$GNK-@(67Po) z1_&WE9N`HdrBB)&SxqO`{O?kzV9MNGtd4lV{z^V*0OS`Gayrnzxs76u4Pd_&qg zGr67__b|D0`4Am+yuEjmQqaxGC@S4GtXG&b>^>GtD7`i6Ya49O(Z&J(Q@g2>B z=u<5YEB-n>-fz;qiH_!Qi74=kxlpSc0A$VtObco4LD+j9t?M`OHZENft6d-6S+ zqOaD!2EZ>1M$3FAa=dnVKf`t+*6}tZ0){&qi#D5M5fd?-yobODZv($L8^>;{EhRCe z+BF>O*vYS*sycHg1O;a7OPONx;|_5xnzj-fhN$hf_=(G+_X@AWY-G^=fzkpK^VbvM z<=Oe{QY%5x5CorJw7Bi_$6y{@2#ky4Bof+rTT=h#*~(AJ*Fn3-qL!N+<&pm2$LBcZBls^&INMvmR{w;pV&+ZJgc{w& z;ZnhbAZA*zKei&F;(g|-nQzluQj<+UL&@p|X5QD{aY|!gwp_yCrTXIm`q|{GJlxZj z(t{_>KaZ^sc}5_J@|@GKcR+?S&3O#fp@%O5F>3#uL3A*IiB9vy$_)_$a(0#!sfci4 zAKcnF0oMlU8+>y~g5RDnE@9?--5Lxf`*Rkm#V~OQ$O0j0jbdg2pxTlDgj1(d(`9XT zDp9>S<8{7Q>5SVQ^*>|wedtyA$YHLxbH`s~iD8N!P57D!@90=zC$a(Sr=_DHesCy> z7f5JPs~F$ukIt1H4jwvbMr!(C<4~A_0G$MBk4`eNZ#D|U#Liuk`p^wli+iCujy-yD zbW`hTTGX@bi|K!z06b!^Ew2TV!<%SJ;lZt|jP{486N3f=Q=W!c@GwWi6IJy>T`8?h zetzg0hw0I%X{`6+hc|go0@rz~JEG&zePFv`1Wlx2d~YjuPx`S_u=rpsy%V2uv(Bvp{%OK2w89l_$kR(B99whMd)~xltWHn(=4#= z<#%)ox&_lYW-Ug@v+{mlVIy_|MDV525V`1^E-RDg#r(;`FtBia4b_5!gGWNi`i_=? znD`5M%j!(G6dZ6dAGx6vNM3UFzntvJHw~F*5Dk}L4qjt7`zOo9U*dv<*=aInHv zs?u!}Go_L5aGx-+cd)6jdec^cn*!iQ1k4PTV@@v&u=bI ztTQE8*;$`DWI`Yq)Zp>pCa|ew21aokN9Qxi#Zg_7!EEtj&peED#CWvB|9Ck}cSxS3 z5u_THS2=$eLuiRhz4U2XT0%zg{#qAcZ|-Ag`?ufA~q{FJOQ0B==YE}p*r`_2Rek9qTHaIvsniaMyhQJ%W5z% zB2s>*7#oZ^+CM)#Yq+&C#ijrGxY}D?? zZ#c{@WIpXN2XM{E!O?hG=)`mVo~zaG(0_4sy4X}!H8a{d6>HG})HhT-c2`w5f4mS% zhUjH8T#Zp1d!xt=^76zNGXb4#WsX*@v`WX&t5fY?Ru(%jBuZ??xONo^ny3Fy`1UeN ztH?68-+g_+=Et+^PYWNK(KPToFMWl`brH}(5E75NvNZHn*ybEd|2I-E!V%ET7+{G| zl`Qp53w@l!BZO`ufI}g)w~=IO=myV~mNW(i7gCc5;PRqs(E6VPf?{tt-iG1nsf0vd zHIF9w$t)XliS)a9#zbuhbBf4g0)=!1Ms7yM27;Tn4r~R5c^)603*=E)TZ+_6(SorD zFan!Tr&S}H`FJEXZW5kmB~wTZ>Q$RSW!*`761A^bhBav?eF!>Gn2Q|4Jb04K4mzcF z>FnzH651|Pj2G^{O#oOVyyCpjEV!Mi=`xj~kZ;l&*%jc}mPC{_&dTPe9;l)UlNT$DwEb&S-%&3FgFZU8Vi0L@b{bkxt_ed4E8X z*A1Mm9G#1RJww4CNNz5TjUjmru*|g^i$54uvlE`=6z7ddDw+Krmq1_1CgAz8LD%^( z0oSz{i|YqY4jn@<`|aJ$CZT;dB)s(7cWb4F@`>pUmOCRX6PMe@0uKl8Cjv1Dew`mj zOwYAY=(yck>6!NqAM)64%zrre;0v{pEih}1k2by645|OD$;WsvLBj{tUKoSJic+s% z>;jCn8G*-ux+pbGS+F$J^)ZlHJ!dc4i@s<3*_?u*aXxz zX>3LwQUxB&tIU-rq z^p_u{r;#^I?Fg**(?c$P>2ycXB8|t!t4;q=;DW>9M19H}31N~6_Pa@U-?n+=qNtPvsofpXAc}EB@q<%JumnnoGhKCT(-a3FBuNjA%IIXI73-P7(YZE*%rV?ITRc_uIbe^DY6@0@V#1d}oRsK7p_KiaW z3p!eJjAo@?7oq`@&HSkc6wASi$Nt7MGQgSNe<(Be?<=Vn=L8xaFZ3A4`w3DAbopPa zf+|D5-H8_RR&Y;3U1GFCe@xZ)Z8dl>qhs1bX zgZ+cNesDO&5(sa5rlzKDolXbrlbF6&I!6D-?Kga(kS0M(Q*(L}$Frs+!B@EBivZyEa2;{uqs@ELuazKJ(u_eMxCJQTY~qg^0_8jL_dC zZv()DsD>EgHLc1QpG@ZU*o$n$XxD{apbue|Ynsvv6goJMUS2+4`Y82c>wBAk0j0T% zabK1qD5~6HrmIn!%v^Bc;El+65=PJp-&hU!+y)CLYVXvn_}-E9T@fgjP>Yh!9yt%M z>V3r5+Kx9|=7b%Dfdt>V0Vp_$NRK5iEB^pcZ*A zZa2H;wQPN|PmssXqIeX~gG9UeK`m{k?>JU%-8!BXp`2R1+fmn#mKdS!kE2zy)ENmW zI75L{j|!K!II+skcgYkCeLUV+t2}sFEg{=c`jp5B*)oS(+wbUxgg87FxDxm{>}V3Lry$J@XP-LCSh2}yQ768>zkM_b z6MV=|rNZrwp8Ve}&ypzHy@OYIe+ePwrD9d>r_tmg6R$fna zXc=AY)`R~f* zpw2#W9AZB{KQrvjH|5g%==+W0DHW**EZlin`mo;#2<;MP)$ZC$1XW>dyE^>rSM%80 zocL;d`>Eu4G%A`bE$a5~u@je~gXqLWHH5J^dRf7aThTA?{_B+lX*oT~AJQ@~1{1Jz zWemTwg0}12RUt1Z6ia-0PQBZehv}`0{m&z^fK%JQ&vxJ=OazMqpp%~N%3?!`!8hj1 z6_KnR;hJU#%2WqkX0jNRUeyH=Te}m!HdM=XUAJu2z&JpQ#A@EaJ4pc0+JObK84FXb zles>?03eCW+a!)ZUtdh+hO>h0SXiD#-!&-I1xUy8DX$<%u7R?>k_9rLFz_7pZ|{9b z1|p!=mMQ(hZzH{P>NQm2qp+^rt_`_=ilCSiHBj!H2NM=iP*6yQ3Z6oRi#_-GY>zIL zmj6aXa4JsaO~8Sfe#`-CwFOCJRGJ`>k=onY#HyPvH{cU^B=}BPL*#EZ8@N?>v}(5I z1&I93TpLR2b5{hchtW|$uJ1@Fo;oy840>Q@^I`RZ!^6j&w#Yd(S$d5h|5rlNk+9Nn zelSsZGFz)GSuS2M^@VY5Fe895%~YbvRGF6sZOM{cjz2Y9`&JIt6Qa)|Bl6_`MjycZ z=D*hm;EiS?)bZFGwY*fy?;Zd?df*(GWTXkEgR%a~5n9Rb9C?244KjpFf7Jl>jS`%A zNIU-@$aKEVot9TO8||deJPN;{_&MLjj8^?mA;ekardzNg>%o%Hmf%3OwoY`V*1bmI zpj2vIg)F^^oM_d(54a$j@cR+fDVPQj$EN=U^--YYB7_a@ggCU~ssaIN+LVrOCoxbVSeOE#hz%4yQ5tt2A8akH^)-b3jPsj3cH)d(p^KygbD~vGZpx%k znjxqFQs>j#J?Bq&)JR$8a=xNp_)ZgAkyIGyoI{QNR*yl9=h-q2_2l zitWTYNL9CLYnqMpF2V}~35wBE;aWsluvf>H^D%-wMfi|*#A87!G=LmaH6MIB&1E&n zulVZwhkxrs7Ae&mz6F_oN^N1hwX!&we2$&_p zU5J*Yy`vpwLIgHdYrW=%0Q^%wDQ>%6Gij-wiDi~M7X|90ew%s@E{`22({FEIIi9up zJzNQFj5(v!XYBqI7q4-@X9sq7<#Oi@$Ddd9=}x_R-f?~rsaQ;3a0bxPh_?ZigN@i% zpdG3Q@rv=o767rE7RG|)Zc;8X^8m-9|{BN#I;H`V+w}Wc-hy<=8Myx4ryd|QkN}=TERB@`wff_p7!^Tr zHjxR{83l&lAJ(I@9{ozvs>|JyxGO9mhjBbV)*kO;2!vYx*b{ZX4Wn8OJNlXhD~;#Q zgK7aJ3+dk_l=x7`13~iHhY*pV-%EhUVBIcrz1BG1oryy|f5B4Fc_~>bTeF8h0N^#} z;A*)rZ5*J5ADgrC*M7g73y+LLU1{y-fVq*+1?}=;d{OwIg}Pvo)ez^FH90wUKkaa@ zu!LoGO2F@6EvlZNTk{ZMKPBblC{FM}AZ@GcCK4!_#NlY*v&h-h-_#NZKIE2;$nclx8j5vv$@ z2d*UH&L1I+L{6BJy&l&QDfpG8I&b)J%-+N}FnkQ2zRU4GYQtd0>9lCYOnm1;|) z-`TE--gc0q!%#UtpkdU{v~Dl z`9L(x8sCm9{a1YkJ&Vm=AIz3rEV4A-$d+f^91h&F6y(ANLzV6dMV4Bi8MB@xxG9TQ zEbX<8#d+f%*)PyWD~JtD0+Xq!X|CtKM-^scypRqM(JZ|p(Kj3|tL8G%v^{`>WY*Zc zwtlUPft2q0&jE$P`)U{D6TF5NfjqoALqx?h{END#6+zW0|6VQhHS8-J{bi0hz*K*k zpM*+sJqXQ`@4nOX=(`InJ$8a7*6(dLkfQb6+ewW#h8%hnnDD_XE8u13#wxde{#Ywh zeS96yfINZ7#E9sRMf;M9!4wlj zW0wOlo7fX3zvw8-LV`RJeGO-&HKM5B#y^x@O+mfzJ|Y`f>QI#P6D*1aXfPt~b!TDG zmXihl*QX;f`A)e5F3bgJv`m%=0z65;c95S61{v0eOUCiL%{`WE_>Lzk3V_u2QZU}H zyJQI)qPWGwFX~vHdoksVZS?*9W0{#W!I$pS9qGJUqD$f^?|n!lY%ctQcnpuK0R)e2 zPQ+8hQVlvzb?3xKu?#v2#FLE}?Dj-5NgRs(W-pmU7C7o7{0EvEXY)Hr0}9uiJ+I8e_4$7GuhCE*Kw?|@asx1}BpqY~49wAH zNJhY#;QbvkcLP|tT)j^Oybnf1m2?ru1eP~A706{Yf-ehBKK8*?@N=|&u;YK6lY}J( z_2a=LaiS84Wri!0tw!1nNPq-iLw_kT9YFn4!K8}&J-NS+d+qsZ z+T>B5<_^e0gEi3_)T@Q-fI}J+Xf0lKAV-~h*$}Dj0mh(zvjQ+i0w4v0PNmxtFaT2C zm^h<8M1p}3F6xFn_Z#t6ea%At!Tbq_%)WawF(2wqx|p83s}acYwwY`>&n=WHSj&8- zzG%pUt;}JLtEit_kW_1;z9alj?2YC4{T*Y`ysoZJq5YlqhT6?u^PJknA72_77G2k7 zFLNZ2GzNSmMpr9?foAh*k%8r$lGJTY6dS*04`q27&swB#1ybRQeC~HX(_TJhuU+X@ z(hn3SMtf)9XwXSP0mH64^F;g$UYiqYzoZmsRNYnNK^@Dx8(>%UuzLuAvH?FJ!9;T@3z16zlVPD*;Hi;MakaDW4b&H)xqJ+>t9eF^xwGOUY9OV`ot;3x+?gdQzL)k=8FP)6 zFav^)3Y68@Z%S#rU5yi0$@g(8h#>oC{<(BJ;vMxPSUC; zDJsiz=Lb!=Kx)n-!UJrvL;ulBaYS3vQKPqA0ss*JHC_gK4uI*lJu7^`ybtnMXU1&8{K ztHw<+UVZP?Oow`}uOcdY!}VhY;hb7#Jv9~f0G|I1VgEwsg^s~Dk$wjUnukq!d}K1l zI$L96{Mn|h@ZEBqWkTgD{uO_b*10>e;RBebJ6*)+Pz4&3(mkL6pXJEFeW*^6 zb@K}O3H4bO^7^>#=9fE=pc^dZYj~B<(5-$xr+KeUR!VA_$y83zqN~S;=GRrr#;d00 zy5SGr#fw>BDr~Fhf9@o4-iH!&BtPhwCuN#F#tYPpUu>*q`*)mmMg1$e?Z+JVH8dG_ z132rvM3P6nS%FN|O_8tMZ*+(L0A`@Mn2&CLE^Rb2-<>qi>Y2t?UJ*pSA(?ybh4Z-o zl%f6HRy$S4UwlBril~-3Sj+&0aWYaAq9aF{{f*&5Yt^PWfxeydCUV{e9y)@n9g5)t zrPP+WRDcv8FaT_O9P+BhzmRHDXYNe0Y5hkK!kCy6uTN*>M2AN~>JmMygjH_B5rl^> zbDX#AX%<;yOT?AzjV7P+YN_0{sO%`PuXQXL3)jemJHI*Fe~T~pGz&YuE;Rv6$fc~r zAj_~0b7758ERJdFsc`laP6b!hG=kkIR=dc{B|J;a*wp<~K` z)(6e&l=~)&$%aBktuTu43H^`S1!H^}Q`RKyDF9c(H;on7oSJj5708qaT^|sOtp$%iy+9KT>jU7 zq56+Z(A%NbCU)%uQc}$A|JjqUd(GY@$T}Pl(;aP(O~Wb%yGvfOWLdi+Wp+~|MFM4P zc5f)Qr7jM$+@*HUXf}F2n&^%@r-4H1q*VqPsyUWSuev;!dk0Q5TusE{pQY`za&=J6)UM#G_weI;Eq1JB zWxA8Ctah8)xM=paKRE}3)nK_t-UwK<#b^0YQJ$I_b{*)E&WIuEqP^$jBJILKq z`|~~Rn#BVvm#t%MApBrivv8U(m8fW)5jjRJ2x5FZ0>=s9C4^fGXiDK|f;n*EvJPO!SB&*MLE%Ge&1Oc(LzY>jj{!l^H9 zS`ZpP7C6(Ni}lv4Xzi+yE8Vnp@cIoEtJS_`LUk9{AxGz_lnD0iDVFfT_s>T``lnZa zGID1NH8ZE5l{E04tai3x&VJ5FwsHt7 z^ED*6vxwGx;^?W9^@~=+fnx+t0MmPZP^s*;-#Y+Y#?)!X8)i zfR9USJ9650g^;tjx`B)M+0GRi>hsz5nHog^HIR(EryWP_jPEV;*8I6IqUvjN59;HH zI(D@ERJ4Cl>%VCB+qq}%_uBTVt#QaL)Q0`Bm13+VW>%#he{Cx&Yc^OHK@mUQw zBl)nC{B15`+}2(Eb0sJaYD4p(x~o2Hvl?D^b`^@OYF?&4%wN5&5wSw_DD&37*(Tk) z$*=c!F*>IFW(8Bbpw9V^pFy7VP4QH7)EjQ@Nm`!m@HhCydHl4PXJ+5MBx$fqop#bt3mmcd769YEXk5yGcV=p))n)v2L7SDI)}Wgw-ZUr-Yg%nhRzTB2LrUp z0f7!QBJa{lF7I5iA3royPz&s4;YDKt0P!~eJh#Loh;$`sBtZOLf6)}c1YWe2dkM|zr^;Ew)hM7 zhJMmPduDeqF*1Jg)DO;Sow?;XgzfUtEV%tEXe}F(?#%I~g~Yzk*^B!^B)*ky<3U+s z{aCQ4ASBd}qwVvEnsgL)f~<(z{UYY{aDb}*0^i-qT^|*y#}8G2c!bw! zLD%FMQ_bKSsV9SgfWS!ezAQH13G|%bq?nH#xhIBuYH2Ts0{gzn-6C}#&1qtKAFNg# zXRCtLJ-0UW!W%HR%I?xQYi8bk*Kl@&;Y}b433*1EsMdq@d2L{XFkyQ= z)?XX$2CS017?K$MF%x2CFo4%f!8`{Syu5OtK9YlnV9`HTl8AJ2D{G%R;*b_j>(aUC z1W|46K-t`1mQ@>aE-F^x9it36k=|1KjLDBZ>`^%Uaw2a)RyuydjSCY(V>qF8U_%~49z^ny;lklv7{;I;HKt!XTpD8E1QdqJ|Eu9NScl}Yv-L9s zk8c>{@`0{Wt=aq%dCjbCm-L8TQe9!pG75E?3HdI75SdG#WJOLZ%X^`J z>p|hoOV?`1cu6cCrYk0|;eY0dTfoYFohkWT0Recouu>?nFAI{{XaI5&+dl;ar5l zZacrR(DvD+BruAX_A4F!0JPTFd%}yMkZ(yr*V`CmoM9^~c2>1MC6;y*qWMrNiUX`8 zg=n5&Fkv7=an|CuQpvn~9_guY=*&=!fZ@7cbJhvzWQv^6*4-%&tX=y2{Ii;k{4l5v z^Ub<4O*!tqtyV90dZ!FZ=?v&53Ex$9IT;RfhIWkH&U8iQ89?I=EAyc4Nks#k%3T_( zH?G*4&gcTSmDOii*2oH^o^w1m<8#YwMC!5%PfXCcb+7qr%yc*BVzJGD79bBPjnBOMaxQNc-BIqsdaj{a{?fKnn{E9JXhs^YJ^;>K z14KVrt80B$8duFa-g1^s($z0-Ge*uZkyu=_8ob{lTw)Jhdg?;ED1+ zBxRsJu|{<4B-N#=$*aDl!w(7Bhfr5wfRXO~lcNSn_Abx~ngz-(<4ti*y586Rdz{Y0 z-p9CNyUq!?+%>EVUCbsNH)e@+FUKz(Z9J{2c@K(~9EzrZOUyhbOoo&F+wGIK84??j zwCdqvdzzg2=|;UFKkgIf9XMjB<_<5Xa77sUn5`1nZ zd?{*Gj1%u8GvJVs_Km{@5zJU!SRr45iCu&i=hbYfC)XiU??c1q*$7~0%^W;)RwU%mXZ)Lpd4tA%g zDc;l;FBKrMm>m|@_T069r|~ZT>ENf6rK9sz`{Z-$|NP!zQpeV_6=H7$DJcqC$B-U^ z&Z$yKrI+vYzdRjaWnZJY^jUZxR8xzPg`X?8_vjSA&A?y(9pw{fNgUc&Rv{9Y5zUq zcu3W`Ec5R5^A>^F7I;-ngIBQ-*)? zy$Yo#DgK>Lq#g|cIg~KUyel&ZG*cZrpLpE2>^6aBY0&wGa9{UWp;pSoS_i`byVfq5GP!roIs2vq z?o}E2LFfpCRO|B%eq9ycY?Rd9*i%^sLa(_=W7?1fA{7p{kr?4Ya*~Rt<*b{_^lQb2$(UEYiE)$HdY3k#MYj%g z4bW$QZjl&!l^a^MjeCnqp<-n8lylD5ifDmb5Ny`ZGO6k&bhqd&i&yO}>NO|p?p+A% z8d!#JLK2=@4|OnaoquCc_+Sh17W&cmbFdS5oj$Mrt8(MPwroIV(GWO?Xdgy@_pUSl z0P0{={Ms71N-VA&R%6573zO~F2x4hsf7Le=2{TP?XaY&F(&CLyG_gxmfzu6rjbdR1tDQ;s_Eevi*B z_A=#fZM<8vx;430_-b*RQ?m*0b3MPS#k;RX85Z5WyVlOvAiA>VyZAbsgPF8j@|FF2 z;~^wGM!LJT+qX}kudPuecP2}c)}QM%?~!x7ETrflB*fiX=q}Z(Q6ZYwQ|Vq7wXHN` z`Qqo=wlPs1mp#$%U=+ydoJ3UIvS~NuGQ%PC5@h5bb}CQ6DG)tdR?xrmvooGKw!JNG zudzYsz7R?6jW1~eIAPAOYY_Ib$7h2*HopqYC0wBF(K>;I%1hnKvWJVyB22AknG&17 zhh)jUdV35%QU|rQ;s<2#-8G2?Do*9uyl&d%SO1>llG|%VcT}!g+E2B8!cK~7n~Zop zkgM-O(i=O}nB1}@`dm~S6Gu&bNH_bX?%IPqEtP8yswbCile>fV+9jv1;&l#pKyLxrvG8=&Kk^#91x?V)vkELvY98F^fI0~Z=QJ& zS>&G; zSn5+8GAO|RweI}S{Z`I2*oXLDv}-ns(WrP z_VU2#fcP9^I!`8)%xIp}zyT`v<{{H1R-lR_dwTHoD|igKfVk=6wWbfX>>ppjmH&L^ zPX_n@=k>`oZazmT*0omOtZODAT%UwP#3L+}_Dj0hBrX2hix@zIS%GT)W6Ogr8 z@<@e38(=P@b+?vdEm9D<R8!1nA9sZE6)R1xV2q(J?|tZ5&dZM9QL8=RmR;@#UPW zGzk3#N&p5ST_ZN|k!aLB^wNew(pn4Hfdz2R(z&Ffs;e(RJQ5xL6~3;f7L@BhKeg*mKwNPqF1{Pp^ z7vi4*NdCv&p;}`Ag{kq138AcvLIT%tXv_QxNrdQn7Swy)KznJSt4rIoy`G}Gm%QjqaXVv@Q~pk z%8W9b+6KXx1l0IshBuKWUI-s_NV<@mmR8SE)K7=V9ATg2K#oZdjeZe6$B60xOeDi~ zCX){Pi{%RsH33%V+Kk;Moy84VN0fRX8BFaggc7|1eDTjF4sgyN;63{58?&g zlOaR1sllQ6YEd-6bbY`s1PVq7EH#>bhd^^^#o&%*Jz)Tywo_VZ7`f*%yt7gjp(_nP zHD(ao388ll#H%X}KOp)ahDryTz^?04m`FOQzHUE*)i-FkYAW-dvx{c|YMx zWUj=|(YBY#0Zq}sSN0;sQ44Y-jZc@dn}94E=A_&9N1D<0f$7}*Nj>eX-C`5 z>UO_u>Myb7xPi`}9foH@!O*A*3UN{PNNZ92Ty;m89P}V&!dFc>3C)}>Q|>Z@Hfl#L z5E8QAxLYV2FF2<~AhlN_ELd4nEAjwK)rkWr7bd&rSy?5T~E8RdcPxOrON z6AoOK7p^%Jdcu)*L(j_7ts3)jVm|c&QlQjsv@jd8rxcpmM!wTUT^ZCbq)tzQiw1I| zFPzw2fF8oSZ}0RQ=N@oKfrdpoUa9PRjn$C6szJlWP@5;wMB7M#{v2>7FR-EWEpP!7 z%DiM2VdYQ+9g8xKTg=EQw00psv6P#)1ECf=S3KrlfdVE3lu;5q&T`O1vT~!-2AVc{ zkN?vav^x=F`y5}SA_~Vze<->+U#0%X*?ee>_te3870Rvn{#SpZ2(d1i8{XYnI2u1m zThKCTdTnAuGk6Xb7zNvcF8fmnF=+a(JjFhQv38Bbb>X{Qeo}&f*^0voc6ST}N8COE z`LleNZnqb0TSo6(ao6Iv?_38infwHgfWKvX-@38J`wJ62ZH8yT;U3ANXuo4$!E0}w z0gWBGt9)RTjimTP$oA)!;M=GoHG0<)=$9)&a&fPFAL=tfAnuI}nnC)NphdhsfUEnF zJwfv9sC$oLgrC6V*Ol!KS_SdWbzm1lJKK*bXb~R?@IGrB=@kZIAPf@6T97UwO^`+|^fK4WoOK|{GIB`++BRB6gE}-> zII+p_jr|h4i@)|vO8fPx#O2Uw%``so*G-Gg&_LLV>S=51QPS~j*K^KUc4MXO+5 zSmTIUaD8hW#y5kQ9}jVhj_sL8W|zj*>;^z7lLBqNsh+9E?hZOt8zY3=BU&0f_M9^A zxE1qgCb{08Mh%S{tKp^dXlA+6tv6Zay|>@&-V~^ZF)>`d+Swnxo=G?k?>o+9u_g?n z6Y`C!xQW_1^c?6oym9hBUDRJlSMIc*h;y}6GRrD@pGP40p|-ExYW4o(E@9Ei`kuOx zGON$ctyk(Ii4g6_CN}U4ZWA$QerdlDMxB?nnqz}%jM)~OSc1$Od|MR8ExtOzA9k{S z3PRIJ_qC`3#HHZqZ(Utc@JCWiRy12g_u>Bnvs1v0 literal 0 HcmV?d00001 diff --git a/man/peek.Rd b/man/peek.Rd new file mode 100644 index 0000000..02ed85a --- /dev/null +++ b/man/peek.Rd @@ -0,0 +1,15 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/peek.R +\name{peek} +\alias{peek} +\title{Peek function inputs} +\usage{ +peek() +} +\description{ +Peek function inputs +} +\examples{ +peek() + +} diff --git a/tests/testthat/test-peek.R b/tests/testthat/test-peek.R new file mode 100644 index 0000000..8849056 --- /dev/null +++ b/tests/testthat/test-peek.R @@ -0,0 +1,3 @@ +test_that("multiplication works", { + expect_equal(2 * 2, 4) +})