Skip to contents

Prints tables (i.e. data frame) in different output formats. print_md() is a alias for display(format = "markdown"), print_html() is a alias for display(format = "html"). print_table() is for specific use cases only, and currently only works for compare_parameters() objects.

Usage

# S3 method for parameters_model
display(
  object,
  format = "markdown",
  pretty_names = TRUE,
  split_components = TRUE,
  select = NULL,
  caption = NULL,
  subtitle = NULL,
  footer = NULL,
  align = NULL,
  digits = 2,
  ci_digits = digits,
  p_digits = 3,
  footer_digits = 3,
  ci_brackets = c("(", ")"),
  show_sigma = FALSE,
  show_formula = FALSE,
  zap_small = FALSE,
  font_size = "100%",
  line_padding = 4,
  column_labels = NULL,
  include_reference = FALSE,
  verbose = TRUE,
  ...
)

# S3 method for parameters_sem
display(
  object,
  format = "markdown",
  digits = 2,
  ci_digits = digits,
  p_digits = 3,
  ci_brackets = c("(", ")"),
  ...
)

# S3 method for parameters_efa_summary
display(object, format = "markdown", digits = 3, ...)

# S3 method for parameters_efa
display(
  object,
  format = "markdown",
  digits = 2,
  sort = FALSE,
  threshold = NULL,
  labels = NULL,
  ...
)

# S3 method for equivalence_test_lm
display(object, format = "markdown", digits = 2, ...)

# S3 method for parameters_model
format(
  x,
  pretty_names = TRUE,
  split_components = TRUE,
  select = NULL,
  digits = 2,
  ci_digits = digits,
  p_digits = 3,
  ci_width = NULL,
  ci_brackets = NULL,
  zap_small = FALSE,
  format = NULL,
  groups = NULL,
  include_reference = FALSE,
  ...
)

# S3 method for parameters_model
print_html(
  x,
  pretty_names = TRUE,
  split_components = TRUE,
  select = NULL,
  caption = NULL,
  subtitle = NULL,
  footer = NULL,
  align = NULL,
  digits = 2,
  ci_digits = digits,
  p_digits = 3,
  footer_digits = 3,
  ci_brackets = c("(", ")"),
  show_sigma = FALSE,
  show_formula = FALSE,
  zap_small = FALSE,
  groups = NULL,
  font_size = "100%",
  line_padding = 4,
  column_labels = NULL,
  include_reference = FALSE,
  verbose = TRUE,
  ...
)

# S3 method for parameters_model
print_md(
  x,
  pretty_names = TRUE,
  split_components = TRUE,
  select = NULL,
  caption = NULL,
  subtitle = NULL,
  footer = NULL,
  align = NULL,
  digits = 2,
  ci_digits = digits,
  p_digits = 3,
  footer_digits = 3,
  ci_brackets = c("(", ")"),
  show_sigma = FALSE,
  show_formula = FALSE,
  zap_small = FALSE,
  groups = NULL,
  include_reference = FALSE,
  verbose = TRUE,
  ...
)

print_table(x, digits = 2, p_digits = 3, theme = "default", ...)

Arguments

object

An object returned by model_parameters(), simulate_parameters(), equivalence_test() or principal_components().

format

String, indicating the output format. Can be "markdown" or "html".

pretty_names

Can be TRUE, which will return "pretty" (i.e. more human readable) parameter names. Or "labels", in which case value and variable labels will be used as parameters names. The latter only works for "labelled" data, i.e. if the data used to fit the model had "label" and "labels" attributes. See also section Global Options to Customize Messages when Printing.

split_components

Logical, if TRUE (default), For models with multiple components (zero-inflation, smooth terms, ...), each component is printed in a separate table. If FALSE, model parameters are printed in a single table and a Component column is added to the output.

select

Determines which columns and and which layout columns are printed. There are three options for this argument:

  1. Selecting columns by name or index
    select can be a character vector (or numeric index) of column names that should be printed. There are two pre-defined options for selecting columns: select = "minimal" prints coefficients, confidence intervals and p-values, while select = "short" prints coefficients, standard errors and p-values.

  2. A string expression with layout pattern
    select is a string with "tokens" enclosed in braces. These tokens will be replaced by their associated columns, where the selected columns will be collapsed into one column. However, it is possible to create multiple columns as well. Following tokens are replaced by the related coefficients or statistics: {estimate}, {se}, {ci} (or {ci_low} and {ci_high}), {p} and {stars}. The token {ci} will be replaced by {ci_low}, {ci_high}. Furthermore, a | separates values into new cells/columns. If format = "html", a <br> inserts a line break inside a cell. See 'Examples'.

  3. A string indicating a pre-defined layout
    select can be one of the following string values, to create one of the following pre-defined column layouts:

    • "ci": Estimates and confidence intervals, no asterisks for p-values. This is equivalent to select = "{estimate} ({ci})".

    • "se": Estimates and standard errors, no asterisks for p-values. This is equivalent to select = "{estimate} ({se})".

    • "ci_p": Estimates, confidence intervals and asterisks for p-values. This is equivalent to select = "{estimate}{stars} ({ci})".

    • "se_p": Estimates, standard errors and asterisks for p-values. This is equivalent to select = "{estimate}{stars} ({se})"..

    • "ci_p2": Estimates, confidence intervals and numeric p-values, in two columns. This is equivalent to select = "{estimate} ({ci})|{p}".

    • "se_p2": Estimate, standard errors and numeric p-values, in two columns. This is equivalent to select = "{estimate} ({se})|{p}".

For model_parameters(), glue-like syntax is still experimental in the case of more complex models (like mixed models) and may not return expected results.

