Description Usage Arguments Format samplePassData sampleFailData targetDWCField checkCategory References Examples
View source: R/dc_validation_minelevation_greaterthan_maxelevation.R
This data check answers: "Is minimumElevationInMeters less or equal to maximumElevationInMeters?" question.
Data check will pass if Given minimumElevationInMeters is not greater than maximumElevationInMeters. and will fail if Given minimumElevationInMeters is greater than maximumElevationInMeters..
Dimension of this data check is and it's flagging type is: FLAG
Example of entries that will pass: minimumElevationInMeters="100",maximumElevationInMeters="200"
, such data check would return TRUE
.
Example of entries that will fail: minimumElevationInMeters="100",maximumElevationInMeters="20"
, such data check would return FALSE
.
1 2 3 4 | dc_validation_minelevation_greaterthan_maxelevation(
TARGET = NULL,
TARGET2 = NULL
)
|
TARGET |
a vector of minimumElevationInMeters. |
TARGET2 |
a vector of maximumElevationInMeters. |
An object of class function to perform a specific data check.
Given minimumElevationInMeters is not greater than maximumElevationInMeters.
Given minimumElevationInMeters is greater than maximumElevationInMeters.
minimumElevationInMeters
location
None
1 | perform_dc(data_bats, 'validation_minelevation_greaterthan_maxelevation')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.