Displaying 20 results from an estimated 32 matches for "mboost".
Did you mean:
boost
2008 Dec 08
2
Ubuntu 8.10: Package installation fails (lf77blas problem)
I just upgraded to Ubuntu 8.10 (i386) from 8.04. After the upgrade, I ran
update.packages(.libPaths()[1]) in R to get the packages installed from source
up to date too. Unfortunately, two packages could not be updated: mclust and
mboost. In both cases, the error I got mentioned lf77blas. Here's the output for
mboost:
* Installing *source* package 'mboost' ...
** libs
gcc -std=gnu99 -I/usr/share/R/include -fpic -g -O2 -c mboost.c -o mboost.o
gcc -std=gnu99 -shared -o mboost.so mboost.o -lf77blas -latlas -lgfortr...
2012 Jul 23
1
mboost vs gbm
I'm attempting to fit boosted regression trees to a censored response using
IPCW weighting. I've implemented this through two libraries, mboost and
gbm, which I believe should yield models that would perform comparably.
This, however, is not the case - mboost performs much better. This seems
odd. This issue is meaningful since the output of this regression needs to
be implemented in a production system, and mboost doesn't even expos...
2010 Feb 02
0
Major update: mboost 2.0-0 released
Dear useRs,
we are happy to announce the release of mboost 2.0-0 on CRAN:
http://cran.r-project.org/package=mboost
This version contains major updates and changes to the implementation of
the main algorithm. Some slight changes to the user-interface where
necessary. Please consult the manual and the list of CHANGES below.
The package 'mboost'...
2010 Feb 02
0
Major update: mboost 2.0-0 released
Dear useRs,
we are happy to announce the release of mboost 2.0-0 on CRAN:
http://cran.r-project.org/package=mboost
This version contains major updates and changes to the implementation of
the main algorithm. Some slight changes to the user-interface where
necessary. Please consult the manual and the list of CHANGES below.
The package 'mboost'...
2010 Feb 07
1
mboost: Interpreting coefficients from glmboost if center=TRUE
I'm running R 2.10.1 with mboost 2.0 in order to build predictive
models . I am performing prediction on a binomial outcome, using a
linear function (glmboost). However, I am running into some confusion
regarding centering. (I am not aware of an mboost-specific mailing
list, so if the main R list is not the right place for this to...
2010 Oct 20
1
problem with predict(mboost,...)
Hi,
I use a mboost model to predict my dependent variable on new data. I get the following warning message:
In bs(mf[[i]], knots = args$knots[[i]]$knots, degree = args$degree, :
some 'x' values beyond boundary knots may cause ill-conditioned bases
The new predicted values are partly negative although the...
2010 Mar 19
0
mboost: Interpreting coefficients from glmboost if center=TRUE
Sorry for the tardy reply but I just found your posting incidentally
today. To make long things short:
You are right about the centering. We forgot to correct the intercept if
center = TRUE. We lately found the problem ourself and fixed it in the
current version (mboost 2.0-3). However the problem only occurred if you
extracted the coefficients. As the intercept is rarely interpretable we
didn't have a closer look and thus it took some time until we found this
bug. The model predictions however always took care of the centering and
thus were not affected (...
2012 Nov 04
1
blackboost (mboost package) function leads to non-reclaimable memory usage
Dear all,
I am puzzled by R's memory usage when calling the blackboost function from
package mboost to estimate a Gradient boosting model on a simulated dataset
with 20 correlated variables and 100,000 obs. The blackboost object created
by the function is only 15.3Mb, but R's memory usage increases by about
3.9Gb during the estimation of the model and the memory is not released even
after cal...
2010 Jul 28
2
Out-of-sample predictions with boosting model
Hi UseRs -
I am new to R, and could use some help making out-of-sample predictions
using a boosting model (the mboost command). The issue is complicated by the
fact that I have panel data (time by country), and am estimating the model
separately for each country. FYI, this is monthly data and I have 1986m1 -
2009m12 for 9 countries.
To give you a flavor of what I am doing, here is a simple example to show
how I m...
2010 Feb 03
0
mboost: how to implement cost-sensitive boosting family
mboost contains a blackboost method to build tree-based boosting models. I tried to write my own "cost-sensitive" ada family. But obviously my understanding to implement ngradient, loss, and offset functions is not right. I would greatly appreciate if anyone can help me out, or show me how to wr...
2007 Jun 27
1
"no applicable method"
I'm getting started in R, and I'm trying to use one of the gradient
boosting packages, mboost. I'm already installed the package with
install.packages("mboost") and loaded it with library(mboost).
My problem is that when I attempt to call glmboost, I get a message
that " Error in glmboost() : no applicable method for "glmboost" ".
Does anybody have an...
2014 Apr 15
0
Problem: Importing two packages which export a function with the same name
Hi all,
I am currently updating our package gamboostLSS which depends on package
mboost *and* on package gamlss.dist. From mboost we use a lot of the
fitting infrastructure and from gamlss.dist we obtain the relevant loss
functions (aka families) used for fitting and corresponding quantile
functions. Furthermore, we use the Family() function from...
2008 Apr 26
2
Calling a stored model within the predict() function
Hi all,
First of all, I'm a novice R user (less that a week), so perhaps my code
isn't very efficient.
Using the MBoost package I created a model using the following command and
saved it to a file for later use:
model <- gamboost(fpfm,data=SampleClusterData,baselearner="bbs") # Creating
a model
save(model,file="model.RData") # Saving a model
After this, during a new R session, I want to dep...
2008 May 05
0
mboost partial contribution plots
Just having read the nice review article on boosting in the latest
"Statistical Science", I would love to reproduce some of the plots inside
that article, but it is not clear to me how to create the partial
contribution plots for the Poisson regression.
Does anyone have example code for this ?
(The vignette does not offer it, I think)
Thanks !
Markus
[[alternative HTML version
2009 Sep 26
1
mboost_1.1-3 blackboost_fit (PR#13972)
Full_Name: Ivan the Terrible
Version: 2.9.2
OS: Windows XP SP3
Submission from: (NULL) (89.110.13.151)
When using the method blackboost_fit of the package mboost appear following
error :
Error in party:::get_variables(obj at responses) :
trying to get slot "responses" from an object (class "boost_data") that is not
an S4 object
Simple test case that produce bug:
dt=expand.grid(y=c(2,3,4), x1=c(1,2), x2=c(1,2))
library(mboost)
bd=boo...
2008 Oct 15
0
gamboost partial fit prediction
Dear useRs,
I am struggling to use gamboost function form the 'mboost' package. More
precisely, I am trying to extract the *partial fit* for each of the
covariates estimated in a model and I usually end up with this annoying: "Error
in newdata[[xname]] : subscript out of bounds ". I hope that the lack of
details in my query...
2013 Jan 04
1
Predicting New Data -
I am having trouble predicting new data with a model created from package
mboost:
> mb1<-glmboost(as.formula(formula1),data=data_train,control=boost_control(mstop=400,nu=.1))
> f.predict<-predict(mb1,newdata=data_train)
Error in scale.default(X, center = cm, scale = FALSE) :
length of 'center' must equal the number of columns of 'x'
Ultimately...
2014 Dec 08
2
CRAN packages mis-using \donttest : falsy
...ost
> of those above, plus
>
> BNSP DCGL EIAdata ExtDist FeedbackTS FlexParamCurve IsoGene MGLM
> MsatAllele PRISMA RSurvey RandomFields ReporteRs Rmpi Rssa TR8 VarEff
> aoristic breakage dplyr effects ftsa geocodeHERE ggHorizon ggmap
> ggtern gvcm.cat hyperSpec knitcitation knitr mboost mets mfblock
> mobForest mra nontarget npRmpi nullabor openNLP parfm plsRbeta powerr
> pxweb rcrossref rgbif rsnps season spMC spgwr spocc taxize timereg
> toaster
>
> and warnings in DSpat
>
> In almost all cases there is something obviously wrong with the
> failing example...
2008 Jun 17
1
read.spss {foreign} doesn't work over network?
...quot;maps" "C:/PROGRA~1/R/R-27~1.0/library" "2.0-40"
MASS "MASS" "C:/PROGRA~1/R/R-27~1.0/library" "7.2-42"
Matrix "Matrix" "C:/PROGRA~1/R/R-27~1.0/library"
"0.999375-9"
mboost "mboost" "C:/PROGRA~1/R/R-27~1.0/library" "1.0-1"
mclust "mclust" "C:/PROGRA~1/R/R-27~1.0/library" "3.1-5"
methods "methods" "C:/PROGRA~1/R/R-27~1.0/library" "2.7.0"...
2010 Oct 24
1
140 packages in R Commander!!
...9;xts' 'foreach' 'TSA'
'RSQLite' 'tkrplot' 'sgeostat' 'mapproj' 'tcltk2' 'R2wd' 'png' 'tree' 'VIM'
'mitools' 'Zelig' 'HSAUR' 'mvtnorm' 'lme4' 'robustbase' 'mboost' 'coin'
'xtable' 'sandwich' 'coxme' 'zoo' 'strucchange' 'dynlm' 'biglm' 'chron'
'acepack' 'TeachingDemos' 'Design' 'mice' 'subselect' 'kernlab' 'vcd' 'rgl'
...