Global options from the insight package
Global options to set defaults for function arguments
options(easystats_display_format = <value>)will set the default format for thedisplay()methods. Can be one of"markdown","html", or"tt". Seedisplay()for details.options(easystats_table_width = <value>)sets the default width for tables printed to the console. Tables exceeding this width are wrapped into multiple parts to ensure clean formatting and avoid excessively long lines.options(easystats_ci_separator = <value>)defines the separator string used between the lower and upper CI limits. Defaults to", ", resulting in an output like[0.3, 0.8].options(easystats_ci_brackets = <value>)determines whether brackets or parentheses are used to enclose formatted CIs. Can beFALSEto omit them,TRUEto include them (defaults to[and]for text output), or a character vector of length 2 to define custom opening and closing symbols (e.g.,c("(", ")")).options(insight_use_symbols = <value>)acceptsTRUEorFALSE. IfTRUE, statistical symbols (e.g., eta-squared, omega) are rendered using their corresponding Unicode characters.options(easystats_errors = <value>)acceptsTRUEorFALSE. IfTRUE, functions that typically suppress errors (viatryCatch()) will instead halt execution and throw an error when an issue occurs.
