I have an array of 19000 numbers from 0 to 1 that represent percentages and I would like to have a database of yes and no where yes is every number above 0.3 and no every number below 0.3.
Something that should look like this where original is my initial file
original = [0.2499320, 0.456484, 0.324824 ... 0.231, 0.3213]
modified = [no, yes, yes... no, yes]
Is there a way to do this? Thank you in advance