Description Usage Arguments Value Examples
Helper function to determine whether a supplied data frame is a specific data-formats
defined in the package. Either returns a boolean or throws a stop.
1 | check_df_format(df, format, dev_mode = FALSE)
|
df |
query data frame |
format |
format to test - see |
dev_mode |
stop if test is false. Default is FALSE |
string of data frame type
1 2 3 4 5 6 7 8 | data(dietlein_data)
check_df_format(dietlein_data, 'resp_df')
data(example_tall_df)
check_df_format(example_tall_df, 'tall_df')
data(mtcars)
check_df_format(mtcars, 'tall_df')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.