Since a while now I´ve been using ff package in order to work with big data. The R object I´ve worked with has about 130.000.000 rows and 14 columns. Two of those columns, Temperature and Precipitation have missing values “NA” so I need to delete those rows in order to move forward with my work. I´ve been trying to do it like I would in a normal R object:
data<-data[!is.na(data$temp),]
But I keep getting an error:
Error: vmode(index) == "integer" is not TRUE
Does anyone have been able to delete rows in a ffdf object? I´d appreciate any help.