Coerce object to rowpanel

as.panel(x, ...)

# S3 method for rowpanel
as.panel(x, ...)

# S3 method for character
as.panel(x, ...)

# S3 method for quosures
as.panel(x, ...)

# S3 method for `NULL`
as.panel(x, ...)

Arguments

x

object to coerce

...

arguments passed to rowpanel()

Examples

as.panel("STUDY", prefix = "Study: ")
#> $col #> STUDY #> "STUDY" #> #> $prefix #> [1] "Study: " #> #> $prefix_name #> [1] FALSE #> #> $prefix_skip #> NULL #> #> $null #> [1] FALSE #> #> $dup_err #> [1] TRUE #> #> $bold #> [1] TRUE #> #> $it #> [1] FALSE #> #> $skip #> [1] ".panel.skip." #> #> $hline #> [1] TRUE #> #> attr(,"class") #> [1] "rowpanel"