How can I use the R randomForest package with observation weights? I know that there is no such option in this package. I have 2 questions:
Are there any solutions to this problem using
randomForestpackage? At this moment I'm drawing samples from data with weights as the probability so I can at least simulate it:m = dim(data)[1] sample(data, m, replace=TRUE, prob=weights)It works are there other (better) solutions?
Are there any alternatives to the
randomForestpackage. I found thepartypackage (cforest) but it's terrible in terms of memory management (or I cannot use it the way I userandomForestpackage). I have around 200k observations and 30-40 variables.
EDIT:
Sorry for not clarifying details. I'm using the randomForest package for regression problem (not classification). It is a time series and every observation has its weight. Later on this weight is used to determine the model performance across test observations. The y variable is continuous.