
Print tables in different output formats
Source:R/display.R
, R/format.R
, R/print_html.R
, and 1 more
display.parameters_model.Rd
Prints tables (i.e. data frame) in different output formats.
print_md()
is a alias for display(format = "markdown")
.
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,
...
)
Arguments
- object
An object returned by
model_parameters()
,simulate_parameters()
,equivalence_test()
orprincipal_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. IfFALSE
, model parameters are printed in a single table and aComponent
column is added to the output.- select
Determines which columns and and which layout columns are printed. There are three options for this argument:
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, whileselect = "short"
prints coefficients, standard errors and p-values.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. Ifformat = "html"
, a<br>
inserts a line break inside a cell. See 'Examples'.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 toselect = "{estimate} ({ci})"
."se"
: Estimates and standard errors, no asterisks for p-values. This is equivalent toselect = "{estimate} ({se})"
."ci_p"
: Estimates, confidence intervals and asterisks for p-values. This is equivalent toselect = "{estimate}{stars} ({ci})"
."se_p"
: Estimates, standard errors and asterisks for p-values. This is equivalent toselect = "{estimate}{stars} ({se})"
.."ci_p2"
: Estimates, confidence intervals and numeric p-values, in two columns. This is equivalent toselect = "{estimate} ({ci})|{p}"
."se_p2"
: Estimate, standard errors and numeric p-values, in two columns. This is equivalent toselect = "{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. Usecaption = ""
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 aliastable_caption
, andtable_subtitle
). Ifx
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, ordigits = "signif5"
for 5 significant figures (see alsosignif()
).- 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 afterdigits
decimal places. IfFALSE
, values with more decimal places thandigits
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 always0
(except whenexponentiate = TRUE
, then the coefficient will be1
), 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. Ifwidth="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.
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
.
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.
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>
# }