https://github.com/edgararuiz/dbt
dplyr back-end testing
https://github.com/edgararuiz/dbt
Last synced: 11 days ago
JSON representation
dplyr back-end testing
- Host: GitHub
- URL: https://github.com/edgararuiz/dbt
- Owner: edgararuiz
- Created: 2021-03-21T12:48:08.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-23T19:23:04.000Z (almost 4 years ago)
- Last Synced: 2024-12-18T10:22:44.019Z (2 months ago)
- Language: R
- Size: 63.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - edgararuiz/dbt - dplyr back-end testing (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# dbt
The goal of `dbt` is to provide a simple interface to run a battery of tests of `dplyr` operations against a new back-end, such as a new database translation.
## Installation
And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("edgararuiz/dbt")
```## Using
```{r}
library(dbt)
library(pracma)script_results <- dbt_read_run_script(silent = TRUE)
script_results
``````{r}
dbt_read_run_script()
```