Correctly subset R variable with greater than condition -
i want plot scatterplot values of dataframe column greater number 28.
this works fine return results:
abovezero <- clicks > 28
but scatterplot inexplicably renders values integers of 1 or 0. how convert variable in order plot actual values?
abovezero <- clicks[clicks>28]
Comments
Post a Comment