Description Usage Arguments Details
Comparing two XML files turns out to be more easily done in python, so this function runs the python comparison code. The standard mode checks the return code and returns TRUE if the files are equivalent, or FALSE if they are not. If the files are not equivalent, the differences found will *not* be written to the console; you have to use raw mode if you want to get that information.
1 | cmp_xml_files(fleft, fright, raw = FALSE)
|
fleft |
The first file to compare |
fright |
The second file to compare |
raw |
Flag: if true run in raw mode |
The 'raw' mode returns the stdout generated by the comparison code as a string. If the files are equivalent this return value will be empty (i.e., a zero-length character vector, not an empty string). If not, then it will contain the diagnostic output. In either case the string returned will have a 'status' attribute giving the return code.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.