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

Popular posts from this blog

Python Kivy ListView: How to delete selected ListItemButton? -

ruby - How do I merge two hashes into a hash of arrays? -