https://github.com/romainfrancois/chkmate
Read output from rchk into a tibble
https://github.com/romainfrancois/chkmate
Last synced: 22 days ago
JSON representation
Read output from rchk into a tibble
- Host: GitHub
- URL: https://github.com/romainfrancois/chkmate
- Owner: romainfrancois
- License: other
- Created: 2019-03-15T12:00:30.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-15T12:13:37.000Z (about 6 years ago)
- Last Synced: 2025-03-15T21:47:35.337Z (30 days ago)
- Language: R
- Size: 29.3 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - romainfrancois/chkmate - Read output from rchk into a tibble (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# chkmateThe goal of chkmate is to read results from [rchk](https://github.com/kalibera/rchk)
into a tibble## Installation
``` r
pak::pkg_install("romainfrancois/chkmate")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(chkmate)log <- system.file(
"example_rchk", "dplyr_0.8.0.9008.tar.gz-c0b210930e7a4463a181e422cc216d29",
package = "chkmate"
)
read_rchk(log)
```