I have an attribute table with a column that has many observations below a chemical detection limit - 0.005. Since these are not valid measurements, I would like to replace all values in the field under 0.005 with the value 0.0025. So: if an observation < 0.005 then replace with it 0.0025.
On a related note, for this same field there are some missing values which I would like to drop entirely. So something like: if NA, then omit.
I am not familiar with python coding. I have tried calculate field and then arcade reclassify function as follows (does not work - I think it is the wrong function for conditional replacement).
// Reclassify values to another value
function Reclass($feature.MEAN_RESULT) {
if ($feature.MEAN_RESULT < 0.005)
return 0.0025)
}