caption

Table caption as string. If NULL, depending on the model, either a default caption or no table caption is printed. Use caption = "" to suppress the table caption.

subtitle

Table title (same as caption) and subtitle, as strings. If NULL, no title or subtitle is printed, unless it is stored as attributes (table_title, or its alias table_caption, and table_subtitle). If x is a list of data frames, caption may be a list of table captions, one for each table.

footer

Can either be FALSE or an empty string (i.e. "") to suppress the footer, NULL to print the default footer, or a string. The latter will combine the string value with the default footer.

align

Only applies to HTML tables. May be one of "left", "right" or "center".

digits, ci_digits, p_digits

Number of digits for rounding or significant figures. May also be "signif" to return significant figures or "scientific" to return scientific notation. Control the number of digits by adding the value as suffix, e.g. digits = "scientific4" to have scientific notation with 4 decimal places, or digits = "signif5" for 5 significant figures (see also signif()).

footer_digits

Number of decimal places for values in the footer summary.

ci_brackets

Logical, if TRUE (default), CI-values are encompassed in square brackets (else in parentheses).

show_sigma

Logical, if TRUE, adds information about the residual standard deviation.

show_formula

Logical, if TRUE, adds the model formula to the output.

zap_small

Logical, if TRUE, small values are rounded after digits decimal places. If FALSE, values with more decimal places than digits are printed in scientific notation.

font_size

For HTML tables, the font size.

line_padding

For HTML tables, the distance (in pixel) between lines.

column_labels

Labels of columns for HTML tables. If NULL, automatic column names are generated. See 'Examples'.

include_reference

Logical, if TRUE, the reference level of factors will be added to the parameters table. This is only relevant for models with categorical predictors. The coefficient for the reference level is always 0 (except when exponentiate = TRUE, then the coefficient will be 1), so this is just for completeness.

verbose

Toggle messages and warnings.

...

Arguments passed to or from other methods.

sort

Sort the loadings.

threshold

A value between 0 and 1 indicates which (absolute) values from the loadings should be removed. An integer higher than 1 indicates the n strongest loadings to retain. Can also be "max", in which case it will only display the maximum loading per variable (the most simple structure).

labels

A character vector containing labels to be added to the loadings data. Usually, the question related to the item.

x

An object returned by model_parameters().

ci_width

Minimum width of the returned string for confidence intervals. If not NULL and width is larger than the string's length, leading whitespaces are added to the string. If width="auto", width will be set to the length of the longest string.

groups

Named list, can be used to group parameters in the printed output. List elements may either be character vectors that match the name of those parameters that belong to one group, or list elements can be row numbers of those parameter rows that should belong to one group. The names of the list elements will be used as group names, which will be inserted as "header row". A possible use case might be to emphasize focal predictors and control variables, see 'Examples'. Parameters will be re-ordered according to the order used in groups, while all non-matching parameters will be added to the end.

theme

String, indicating the table theme. Can be one of "default", "grid", "striped", "bootstrap" or "darklines".

Value

If format = "markdown", the return value will be a character vector in markdown-table format. If format = "html", an object of class gt_tbl. For print_table(), an object of class tinytable is returned.

Details

display() is useful when the table-output from functions, which is usually printed as formatted text-table to console, should be formatted for pretty table-rendering in markdown documents, or if knitted from rmarkdown to PDF or Word files. See vignette for examples.

print_table() is a special function for compare_parameters() objects, which prints the output as a formatted HTML table. It is still somewhat experimental, thus, only a fixed layout-style is available at the moment (columns for estimates, confidence intervals and p-values). However, it is possible to include other model components, like zero-inflation, or random effects in the table. See 'Examples'. An alternative is to set engine = "tt" in print_html() to use the tinytable package for creating HTML tables.

Examples

model <- lm(mpg ~ wt + cyl, data = mtcars)
mp <- model_parameters(model)
display(mp)
#> 
#> 
#> |Parameter   | Coefficient |   SE |         95% CI | t(29) |      p |
#> |:-----------|:-----------:|:----:|:--------------:|:-----:|:------:|
#> |(Intercept) |       39.69 | 1.71 | (36.18, 43.19) | 23.14 | < .001 |
#> |wt          |       -3.19 | 0.76 | (-4.74, -1.64) | -4.22 | < .001 |
#> |cyl         |       -1.51 | 0.41 | (-2.36, -0.66) | -3.64 | 0.001  |

# \donttest{
data(iris)
lm1 <- lm(Sepal.Length ~ Species, data = iris)
lm2 <- lm(Sepal.Length ~ Species + Petal.Length, data = iris)
lm3 <- lm(Sepal.Length ~ Species * Petal.Length, data = iris)
out <- compare_parameters(lm1, lm2, lm3)

