| schema_api | R Documentation |
schema object within an existing roadmap.Add, update, or reset a schema object within an existing roadmap.
add_schema(roadmap, schema)
update_schema(roadmap, ...)
reset_schema(roadmap)
roadmap |
A |
schema |
A |
... |
Optional named parameters passed to |
A new roadmap object.
A roadmap object with added schema.
A roadmap object with updated schema.
A roadmap object with reset schema.
rm <- roadmap(
conf_data = acs_conf_nw,
start_data = acs_start_nw
)
acs_schema <- schema(
conf_data = acs_conf_nw,
start_data = acs_start_nw,
na_numeric_to_ind = TRUE
)
rm |>
add_schema(schema = acs_schema)
rm <- roadmap(
conf_data = acs_conf_nw,
start_data = acs_start_nw
)
rm |>
update_schema(na_numeric_to_ind = TRUE)
rm <- roadmap(
conf_data = acs_conf_nw,
start_data = acs_start_nw
)
rm <- rm |>
update_schema(na_numeric_to_ind = TRUE)
reset_schema(roadmap = rm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.