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.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Using rpy2 2.2.0-dev (should be the same with 2.1.x)

from rpy2.robjects.vectors import DataFrame
dataf = DataFrame.from_csvfile("my/file.csv")

dataf_subset = dataf.rx(dataf.rx2("age").ro >= 18, True)

That one exact example is not in the documentation (and may be should be there), but it's constituting elements are:extracting elements and R operators on vectors

link|improve this answer
I see. Thanks for clarifying that. Appreciated. – forestfanjoe Dec 5 '10 at 21:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.