print_html(
  out,
  select = "{coef}{stars}|({ci})",
  column_labels = c("Estimate", "95% CI")
)
#> <div id="divmhgxzqm" style="padding-left:0px;padding-right:0px;padding-top:10px;padding-bottom:10px;overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
#>   <style>#divmhgxzqm table {
#>   font-family: system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
#>   -webkit-font-smoothing: antialiased;
#>   -moz-osx-font-smoothing: grayscale;
#> }
#> 
#> #divmhgxzqm thead, #divmhgxzqm tbody, #divmhgxzqm tfoot, #divmhgxzqm tr, #divmhgxzqm td, #divmhgxzqm th {
#>   border-style: none;
#> }
#> 
#> #divmhgxzqm p {
#>   margin: 0;
#>   padding: 0;
#> }
#> 
#> #divmhgxzqm .gt_table {
#>   display: table;
#>   border-collapse: collapse;
#>   line-height: normal;
#>   margin-left: auto;
#>   margin-right: auto;
#>   color: #333333;
#>   font-size: 100%;
#>   font-weight: normal;
#>   font-style: normal;
#>   background-color: #FFFFFF;
#>   width: auto;
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #A8A8A8;
#>   border-right-style: none;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #A8A8A8;
#>   border-left-style: none;
#>   border-left-width: 2px;
#>   border-left-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_caption {
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#> }
#> 
#> #divmhgxzqm .gt_title {
#>   color: #333333;
#>   font-size: 125%;
#>   font-weight: initial;
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-bottom-color: #FFFFFF;
#>   border-bottom-width: 0;
#> }
#> 
#> #divmhgxzqm .gt_subtitle {
#>   color: #333333;
#>   font-size: 85%;
#>   font-weight: initial;
#>   padding-top: 3px;
#>   padding-bottom: 5px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-top-color: #FFFFFF;
#>   border-top-width: 0;
#> }
#> 
#> #divmhgxzqm .gt_heading {
#>   background-color: #FFFFFF;
#>   text-align: center;
#>   border-bottom-color: #FFFFFF;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_bottom_border {
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_col_headings {
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_col_heading {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: normal;
#>   text-transform: inherit;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#>   vertical-align: bottom;
#>   padding-top: 5px;
#>   padding-bottom: 6px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   overflow-x: hidden;
#> }
#> 
#> #divmhgxzqm .gt_column_spanner_outer {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: normal;
#>   text-transform: inherit;
#>   padding-top: 0;
#>   padding-bottom: 0;
#>   padding-left: 4px;
#>   padding-right: 4px;
#> }
#> 
#> #divmhgxzqm .gt_column_spanner_outer:first-child {
#>   padding-left: 0;
#> }
#> 
#> #divmhgxzqm .gt_column_spanner_outer:last-child {
#>   padding-right: 0;
#> }
#> 
#> #divmhgxzqm .gt_column_spanner {
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   vertical-align: bottom;
#>   padding-top: 5px;
#>   padding-bottom: 5px;
#>   overflow-x: hidden;
#>   display: inline-block;
#>   width: 100%;
#> }
#> 
#> #divmhgxzqm .gt_spanner_row {
#>   border-bottom-style: hidden;
#> }
#> 
#> #divmhgxzqm .gt_group_heading {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   text-transform: inherit;
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#>   vertical-align: middle;
#>   text-align: left;
#> }
#> 
#> #divmhgxzqm .gt_empty_group_heading {
#>   padding: 0.5px;
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   vertical-align: middle;
#> }
#> 
#> #divmhgxzqm .gt_from_md > :first-child {
#>   margin-top: 0;
#> }
#> 
#> #divmhgxzqm .gt_from_md > :last-child {
#>   margin-bottom: 0;
#> }
#> 
#> #divmhgxzqm .gt_row {
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   margin: 10px;
#>   border-top-style: solid;
#>   border-top-width: 1px;
#>   border-top-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#>   vertical-align: middle;
#>   overflow-x: hidden;
#> }
#> 
#> #divmhgxzqm .gt_stub {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   text-transform: inherit;
#>   border-right-style: solid;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #divmhgxzqm .gt_stub_row_group {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   text-transform: inherit;
#>   border-right-style: solid;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   vertical-align: top;
#> }
#> 
#> #divmhgxzqm .gt_row_group_first td {
#>   border-top-width: 2px;
#> }
#> 
#> #divmhgxzqm .gt_row_group_first th {
#>   border-top-width: 2px;
#> }
#> 
#> #divmhgxzqm .gt_summary_row {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   text-transform: inherit;
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #divmhgxzqm .gt_first_summary_row {
#>   border-top-style: solid;
#>   border-top-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_first_summary_row.thick {
#>   border-top-width: 2px;
#> }
#> 
#> #divmhgxzqm .gt_last_summary_row {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_grand_summary_row {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   text-transform: inherit;
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #divmhgxzqm .gt_first_grand_summary_row {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-top-style: double;
#>   border-top-width: 6px;
#>   border-top-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_last_grand_summary_row_top {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-bottom-style: double;
#>   border-bottom-width: 6px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_striped {
#>   background-color: rgba(128, 128, 128, 0.05);
#> }
#> 
#> #divmhgxzqm .gt_table_body {
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_footnotes {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   border-bottom-style: none;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 2px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_footnote {
#>   margin: 0px;
#>   font-size: 90%;
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #divmhgxzqm .gt_sourcenotes {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   border-bottom-style: none;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 2px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #divmhgxzqm .gt_sourcenote {
#>   font-size: 90%;
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #divmhgxzqm .gt_left {
#>   text-align: left;
#> }
#> 
#> #divmhgxzqm .gt_center {
#>   text-align: center;
#> }
#> 
#> #divmhgxzqm .gt_right {
#>   text-align: right;
#>   font-variant-numeric: tabular-nums;
#> }
#> 
#> #divmhgxzqm .gt_font_normal {
#>   font-weight: normal;
#> }
#> 
#> #divmhgxzqm .gt_font_bold {
#>   font-weight: bold;
#> }
#> 
#> #divmhgxzqm .gt_font_italic {
#>   font-style: italic;
#> }
#> 
#> #divmhgxzqm .gt_super {
#>   font-size: 65%;
#> }
#> 
#> #divmhgxzqm .gt_footnote_marks {
#>   font-size: 75%;
#>   vertical-align: 0.4em;
#>   position: initial;
#> }
#> 
#> #divmhgxzqm .gt_asterisk {
#>   font-size: 100%;
#>   vertical-align: 0;
#> }
#> 
#> #divmhgxzqm .gt_indent_1 {
#>   text-indent: 5px;
#> }
#> 
#> #divmhgxzqm .gt_indent_2 {
#>   text-indent: 10px;
#> }
#> 
#> #divmhgxzqm .gt_indent_3 {
#>   text-indent: 15px;
#> }
#> 
#> #divmhgxzqm .gt_indent_4 {
#>   text-indent: 20px;
#> }
#> 
#> #divmhgxzqm .gt_indent_5 {
#>   text-indent: 25px;
#> }
#> </style>
#>   <table class="gt_table" data-quarto-disable-processing="false" data-quarto-bootstrap="false">
#>   <thead>
#>     <tr class="gt_col_headings gt_spanner_row">
#>       <th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="2" colspan="1" scope="col" id="Parameter">Parameter</th>
#>       <th class="gt_center gt_columns_top_border gt_column_spanner_outer" rowspan="1" colspan="2" scope="colgroup" id="lm1">
#>         <span class="gt_column_spanner">lm1</span>
#>       </th>
#>       <th class="gt_center gt_columns_top_border gt_column_spanner_outer" rowspan="1" colspan="2" scope="colgroup" id="lm2">
#>         <span class="gt_column_spanner">lm2</span>
#>       </th>
#>       <th class="gt_center gt_columns_top_border gt_column_spanner_outer" rowspan="1" colspan="2" scope="colgroup" id="lm3">
#>         <span class="gt_column_spanner">lm3</span>
#>       </th>
#>     </tr>
#>     <tr class="gt_col_headings">
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="Estimate">Estimate</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="95% CI">95% CI</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="Estimate">Estimate</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="95% CI">95% CI</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="Estimate">Estimate</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="95% CI">95% CI</th>
#>     </tr>
#>   </thead>
#>   <tbody class="gt_table_body">
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;">(Intercept)</td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center">5.01***</td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center">(4.86, 5.15)</td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center">3.68***</td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center">(3.47, 3.89)</td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center">4.21***</td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center">(3.41, 5.02)</td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;">Species (versicolor)</td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center">0.93***</td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center">(0.73, 1.13)</td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center">-1.60***</td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center">(-1.98, -1.22)</td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center">-1.81**</td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center">(-2.99, -0.62)</td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;">Species (virginica)</td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center">1.58***</td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center">(1.38, 1.79)</td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center">-2.12***</td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center">(-2.66, -1.58)</td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center">-3.15***</td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center">(-4.41, -1.90)</td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;">Petal Length</td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center">0.90***</td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center">(0.78, 1.03)</td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center">0.54</td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center">(-4.76e-03, 1.09)</td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;">Species (versicolor) × Petal Length</td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center">0.29</td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center">(-0.30, 0.87)</td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;">Species (virginica) × Petal Length</td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center">0.45</td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center">(-0.12, 1.03)</td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left"></td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center"></td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center"></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left">Observations</td>
#> <td headers="Estimate (lm1)" class="gt_row gt_center">150</td>
#> <td headers="(ci) (lm1)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm2)" class="gt_row gt_center">150</td>
#> <td headers="(ci) (lm2)" class="gt_row gt_center"></td>
#> <td headers="Estimate (lm3)" class="gt_row gt_center">150</td>
#> <td headers="(ci) (lm3)" class="gt_row gt_center"></td></tr>
#>   </tbody>
#>   <tfoot class="gt_sourcenotes">
#>     <tr>
#>       <td class="gt_sourcenote" colspan="7"></td>
#>     </tr>
#>   </tfoot>
#>   
#> </table>
#> </div>

# line break, unicode minus-sign
print_html(
  out,
  select = "{estimate}{stars}<br>({ci_low} \u2212 {ci_high})",
  column_labels = c("Est. (95% CI)")
)
#> <div id="dmvsfexemq" style="padding-left:0px;padding-right:0px;padding-top:10px;padding-bottom:10px;overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
#>   <style>#dmvsfexemq table {
#>   font-family: system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
#>   -webkit-font-smoothing: antialiased;
#>   -moz-osx-font-smoothing: grayscale;
#> }
#> 
#> #dmvsfexemq thead, #dmvsfexemq tbody, #dmvsfexemq tfoot, #dmvsfexemq tr, #dmvsfexemq td, #dmvsfexemq th {
#>   border-style: none;
#> }
#> 
#> #dmvsfexemq p {
#>   margin: 0;
#>   padding: 0;
#> }
#> 
#> #dmvsfexemq .gt_table {
#>   display: table;
#>   border-collapse: collapse;
#>   line-height: normal;
#>   margin-left: auto;
#>   margin-right: auto;
#>   color: #333333;
#>   font-size: 100%;
#>   font-weight: normal;
#>   font-style: normal;
#>   background-color: #FFFFFF;
#>   width: auto;
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #A8A8A8;
#>   border-right-style: none;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #A8A8A8;
#>   border-left-style: none;
#>   border-left-width: 2px;
#>   border-left-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_caption {
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#> }
#> 
#> #dmvsfexemq .gt_title {
#>   color: #333333;
#>   font-size: 125%;
#>   font-weight: initial;
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-bottom-color: #FFFFFF;
#>   border-bottom-width: 0;
#> }
#> 
#> #dmvsfexemq .gt_subtitle {
#>   color: #333333;
#>   font-size: 85%;
#>   font-weight: initial;
#>   padding-top: 3px;
#>   padding-bottom: 5px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-top-color: #FFFFFF;
#>   border-top-width: 0;
#> }
#> 
#> #dmvsfexemq .gt_heading {
#>   background-color: #FFFFFF;
#>   text-align: center;
#>   border-bottom-color: #FFFFFF;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_bottom_border {
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_col_headings {
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_col_heading {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: normal;
#>   text-transform: inherit;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#>   vertical-align: bottom;
#>   padding-top: 5px;
#>   padding-bottom: 6px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   overflow-x: hidden;
#> }
#> 
#> #dmvsfexemq .gt_column_spanner_outer {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: normal;
#>   text-transform: inherit;
#>   padding-top: 0;
#>   padding-bottom: 0;
#>   padding-left: 4px;
#>   padding-right: 4px;
#> }
#> 
#> #dmvsfexemq .gt_column_spanner_outer:first-child {
#>   padding-left: 0;
#> }
#> 
#> #dmvsfexemq .gt_column_spanner_outer:last-child {
#>   padding-right: 0;
#> }
#> 
#> #dmvsfexemq .gt_column_spanner {
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   vertical-align: bottom;
#>   padding-top: 5px;
#>   padding-bottom: 5px;
#>   overflow-x: hidden;
#>   display: inline-block;
#>   width: 100%;
#> }
#> 
#> #dmvsfexemq .gt_spanner_row {
#>   border-bottom-style: hidden;
#> }
#> 
#> #dmvsfexemq .gt_group_heading {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   text-transform: inherit;
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#>   vertical-align: middle;
#>   text-align: left;
#> }
#> 
#> #dmvsfexemq .gt_empty_group_heading {
#>   padding: 0.5px;
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   vertical-align: middle;
#> }
#> 
#> #dmvsfexemq .gt_from_md > :first-child {
#>   margin-top: 0;
#> }
#> 
#> #dmvsfexemq .gt_from_md > :last-child {
#>   margin-bottom: 0;
#> }
#> 
#> #dmvsfexemq .gt_row {
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   margin: 10px;
#>   border-top-style: solid;
#>   border-top-width: 1px;
#>   border-top-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 1px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 1px;
#>   border-right-color: #D3D3D3;
#>   vertical-align: middle;
#>   overflow-x: hidden;
#> }
#> 
#> #dmvsfexemq .gt_stub {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   text-transform: inherit;
#>   border-right-style: solid;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #dmvsfexemq .gt_stub_row_group {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   font-size: 100%;
#>   font-weight: initial;
#>   text-transform: inherit;
#>   border-right-style: solid;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   vertical-align: top;
#> }
#> 
#> #dmvsfexemq .gt_row_group_first td {
#>   border-top-width: 2px;
#> }
#> 
#> #dmvsfexemq .gt_row_group_first th {
#>   border-top-width: 2px;
#> }
#> 
#> #dmvsfexemq .gt_summary_row {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   text-transform: inherit;
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #dmvsfexemq .gt_first_summary_row {
#>   border-top-style: solid;
#>   border-top-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_first_summary_row.thick {
#>   border-top-width: 2px;
#> }
#> 
#> #dmvsfexemq .gt_last_summary_row {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_grand_summary_row {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   text-transform: inherit;
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #dmvsfexemq .gt_first_grand_summary_row {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-top-style: double;
#>   border-top-width: 6px;
#>   border-top-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_last_grand_summary_row_top {
#>   padding-top: 8px;
#>   padding-bottom: 8px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#>   border-bottom-style: double;
#>   border-bottom-width: 6px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_striped {
#>   background-color: rgba(128, 128, 128, 0.05);
#> }
#> 
#> #dmvsfexemq .gt_table_body {
#>   border-top-style: solid;
#>   border-top-width: 2px;
#>   border-top-color: #D3D3D3;
#>   border-bottom-style: solid;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_footnotes {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   border-bottom-style: none;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 2px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_footnote {
#>   margin: 0px;
#>   font-size: 90%;
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #dmvsfexemq .gt_sourcenotes {
#>   color: #333333;
#>   background-color: #FFFFFF;
#>   border-bottom-style: none;
#>   border-bottom-width: 2px;
#>   border-bottom-color: #D3D3D3;
#>   border-left-style: none;
#>   border-left-width: 2px;
#>   border-left-color: #D3D3D3;
#>   border-right-style: none;
#>   border-right-width: 2px;
#>   border-right-color: #D3D3D3;
#> }
#> 
#> #dmvsfexemq .gt_sourcenote {
#>   font-size: 90%;
#>   padding-top: 4px;
#>   padding-bottom: 4px;
#>   padding-left: 5px;
#>   padding-right: 5px;
#> }
#> 
#> #dmvsfexemq .gt_left {
#>   text-align: left;
#> }
#> 
#> #dmvsfexemq .gt_center {
#>   text-align: center;
#> }
#> 
#> #dmvsfexemq .gt_right {
#>   text-align: right;
#>   font-variant-numeric: tabular-nums;
#> }
#> 
#> #dmvsfexemq .gt_font_normal {
#>   font-weight: normal;
#> }
#> 
#> #dmvsfexemq .gt_font_bold {
#>   font-weight: bold;
#> }
#> 
#> #dmvsfexemq .gt_font_italic {
#>   font-style: italic;
#> }
#> 
#> #dmvsfexemq .gt_super {
#>   font-size: 65%;
#> }
#> 
#> #dmvsfexemq .gt_footnote_marks {
#>   font-size: 75%;
#>   vertical-align: 0.4em;
#>   position: initial;
#> }
#> 
#> #dmvsfexemq .gt_asterisk {
#>   font-size: 100%;
#>   vertical-align: 0;
#> }
#> 
#> #dmvsfexemq .gt_indent_1 {
#>   text-indent: 5px;
#> }
#> 
#> #dmvsfexemq .gt_indent_2 {
#>   text-indent: 10px;
#> }
#> 
#> #dmvsfexemq .gt_indent_3 {
#>   text-indent: 15px;
#> }
#> 
#> #dmvsfexemq .gt_indent_4 {
#>   text-indent: 20px;
#> }
#> 
#> #dmvsfexemq .gt_indent_5 {
#>   text-indent: 25px;
#> }
#> </style>
#>   <table class="gt_table" data-quarto-disable-processing="false" data-quarto-bootstrap="false">
#>   <thead>
#>     <tr class="gt_col_headings">
#>       <th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="1" colspan="1" scope="col" id="Parameter">Parameter</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="Est. (95% CI)">Est. (95% CI)</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="Est. (95% CI)">Est. (95% CI)</th>
#>       <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="Est. (95% CI)">Est. (95% CI)</th>
#>     </tr>
#>   </thead>
#>   <tbody class="gt_table_body">
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;"><div class='gt_from_md'><p>(Intercept)</p>
#> </div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'><p>5.01***<br>(4.86 − 5.15)</p>
#> </div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'><p>3.68***<br>(3.47 − 3.89)</p>
#> </div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'><p>4.21***<br>(3.41 − 5.02)</p>
#> </div></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;"><div class='gt_from_md'><p>Species (versicolor)</p>
#> </div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'><p>0.93***<br>(0.73 − 1.13)</p>
#> </div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'><p>-1.60***<br>(-1.98 − -1.22)</p>
#> </div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'><p>-1.81**<br>(-2.99 − -0.62)</p>
#> </div></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;"><div class='gt_from_md'><p>Species (virginica)</p>
#> </div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'><p>1.58***<br>(1.38 − 1.79)</p>
#> </div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'><p>-2.12***<br>(-2.66 − -1.58)</p>
#> </div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'><p>-3.15***<br>(-4.41 − -1.90)</p>
#> </div></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;"><div class='gt_from_md'><p>Petal Length</p>
#> </div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'></div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'><p>0.90***<br>(0.78 − 1.03)</p>
#> </div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'><p>0.54<br>(-4.76e-03 − 1.09)</p>
#> </div></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;"><div class='gt_from_md'><p>Species (versicolor) × Petal Length</p>
#> </div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'></div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'></div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'><p>0.29<br>(-0.30 − 0.87)</p>
#> </div></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left" style="border-right-width: 1px; border-right-style: solid; border-right-color: #d3d3d3;"><div class='gt_from_md'><p>Species (virginica) × Petal Length</p>
#> </div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'></div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'></div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'><p>0.45<br>(-0.12 − 1.03)</p>
#> </div></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left"><div class='gt_from_md'></div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'></div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'></div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'></div></td></tr>
#>     <tr><td headers="Parameter" class="gt_row gt_left"><div class='gt_from_md'><p>Observations</p>
#> </div></td>
#> <td headers="lm1" class="gt_row gt_center"><div class='gt_from_md'><p>150</p>
#> </div></td>
#> <td headers="lm2" class="gt_row gt_center"><div class='gt_from_md'><p>150</p>
#> </div></td>
#> <td headers="lm3" class="gt_row gt_center"><div class='gt_from_md'><p>150</p>
#> </div></td></tr>
#>   </tbody>
#>   <tfoot class="gt_sourcenotes">
#>     <tr>
#>       <td class="gt_sourcenote" colspan="4"></td>
#>     </tr>
#>   </tfoot>
#>   
#> </table>
#> </div>
# }
# \donttest{
data(iris)
data(Salamanders, package = "glmmTMB")
m1 <- lm(Sepal.Length ~ Species * Petal.Length, data = iris)
m2 <- lme4::lmer(
  Sepal.Length ~ Petal.Length + Petal.Width + (1 | Species),
  data = iris
)
m3 <- glmmTMB::glmmTMB(
  count ~ spp + mined + (1 | site),
  ziformula = ~mined,
  family = poisson(),
  data = Salamanders
)
out <- compare_parameters(m1, m2, m3, effects = "all", component = "all")
print_table(out)
#> <!DOCTYPE html> 
#> <html lang="en">
#>   <head>
#>     <meta charset="UTF-8">
#>     <meta name="viewport" content="width=device-width, initial-scale=1.0">
#>     <title>tinytable_v1mrbt9a9zi6btpr5kel</title>
#>     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
#>     <style>
#> .table td.tinytable_css_jqdwe9tz2qtv56gifz98, .table th.tinytable_css_jqdwe9tz2qtv56gifz98 {    border-bottom: solid 0.1em #d3d8dc; }
#> .table td.tinytable_css_j3jtj2bzu6tqeds0w381, .table th.tinytable_css_j3jtj2bzu6tqeds0w381 {    text-align: center; }
#> .table td.tinytable_css_dz2528uf6d84vf5qck5z, .table th.tinytable_css_dz2528uf6d84vf5qck5z {    border-bottom: solid 0.05em #d3d8dc; }
#> .table td.tinytable_css_hj8668kg55wr7mxgbu82, .table th.tinytable_css_hj8668kg55wr7mxgbu82 {   padding-left: 1em; }
#> .table td.tinytable_css_pme1h57cr18eo5291ykb, .table th.tinytable_css_pme1h57cr18eo5291ykb {    text-align: center; }
#> .table td.tinytable_css_7akw5q12gu9fg5mdos3v, .table th.tinytable_css_7akw5q12gu9fg5mdos3v {    font-style: italic; }
#> .table td.tinytable_css_2ziwexp7b81feld7alr8, .table th.tinytable_css_2ziwexp7b81feld7alr8 {    border-bottom: solid 0.05em #d4d4d4; }
#> .table td.tinytable_css_z8ddbclaf6vm55rfvoqm, .table th.tinytable_css_z8ddbclaf6vm55rfvoqm {    border-top: solid 0.1em #d4d4d4; }
#> .table td.tinytable_css_1nnm8lp3trvdd8nx2e1j, .table th.tinytable_css_1nnm8lp3trvdd8nx2e1j {    border-bottom: solid 0.1em #d4d4d4; }
#> .table td.tinytable_css_7nh1762ur06hlzfijtop, .table th.tinytable_css_7nh1762ur06hlzfijtop {    border-bottom: solid 0.1em #d4d4d4; }
#>     </style>
#>     <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
#>     <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
#>     <script>
#>     MathJax = {
#>       tex: {
#>         inlineMath: [['$', '$'], ['\\(', '\\)']]
#>       },
#>       svg: {
#>         fontCache: 'global'
#>       }
#>     };
#>     </script>
#>   </head>
#> 
#>   <body>
#>     <div class="container">
#>       <table class="table table-borderless" id="tinytable_v1mrbt9a9zi6btpr5kel" style="width: auto; margin-left: auto; margin-right: auto;" data-quarto-disable-processing='true'>
#>         <thead>
#> <tr>
#> <th scope="col" align="center" colspan=1> </th>
#> <th scope="col" align="center" colspan=3>m1</th>
#> <th scope="col" align="center" colspan=3>m2</th>
#> <th scope="col" align="center" colspan=3>m3</th>
#> </tr>
#>         
#>               <tr>
#>                 <th scope="col">Parameter</th>
#>                 <th scope="col">Coefficient</th>
#>                 <th scope="col">95% CI</th>
#>                 <th scope="col">p</th>
#>                 <th scope="col">Coefficient</th>
#>                 <th scope="col">95% CI</th>
#>                 <th scope="col">p</th>
#>                 <th scope="col">Log-Mean</th>
#>                 <th scope="col">95% CI</th>
#>                 <th scope="col">p</th>
#>               </tr>
#>         </thead>
#>         
#>         <tbody>
#>                 <tr>
#>                   <td>(Intercept)                        </td>
#>                   <td>4.21 </td>
#>                   <td>3.41, 5.02  </td>
#>                   <td>< .001</td>
#>                   <td>2.51 </td>
#>                   <td>1.20, 3.83 </td>
#>                   <td>< .001</td>
#>                   <td>-0.36</td>
#>                   <td>-0.90, 0.18 </td>
#>                   <td>0.194 </td>
#>                 </tr>
#>                 <tr>
#>                   <td>Species (versicolor) × Petal Length</td>
#>                   <td>0.29 </td>
#>                   <td>-0.30, 0.87 </td>
#>                   <td>0.334 </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>Petal Length                       </td>
#>                   <td>0.54 </td>
#>                   <td>0.00, 1.09  </td>
#>                   <td>0.052 </td>
#>                   <td>0.89 </td>
#>                   <td>0.75, 1.04 </td>
#>                   <td>< .001</td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>Species (versicolor)               </td>
#>                   <td>-1.81</td>
#>                   <td>-2.99, -0.62</td>
#>                   <td>0.003 </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>Species (virginica)                </td>
#>                   <td>-3.15</td>
#>                   <td>-4.41, -1.90</td>
#>                   <td>< .001</td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>Species (virginica) × Petal Length </td>
#>                   <td>0.45 </td>
#>                   <td>-0.12, 1.03 </td>
#>                   <td>0.120 </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>Petal Width                        </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>-0.02</td>
#>                   <td>-0.33, 0.28</td>
#>                   <td>0.877 </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>spp (EC-L)                         </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>0.67 </td>
#>                   <td>0.41, 0.92  </td>
#>                   <td>< .001</td>
#>                 </tr>
#>                 <tr>
#>                   <td>spp (PR)                           </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>-1.27</td>
#>                   <td>-1.74, -0.80</td>
#>                   <td>< .001</td>
#>                 </tr>
#>                 <tr>
#>                   <td>spp (DM)                           </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>0.27 </td>
#>                   <td>0.00, 0.54  </td>
#>                   <td>0.051 </td>
#>                 </tr>
#>                 <tr>
#>                   <td>spp (EC-A)                         </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>-0.57</td>
#>                   <td>-0.97, -0.16</td>
#>                   <td>0.006 </td>
#>                 </tr>
#>                 <tr>
#>                   <td>spp (DES-L)                        </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>0.63 </td>
#>                   <td>0.38, 0.87  </td>
#>                   <td>< .001</td>
#>                 </tr>
#>                 <tr>
#>                   <td>spp (DF)                           </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>0.12 </td>
#>                   <td>-0.17, 0.40 </td>
#>                   <td>0.435 </td>
#>                 </tr>
#>                 <tr>
#>                   <td>mined (no)                         </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>1.27 </td>
#>                   <td>0.74, 1.80  </td>
#>                   <td>< .001</td>
#>                 </tr>
#>                 <tr>
#>                   <td>(Intercept) (zi)                   </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>0.79 </td>
#>                   <td>0.26, 1.32  </td>
#>                   <td>0.004 </td>
#>                 </tr>
#>                 <tr>
#>                   <td>minedno (zi)                       </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>-1.84</td>
#>                   <td>-2.46, -1.23</td>
#>                   <td>< .001</td>
#>                 </tr>
#>                 <tr>
#>                   <td>SD (Residual)                      </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>0.34 </td>
#>                   <td>0.30, 0.38 </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>SD (Intercept: Species)            </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>1.07 </td>
#>                   <td>0.39, 2.91 </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                 </tr>
#>                 <tr>
#>                   <td>SD (Intercept: site)               </td>
#>                   <td>     </td>
#>                   <td>            </td>
#>                   <td>      </td>
#>                   <td>     </td>
#>                   <td>           </td>
#>                   <td>      </td>
#>                   <td>0.33 </td>
#>                   <td>0.18, 0.63  </td>
#>                   <td>      </td>
#>                 </tr>
#>         </tbody>
#>       </table>
#>     </div>
#> 
#>     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
#>     <script>
#>       function styleCell_tinytable_smkvguomypn0gbjlwepz(i, j, css_id) {
#>         var table = document.getElementById("tinytable_v1mrbt9a9zi6btpr5kel");
#>         table.rows[i].cells[j].classList.add(css_id);
#>       }
#>       function insertSpanRow_ce7lhpivtykp79irgoen(i, colspan, content) {
#>         var table = document.getElementById('tinytable_v1mrbt9a9zi6btpr5kel');
#>         var newRow = table.insertRow(i);
#>         var newCell = newRow.insertCell(0);
#>         newCell.setAttribute("colspan", colspan);
#>         // newCell.innerText = content;
#>         // this may be unsafe, but innerText does not interpret <br>
#>         newCell.innerHTML = content;
#>       }
#>       function spanCell_tinytable_smkvguomypn0gbjlwepz(i, j, rowspan, colspan) {
#>         var table = document.getElementById("tinytable_v1mrbt9a9zi6btpr5kel");
#>         const targetRow = table.rows[i];
#>         const targetCell = targetRow.cells[j];
#>         for (let r = 0; r < rowspan; r++) {
#>           // Only start deleting cells to the right for the first row (r == 0)
#>           if (r === 0) {
#>             // Delete cells to the right of the target cell in the first row
#>             for (let c = colspan - 1; c > 0; c--) {
#>               if (table.rows[i + r].cells[j + c]) {
#>                 table.rows[i + r].deleteCell(j + c);
#>               }
#>             }
#>           }
#>           // For rows below the first, delete starting from the target column
#>           if (r > 0) {
#>             for (let c = colspan - 1; c >= 0; c--) {
#>               if (table.rows[i + r] && table.rows[i + r].cells[j]) {
#>                 table.rows[i + r].deleteCell(j);
#>               }
#>             }
#>           }
#>         }
#>         // Set rowspan and colspan of the target cell
#>         targetCell.rowSpan = rowspan;
#>         targetCell.colSpan = colspan;
#>       }
#> 
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 0, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 1, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 2, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 3, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 4, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 5, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 6, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 7, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 8, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(1, 9, 'tinytable_css_jqdwe9tz2qtv56gifz98') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 0, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 1, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 2, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 3, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 4, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 5, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 6, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 7, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 8, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 9, 'tinytable_css_j3jtj2bzu6tqeds0w381') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 1, 'tinytable_css_dz2528uf6d84vf5qck5z') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 2, 'tinytable_css_dz2528uf6d84vf5qck5z') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 3, 'tinytable_css_dz2528uf6d84vf5qck5z') })
#> window.addEventListener('load', function () { insertSpanRow_ce7lhpivtykp79irgoen(18, 10, 'Random Effects Variances') });
#> window.addEventListener('load', function () { insertSpanRow_ce7lhpivtykp79irgoen(16, 10, 'Fixed Effects (Zero-Inflation Component)') });
#> window.addEventListener('load', function () { insertSpanRow_ce7lhpivtykp79irgoen(2, 10, 'Fixed Effects') });
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(3, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(4, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(5, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(6, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(7, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(8, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(9, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(10, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(11, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(12, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(13, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(14, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(15, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(16, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(18, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(19, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(21, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(22, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 0, 'tinytable_css_hj8668kg55wr7mxgbu82') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 0, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 1, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 2, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 3, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 4, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 5, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 6, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 7, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 8, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 9, 'tinytable_css_pme1h57cr18eo5291ykb') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 0, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 0, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 0, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 1, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 1, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 1, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 2, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 2, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 2, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 3, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 3, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 3, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 4, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 4, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 4, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 5, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 5, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 5, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 6, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 6, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 6, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 7, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 7, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 7, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 8, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 8, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 8, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(2, 9, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 9, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 9, 'tinytable_css_7akw5q12gu9fg5mdos3v') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 0, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 0, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 1, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 1, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 2, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 2, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 3, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 3, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 4, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 4, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 5, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 5, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 6, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 6, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 7, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 7, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 8, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 8, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(17, 9, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(20, 9, 'tinytable_css_2ziwexp7b81feld7alr8') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 0, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 1, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 2, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 3, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 4, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 5, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 6, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 7, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 8, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 9, 'tinytable_css_z8ddbclaf6vm55rfvoqm') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 1, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 2, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 3, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 4, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 5, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 6, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 7, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 8, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(0, 9, 'tinytable_css_1nnm8lp3trvdd8nx2e1j') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 0, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 1, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 2, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 3, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 4, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 5, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 6, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 7, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 8, 'tinytable_css_7nh1762ur06hlzfijtop') })
#> window.addEventListener('load', function () { styleCell_tinytable_smkvguomypn0gbjlwepz(23, 9, 'tinytable_css_7nh1762ur06hlzfijtop') })
#>     </script>
#> 
#>   </body>
#> 
#> </html> 
# }