I hope this isn't a daft question, but I am basically trying to use rpy to work with a dataset to do some univariate analysis and a few multiple regression equations etc. But I'm falling at one of the first hurdles: I don't understand how to select specific rows in a data frame according to some kind of condition.
My data frame is survey data that I have got from a .csv file. One of the columns is age and I am looking to remove all respondents under 18 years of age. I'll then need to isolate age groups (18-24, 25-35, etc) into their own dataframes that I can do frequency distributions for.
To be honest, I would have expected this to be a common problem, with lots of answers out there, but I haven't been able to find them. (Apologies if I missed them!)
The R code is simple enough: x.sub <- subset(x.df, y > 2) - but I can't figure out how to use the r() function to get my dataframe variable from python into an R statement. It feels as though there ought to be a .subset() function in the rpy2 DataFrame class. But if it exists, I can't find it.
Any help would be much appreciated.