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? -

asp.net mvc 4 - A specified Include path is not valid. The EntityType '' does not declare a navigation property with the name '' -