has_unique_ids {beastier} | R Documentation |
Determine if the XML text has unique parameter IDs
Description
Determine if the XML text has unique parameter IDs
Usage
has_unique_ids(text)
Arguments
text |
the XML as text |
Value
TRUE if all parameter IDs are unique, FALSE otherwise
Author(s)
Richèl J.C. Bilderbeek
See Also
to obtain the duplicate parameter IDs, use
get_duplicate_param_ids
Examples
check_empty_beaustier_folders()
line_1 <- "<parameter id=\"RealParameter.1\" ...</parameter>"
line_2 <- "<parameter id=\"RealParameter.2\" ...</parameter>"
# Unique IDs
has_unique_ids(c(line_1, line_2))
# No unique ID
has_unique_ids(c(line_1, line_1))
check_empty_beaustier_folders()
[Package beastier version 2.5.1 Index]