How to replace/set/change value in array/dataframe if value is less/greater than?

Yes, if you want to change all of the columns, then use

QWER .= ifelse.(QWER .> 0.5, 0.0, QWER)
4 Likes