Learn R Programming

flair (version 0.0.2)

decorate_code: Creates an object of the class with_flair

Description

Creates an object of the class with_flair

Usage

decorate_code(text, ...)

Arguments

text

A string, presumably representing R code.

...

Any number of default chunk options to override.

Value

A with_flair object.

See Also

flair

Examples

Run this code
# NOT RUN {
# When run in console, this will print the results of mean(1:10)
my_code <- decorate_code(text = 'mean(1:10)') %>% flair_funs()

# The object itself, when printed, previews your code with flair
# }
# NOT RUN {
my_code
# }
# NOT RUN {
# Objects defined by decorate_code are created in the current environment for later use.

my_code <- decorate_code('foo <- mean(1:10)')

foo + 5

# }

Run the code above in your browser using DataLab