You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Discussed with @jagoldstein about removing the following warning from qa_package. Integers are used to represent nominal values far more often than characters.
if (matchingAtt$measurementScale != "ratio" && matchingAtt$measurementScale != "interval" && matchingAtt$measurementScale != "dateTime") {
cat(crayon::yellow(paste0("\nMismatch in attribute type for the attribute '", matchingAtt$attributeName,
"'. Type of data is ", attClass, " which should probably have interval or ratio measurementScale in EML, not ",
matchingAtt$measurementScale, ".")))
The two checks following this one (lines 480-497) could also be removed
The text was updated successfully, but these errors were encountered:
Discussed with @jagoldstein about removing the following warning from
qa_package
. Integers are used to representnominal
values far more often than characters.The two checks following this one (lines 480-497) could also be removed
The text was updated successfully, but these errors were encountered: