Displaying 20 results from an estimated 600 matches similar to: "Loading of namespace on load of .Rdata (was strange behaviourof load)"
2006 Jan 18
0
Loading of namespace on load of .Rdata (was strange behaviour of load)
Last week Giovanni Parrinello posted a message asking why various packages were loaded when he loaded an .Rdata file. Brian Ripley replied saying he thought it was because the saved workspace contained a reference to the namespace of ipred. (Correspondence copied below).
This begs the question: how did the reference to the namespace of ipred come to be in the .Rdata file? Brian did say it is
2006 Jan 18
2
Loading of namespace on load of .Rdata (was strange behaviour of load)
Last week Giovanni Parrinello posted a message asking why various packages were loaded when he loaded an .Rdata file. Brian Ripley replied saying he thought it was because the saved workspace contained a reference to the namespace of ipred. (Correspondence copied below).
This begs the question: how did the reference to the namespace of ipred come to be in the .Rdata file? Brian did say it is
2011 Feb 17
1
missing values in party::ctree
After ctree builds a tree, how would I determine the direction missing values follow by examining the BinaryTree-class object? For instance in the example below Bare.nuclei has 16 missing values and is used for the first split, but the missing values are not listed in either set of factors. (I have the same question for missing values among numeric [non-factor] values, but I assume the answer
2006 Mar 25
1
There were 25 warnings (use warnings() to see them)
I am trying to use bagging like this:
> bag.model <- bagging(as.factor(nextDay) ~ ., data = spi[1:1250,])
> pred = predict(bag.model, spi[1251:13500,-9])
There were 25 warnings (use warnings() to see them)
> t = table(pred, spi[1251:13500,9])
> t
pred 0 1
0 42 40
1 12 22
> classAgreement(t)
but I get the warning.
The warnings run like this:
>
2010 Jun 01
1
BreastCancer Dataset for Classification in kknn
Dear All,
I'm getting a error while trying to apply the BreastCancer dataset
(package=mlbench) to kknn (package=kknn) that I don't understand as I'm new
to R.
The codes are as follow:
rm = (list = ls())
library(mlbench)
data(BreastCancer)
library(kknn)
BCancer = na.omit(BreastCancer)
d = dim(BCancer)[1]
i1 = seq(1, d, 2)
i2 = seq(2, d, 2)
t1 = BCancer[i1, ]
t2 =
2010 Apr 30
0
ROC curve in randomForest
require(randomForest)
rf.pred<-predict(fit, valid, type="prob")
> rf.pred[1:20, ]
0 1
16 0.0000 1.0000
23 0.3158 0.6842
43 0.3030 0.6970
52 0.0886 0.9114
55 0.1216 0.8784
75 0.0920 0.9080
82 0.4332 0.5668
120 0.2302 0.7698
128 0.1336 0.8664
147 0.4272 0.5728
148 0.0490 0.9510
153 0.0556 0.9444
161 0.0760 0.9240
162 0.4564 0.5436
172 0.5148 0.4852
176 0.1730
2009 Apr 01
0
smv() in "e1071" and the BreastCancer data from "mlbench"
R-help,
I am trying to perform a basic anlaysis of the BreastCancer data from
"mlbench" using the svm() function in "e1071". I use the following code
library("e1071")
library("mlbench")
data(BreastCancer)
BC <- subset(BreastCancer, select=-Id)
pairs(BC)
model <- svm(Class ~ ., data=BC, cross=10)
## plot(model, BC, )
tobj <- tune.svm(Class ~ .,
2009 Mar 11
0
problem with rfImpute (package randomForest)
Hello everybody,
this is my first request about R so I am sorry if I send it to a bad mail or if I am not very clear.
So my problem is about the use of rfImpute from randomForest package. I am interested in imputations of missing values and I read that randomForest can make it. So i write the following code :
set.seed(100);
library(mlbench)
library(randomForest)
data(BreastCancer)
2003 Nov 06
2
created data doesn't remain when split...
I've been trying to figure out why the following is happening....
I've got some data I'll load in from a file...
rm(list=ls(all=TRUE))
trees <- read.table( "c:/cruisepak/data.txt", header=T)
trees$ct <- 1
And when I create some temp variable, then split the data to perform further
processing, the additional column doesn't maintain the data correctly....
mtrees
2005 Oct 06
1
how to use tune.knn() for dataset with missing values
Hi Everybody,
i again have the problem in using tune.knn(), its giving an error saying
missing values are not allowed.... again here is the script for
BreastCancer Data,
library(e1071)
library(mda)
trdata<-data.frame(train,row.names=NULL)
attach(trdata)
xtr <- subset(trdata, select = -Class)
ytr <- Class
bestpara <-tune.knn(xtr,ytr, k = 1:25, tunecontrol = tune.control(sampling
2005 Oct 06
0
how to handle missing values in the data?
Hello Everybody,
I am reffering David Meyer's Benchmarking Support Vector Machines ,
Report No.78 (Nov.2002), i am newly working with R but i am not sure how
it is handling missing values in the benchmark datasets, I would be very
thankful to you if you could let me know how to handle those missing
numerical & categorical variables in the data (e.g. BreastCancer).
because, i am
2009 Apr 25
1
Overlapping parameters "k" in different functions in "ipred"
Dear List,
I have a question regarding "ipred" package. Under 10-fold cv, for different knn ( = 1,3,...25), I am getting same misclassification errors:
#############################################
library(ipred)
data(iris)
cv.k = 10 ## 10-fold cross-validation
bwpredict.knn <- function(object, newdata) predict.ipredknn(object, newdata, type="class")
for (i in
2007 Aug 30
0
rpart's loss matrix in ipred
Dear R users,
I have been using the rpart procedure to predict the occurrence of
depression in a large data file. Since the prevalence is very low (5%),
I have been using classification trees with a loss matrix that penalized
false negatives more than false positives. I have become interesested in
bagging these (successful!) classification trees, and have been using
the ipred package for
2009 Sep 11
0
ipred bagging segfault on 64 bit linux build
I wanted to report this issue here so others may not find themselves alone
and as the author is apparently active on the list.
I havent done an exhaustive test by any means, cause I dont have time. But
here's a small example. Apparently the "ns" argument is the one that is
killing it. I've gotten several different segfault messages, the only other
one I remember said "out
2002 Apr 10
1
New Package: ipred - Improved predictors
The package ipred is uploaded to CRAN.
The main focus of the package is the calculation of improved predictors
in classification tasks. Misclassification error can be improved by
bootstrap aggregated classification trees and/or
the framework of indirect classification. Furthermore, a unified
interface for the estimation of misclassification error
completes the features of ipred.
We try to make
2002 Apr 10
1
New Package: ipred - Improved predictors
The package ipred is uploaded to CRAN.
The main focus of the package is the calculation of improved predictors
in classification tasks. Misclassification error can be improved by
bootstrap aggregated classification trees and/or
the framework of indirect classification. Furthermore, a unified
interface for the estimation of misclassification error
completes the features of ipred.
We try to make
2004 Sep 20
1
adding function to a Package
As a shortcut I have previously added my own functions to a Package (ipred)
under R-1.8.1, changing the NAMESPACE file to accomodate this then
reinstalling. This doesn't now seem possible in R-1.9.0 is this correct?-- I
am getting an error saying:
"files NAMESPACE, R/ipred have the wrong MD5 checksums"
after I try to reinstall (which I can understand). Is there a quick way
round
2012 May 17
1
ctree for suvival analysis problem
Hi All,
I'm using the party package to grow conditional inference trees for survival
analysis.
When I used party version party_0.9-9991 everything worked well, but when I
update to party_1.0-2 (due to using 64bit R), I get an error. For simplicity
I will show the error I get for the example in the party documentation:
### survival analysis
if (require("ipred")) {
2009 Nov 02
1
modifying predict.nnet() to function with errorest()
Greetings,
I am having trouble calculating artificial neural network
misclassification errors using errorest() from the ipred package.
I have had no problems estimating the values with randomForest()
or svm(), but can't seem to get it to work with nnet(). I believe
this is due to the output of the predict.nnet() function within
cv.factor(). Below is a quick example of the problem I'm
2008 Nov 26
1
Request for Assistance in R with NonMem
Hi
I am having some problems running a covariate analysis with my
colleage using R with the NonMem program we are using for a graduate
school project. R and NonMem run fine without adding in the
covariates, but the program is giving us a problem when the covariate
analysis is added. We think the problem is with the R code to run the
covariate data analysis. We have the control stream, R code