Displaying 20 results from an estimated 200000 matches similar to: "proximity on prediction in cforest"
2012 Oct 11
0
Error with cForest
All --
I have been trying to work with the 'Party' package using R v2.15.1 and have cobbled together a (somewhat) functioning code from examples on the web. I need to run a series of unbiased, conditional, cForest tests on several subsets of data which I have made into a loop. The results ideally will be saved to an output file in matrix form. The two questions regarding the script in
2013 Feb 14
1
party::cforest - predict?
What is the function call interface for predict in the package party for
cforest? I am looking at the documentation (the vignette) and ?cforest and
from the examples I see that one can call the function predict on a cforest
classifier. The method predict seems to be a method of the class
RandomForest objects of which are returned by cforest.
---------------------------
> cf.model =
2010 Oct 21
1
RandomForest Proximity Matrix
Greetings R Users!
I am posting to inquire about the proximity matrix in the randomForest
R-package. I am having difficulty pushing very large data through the
algorithm and it appears to hang on the building of the prox matrix. I have
read on Dr. Breiman's website that in the original code a choice can be made
between using an N x N matrix OR to increase the ability to compute large
2011 Feb 22
0
cforest() and missing values (party package)
Dear mailing list,
I am using the cforest() method from the party package to train a
randomForest with ten input parameters which sometimes contain "NA"s.
The predicted variable is a binary decision. Building the tree works
fine without warnings or error messages, but when using the predict()
statement for validation, I run in an error:
forest <- cforest(V31 ~ V1+V2+V3,
2011 Oct 06
0
Fwd: Re: Party extract BinaryTree from cforest?
> ---------- Forwarded message ----------
> Date: Wed, 5 Oct 2011 21:09:41 +0000
> From: Chris <christopher.a.hane at gmail.com>
> To: r-help at stat.math.ethz.ch
> Subject: Re: [R] Party extract BinaryTree from cforest?
>
> I found an internal workaround to this to support printing and plot type
> simple,
>
> tt<-party:::prettytree(cf at ensemble[[1]],
2010 Mar 01
1
Random Forest prediction questions
Hi,
I need help with the randomForest prediction. i run the folowing code:
> iris.rf <- randomForest(Species ~ ., data=iris,
> importance=TRUE,keep.forest=TRUE, proximity=TRUE)
> pr<-predict(iris.rf,iris,predict.all=T)
> iris.rf$votes[53,]
setosa versicolor virginica
0.0000000 0.8074866 0.1925134
> table(pr$individual[53,])/500
versicolor virginica
0.928
2010 Jun 10
2
Cforest and Random Forest memory use
Hi all,
I'm having great trouble working with the Cforest (from the party package)
and Random forest functions. Large data set seem to create very large model
objects which means I cannot work with the number of observations I need to,
despite running on a large 8GB 64-bit box. I would like the object to only
hold the trees themselves as I intend to export them out of R. Is there
anyway,
2010 Jul 27
1
Cforest mincriterion
Hi,
Could anyone help me understand how the mincriterion threshold works in
ctree and cforest of the party package? I've seen examples which state that
to satisfy the p < 0.05 condition before splitting I should use mincriterion
= 0.95 while the documentation suggests I should use mincriterion =
qnorm(0.95) which would obviously feed the function a different value.
Thanks in advance,
2012 Apr 29
1
CForest Error Logical Subscript Too Long
Hi,
This is my code (my data is attached):
library(languageR)
library(rms)
library(party)
OLDDATA <- read.csv("/Users/Abigail/Documents/OldData250412.csv")
OLDDATA$YD <- factor(OLDDATA$YD, label=c("Yes", "No"))?
OLDDATA$ND <- factor(OLDDATA$ND, label=c("Yes", "No"))?
attach(OLDDATA)
defaults <- cbind(YD, ND)
set.seed(47)
data.controls
2010 Mar 16
0
Ensembles in cforest
Dear List,
I'm trying to find a way to extract the individual conditional inference
trees from cforest ( a modelling function in the party package) in a
manner analogous to
getTree in randomForest and I'm struggling. I can see that the
information is held within the ensemble list, but haven't been able to
work out how this sequence
of nested lists is structured or if any of the items
2011 Jul 20
0
cforest - keep.forest = false option? (fwd)
> ---------- Forwarded message ----------
> Date: Mon, 18 Jul 2011 10:17:00 -0700 (PDT)
> From: KHOFF <kuphoff at gmail.com>
> To: r-help at r-project.org
> Subject: [R] cforest - keep.forest = false option?
>
> Hi,
>
> I'm very new to R. I am most interested in the variable importance
> measures
> that result from randomForest, but many of my predictors
2012 Oct 11
0
party for prediction
Hi there
I'm experiencing some problems using the party package (specifically
mob) for prediction. I have a real scalar y I want to predict from a
real valued vector x and an integral vector z. mob seemed the ideal
choice from the documentation.
The first problem I had was at some nodes in a partitioning tree, the
components of x may be extremely highly correlated or effectively
constant
2011 Oct 14
1
Party package: varimp(..., conditional=TRUE) error: term 1 would require 9e+12 columns
I would like to build a forest of regression trees to see how well some
covariates predict a response variable and to examine the importance of the
covariates. I have a small number of covariates (8) and large number of
records (27368). The response and all of the covariates are continuous
variables.
A cursory examination of the covariates does not suggest they are correlated
in a simple fashion
2011 Sep 04
5
Ranking and term proximity
Hi,
I was reading an article recently about how google ranks results
(among many other things of course) based on the proximity of the
search terms in the source documents. In addition, the position of
the search terms in the search query string itself is also taken into
consideration when determining how important each term is.
Does Xapian do something similar - at least for the first part?
2007 Feb 15
3
Proximity searching in rdig ferret
Lucene has a syntax "foo bar"~10 for finding foo within 10 words of bar.
Does ferret support this feature? (the ~ is used for fuzzy queries) Does
rdig?
This could be a deal breaker for me ''cos I really need proximity
searches
--
Posted via http://www.ruby-forum.com/.
2007 Sep 28
1
Proximity Detection: Motorola Q + Bluetooth + Asterisk
Hi,
Can anyone tell me if the Motorola Q has its Bluetooth always on like
the IPhone? I want to use the Motorola Q in a Proximity Detection setup
like that described on nerdvittles.com. I know the Treo 650 does not
work well since the display must be on for the bluetooth to be on and
this eats power.
Thanks
Chuck Bunn
2011 Oct 17
0
Party package: varimp(..., conditional=TRUE) error: term 1 would require 9e+12 columns (fwd)
>
> I would like to build a forest of regression trees to see how well some
> covariates predict a response variable and to examine the importance of
> the
> covariates. I have a small number of covariates (8) and large number of
> records (27368). The response and all of the covariates are continuous
> variables.
>
> A cursory examination of the covariates does not
2012 Oct 12
2
party for prediction [REPOST]
Apologies for re-posting, my original message seems to have been
overlooked by the moderators.
---------- Forwarded message ----------
From: Ed <icelus2k5 at gmail.com>
Date: 11 October 2012 19:03
Subject: party for prediction
To: R-help at r-project.org
Hi there
I'm experiencing some problems using the party package (specifically
mob) for prediction. I have a real scalar y I want to
2012 Feb 01
1
randomForest: proximity for new objects using an existing rf
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt.
Name: nicht verf?gbar
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120201/cc22025d/attachment.pl>
2012 Jul 10
1
outer() or some other function for regression prediction with 2 IVs
Hi there, I'm trying to prep some data for a persp() surface plot
representing the predictions from a regression with two inddependent
variables. The regression model "m3" has an intercept, 2 linear terms,
and 2 squared terms. The coefficients are given by coef(m3).
My approach to generating the predictions for a range of each of my IVs,
"s" and "d" was