
Extract non-calculated, non-parameter fields from a TWB
Source:R/calculated_fields.R
extract_raw_fields.Rd
Returns raw columns excluding calculated fields and parameters.
Value
A tibble with columns:
- datasource
Datasource name.
- name
User-visible caption or cleaned internal name.
- tableau_internal_name
Internal Tableau name.
- datatype
Tableau datatype.
- role
Tableau role.
- is_hidden
Whether the field is hidden.
- is_parameter
Always
FALSE
.- table
Raw table reference.
- table_clean
Cleaned table name.
Examples
if (FALSE) { # \dontrun{
xml <- xml2::read_xml("inst/extdata/sample.twb")
raw_fields <- extract_raw_fields(xml)
} # }