Set option parameters for sb_get_group()
Arguments
- guess_col_type
If TRUE,
sb_get_event()
usesreadr::type_convert()
to guess the column types of the exported data frame. If FALSE, all columns will come through as character.- interactive_mode
If TRUE, all messages are printed to the console. If FALSE, they are suppressed. The idea is that
interactive_mode
should be set to FALSE in automated environments to ensure logs aren't clogged up with progress messages.
See also
sb_get_event_option()
sb_sync_event_option()
sb_get_user_option()
sb_get_profile_option()
Other export option helpers:
sb_get_event_option()
,
sb_get_profile_option()
,
sb_get_user_option()
,
sb_sync_event_option()
Examples
if (FALSE) { # \dontrun{
# Calling the function with no arguments returns all the defaults
sb_get_group_option()
# Specifying specific arguments will alter those arguments alone while still
# returning the other defaults
sb_get_group_option(guess_col_type = FALSE, interactive_mode = FALSE)
} # }