3
votes
0answers
35 views

Which Regression methods are suitable for binary valued features and continuous output?

I want to build a machine learning model to regression on continuous output given binary valued features(0,1). the dimension of my problem is around 200. which of the flowing methods seems suitable ...
2
votes
2answers
75 views

Random Forest interpretation in scikit-learn

I am using sklearn.ensemble.RandomForestRegressor to fit a random forest regressor on a dataset. Now, that I have the results, is it possible to interpret this in some format where I can then ...
0
votes
1answer
105 views

regression with random forest on imbalanced data

I'm using r package of random forest to predict the distances between pairs of proteins based on their amino acid sequence, the main interest is the proteins that are close (has smaller distance). my ...
0
votes
0answers
90 views

predict.randomForest argument nodes=TRUE

When I do predict on newdata for randomForest (R implementation) and set nodes=TRUE predict(rf, newdata = testset, nodes = TRUE) what is returned? It says it returns an n by ntree matrix, each ...
0
votes
1answer
100 views

Extracting the terminal nodes of each tree associated with a new observation

I would like to extract the terminal nodes of the random forest R implementation. As I have understood random forest, you have a sequence of orthogonal trees. When you predict a new observation (In ...
1
vote
2answers
415 views

setting values for ntree and mtry for random forest regression model

I'm using R package of random forest to do regression on some biological data and my training data size is 38772 X 201 and I just wonder what would be a good values for the number of trees "ntree" and ...
1
vote
1answer
339 views

Regression Tree Forest in Weka

I'm using Weka and would like to perform regression with random forests. Specifically, I have a dataset: Feature1,Feature2,...,FeatureN,Class 1.0,X,...,1.4,Good 1.2,Y,...,1.5,Good 1.2,F,...,1.6,Bad ...
1
vote
0answers
149 views

random forest regression for multiple outputs (or tasks)

i have a multi-output regression problem with d_x input features and d_y outputs. the outputs have a complex, non-linear correlation structure. i'd like to use random forests to do the regression. ...
5
votes
1answer
742 views

RandomForest in R linear regression tails mtry

I am using the randomForest package in R (R version 2.13.1, randomForest version 4.6-2) for regression and noticed a significant bias in my results: the prediction error is dependent on the value of ...
3
votes
0answers
234 views

NA in randomForest [closed]

I have a question regarding NA in randomForest (in R). I have a dataset which include both numerical and non-numerical variables, and the data includes some NA. Do anyone have some tips how to deal ...
5
votes
1answer
1k views

RandomForest for Regression in R

I'm experimenting with R and the randomForest Package, I have some experience with SVM and Neural Nets. My first test is to try and regress: sin(x)+gaussian noise. With Neural Nets and svm I obtain a ...