Create a test data.frame of attributes.
create_dummy_attributes_dataframe(numberAttributes, factors = NULL)
numberAttributes | (integer) Number of attributes to be created in the table. |
---|---|
factors | (character) Optional vector of factor names to include. |
(data.frame) A data.frame of attributes.
if (FALSE) { # Create dummy attribute dataframe with 6 attributes and 1 factor attributes <- create_dummy_attributes_dataframe(6, c("Factor1", "Factor2")) }