Displays an interactive HTML table for browsing the hierarchical structure
of CEPALSTAT indicators using call.indicators() as backend.
Usage
viewer.indicators(
language.en = TRUE,
progress = TRUE,
show_search = TRUE,
striped = TRUE,
bordered = FALSE,
compact = FALSE,
highlight = TRUE,
full_width = TRUE,
page_size = 15,
open.browser = FALSE
)Arguments
- language.en
Logical. If
TRUE(default), the viewer uses English labels. IfFALSE, Spanish labels are used.- progress
Logical. If
TRUE, progress messages are shown.- show_search
Logical. If
TRUE, enables global search in the table.- striped
Logical. If
TRUE, striped rows are shown.- bordered
Logical. If
TRUE, table borders are shown.- compact
Logical. If
TRUE, reduces row padding.- highlight
Logical. If
TRUE, highlights rows on hover.- full_width
Logical. If
TRUE, table uses full available width.- page_size
Integer. Number of rows to show per page.
- open.browser
Logical. If
TRUE, the generated HTML is saved to a temporary file and opened in the default web browser. Defaults toFALSE.
Examples
# \donttest{
viewer.indicators()
#> Preparing indicator viewer...
#> Downloading thematic tree from CEPALSTAT...
#> Parsing indicator hierarchy...
#> Finished downloading indicators.
viewer.indicators(language.en = FALSE)
#> Preparando visor de indicadores...
#> Descargando árbol temático desde CEPALSTAT...
#> Procesando jerarquía de indicadores...
#> Descarga de indicadores finalizada.
viewer.indicators(open.browser = TRUE)
#> Preparing indicator viewer...
#> Downloading thematic tree from CEPALSTAT...
#> Parsing indicator hierarchy...
#> Finished downloading indicators.
# }