pixiedust (version 0.8.5)

sprinkle_colnames: Column Names for dust Tables

Description

Assigns new column names to a table

Usage

sprinkle_colnames(x, ...)

# S3 method for default sprinkle_colnames(x, ...)

# S3 method for dust_list sprinkle_colnames(x, ...)

Arguments

x

A dust object.

...

Column names for the table. See 'Input Formats'

Input Formats

  • named arguments Using dust_colnames(term = "Term", estimate = "Estimate"), column names may be passed for all or a subset of the columns. The existing column name will be matched against the argument name.

  • unnamed arguments Using dust_colnames("Term", "Estimate", "SE", ...), column names may be passed for all of the columns. If the arguments are unnamed, the number of arguments passed must match the number of columns in the table.

When using named arguments (or a named vector), you may not mix named and unnamed elements. In other words, if one element is named, they must all be named. Unnamed elements are assigned to columns in sequential order.

See Also

sprinkle

Examples

Run this code
# NOT RUN {
x <- dust(lm(mpg ~ qsec + factor(am), data = mtcars)) 
x
x %>% sprinkle_colnames(term = "Term", statistic = "T")
x %>% sprinkle_colnames("Term", "Estimate", "SE", "T-statistic", "p-value")
# }
# NOT RUN {
# Causes an error due to too few unnamed arguments
x %>% sprinkle_colnames("Term", "Estimate")
# }

Run the code above in your browser using DataCamp Workspace