-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
66 lines (49 loc) · 1.46 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
output: github_document
always_allow_html: true
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
library(blockr)
library(bslib)
```
# blockr.extra
<!-- badges: start -->
[![ci](https://github.com/blockr-org/blockr.extra/actions/workflows/ci.yml/badge.svg)](https://github.com/blockr-org/blockr.extra/actions/workflows/ci.yml)
[![codecov](https://codecov.io/github/blockr-org/blockr.extra/graph/badge.svg?token=9AO88LK8FJ)](https://codecov.io/github/blockr-org/blockr)
<!-- badges: end -->
## Content
Provides the following blocks:
- `new_filter_expr_block`
- `new_summarize_expr_block`
- `new_admiral_dpc_block`
- `new_code_plot_block`
- `new_code_transform_block`
## Usage
```r
library(blockr)
library(blockr.extra)
options(BLOCKR_DEV = TRUE)
pkgload::load_all(".")
stack1 <- new_stack(
new_dataset_block,
new_filter_expr_block,
new_summarize_expr_block
)
# see admiral vingette for how to use admiral_dpc_block
stack2 <- new_stack(new_dataset_block, new_mutate_block, new_admiral_dpc_block)
set_workspace(summarize_expr_stack = stack1, admiral_stack = stack2)
serve_workspace(clear = FALSE)
```
## Installation
You can install the development version of blockr.extra from [GitHub](https://github.com/) with:
```r
# install.packages("devtools")
devtools::install_github("blockr-org/blockr.extra")
```