Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 674 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 674 Bytes

blockr.generate

⚠️ This is a very basic draft for proof of concept.

Generate blockr code

Installation

You can install the development version of blockr.generate from GitHub with:

# install.packages("remotes")
remotes::install_github("blockr-org/blockr.generate")

Example

library(blockr.generate)

generate_blocks(
    package = "ggstatsplot",
    default_input = "data.frame",
    default_output = "plot",
    default_type = "plot",
    all_functions = define(
        data = define(ignore = TRUE) # all functions will ignore the data argument (no field)
    )
)