| format_performance | R Documentation |
Publication friendly formatting of the results of estimate_performance().
If more than one results set is passed (i.e., one per session), the will be
added as new columns.
format_performance(..., session_names = NULL)
... |
One or more performance result data frames produced by
|
session_names |
Names of the sessions corresponding to the result data
frames passed to |
A long format data frame with the statistical indicators on the first
column and a column with values for each data frame passed to ....
## Not run:
Performance <- list(
s1 = get_session_files("Session1")$Annotations %>% last() %>%
import_data() %>% estimate_performance(),
s2 = get_session_files("Session2")$Annotations %>% last() %>%
import_data() %>% estimate_performance()
)
format_performance(Performance$s1, Performance$s2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.