Closed Aariq closed 9 months ago
The get_agent_report(agent, title = "a custom title", size = "small) does not change the default title of the table.
get_agent_report(agent, title = "a custom title", size = "small)
library(pointblank) tbl <- dplyr::tibble(a = c(5, 7, 8, 5)) agent <- create_agent( tbl = tbl, tbl_name = "small_table", label = "An example." ) %>% col_vals_gt(columns = vars(a), value = 4) %>% interrogate() get_agent_report( agent = agent, title = "a custom title", size = "small" ) get_agent_report( agent = agent, title = "a custom title", size = "standard" )
In this example, both the standard and small tables should have the title "a custom title".
End the reproducible example with a call to sessionInfo() in the same session (e.g. reprex(session_info = TRUE)) and include the output.
sessionInfo()
reprex(session_info = TRUE)
The title argument also has no effect if the agent has not been interrogated, regardless of size.
title
size
Prework
Description
The
get_agent_report(agent, title = "a custom title", size = "small)
does not change the default title of the table.Reproducible example
Expected result
In this example, both the standard and small tables should have the title "a custom title".
Session info
End the reproducible example with a call to
sessionInfo()
in the same session (e.g.reprex(session_info = TRUE)
) and include the output.