Create a test data.frame of attributes.

create_dummy_attributes_dataframe(numberAttributes, factors = NULL)

Arguments

numberAttributes

(integer) Number of attributes to be created in the table.

factors

(character) Optional vector of factor names to include.

Value

(data.frame) A data.frame of attributes.

Examples

if (FALSE) { # Create dummy attribute dataframe with 6 attributes and 1 factor attributes <- create_dummy_attributes_dataframe(6, c("Factor1", "Factor2")) }