ssm_table | R Documentation |
Take in the results of an SSM analysis and return an HTML table with the desired formatting.
ssm_table(ssm_object, caption = NULL, drop_xy = FALSE, render = TRUE)
ssm_object |
Required. The results output of |
caption |
A string to be displayed above the table (default = NULL). |
drop_xy |
A logical indicating whether the x-value and y-value parameters should be omitted from the output (default = FALSE). |
render |
A logical indicating whether the table should be displayed in the RStudio viewer or web browser (default = TRUE). |
A data frame containing the information for the HTML table. As a side-effect, may also output the HTML table to the web viewer.
Other ssm functions:
ssm_analyze()
,
ssm_parameters()
,
ssm_score()
Other table functions:
html_render()
# Load example data
data("jz2017")
# Create table of profile results
res <- ssm_analyze(
jz2017,
scales = 2:9,
measures = c("NARPD", "ASPD")
)
ssm_table(res)
# Create table of contrast results
res <- ssm_analyze(
jz2017,
scales = 2:9,
measures = c("NARPD", "ASPD"),
contrast = TRUE
)
ssm_table(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.