x3p_show_xml | R Documentation |
Identify xml fields by name and show content.
x3p_show_xml(x3p, element)
x3p |
x3p object |
element |
character or integer (vector). In case of character, name of xml field in the meta file. Note that element can contain regular expressions, e.g. |
list of exact field names and their contents
logo <- x3p_read(system.file("csafe-logo.x3p", package="x3ptools"))
x3p_show_xml(logo, "creator") # all fields containing the word "creator"
x3p_show_xml(logo, "axis")
x3p_show_xml(logo, "CZ.AxisType")
# show all fields:
x3p_show_xml(logo, "*")
# show first five fields
x3p_show_xml(logo, 1:5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.