similar to: Wrapper Subset Selection

Displaying 20 results from an estimated 90000 matches similar to: "Wrapper Subset Selection"

2005 Mar 02
2
subset selection for logistic regression
R-packages leaps and subselect implement various methods of selecting best or good subsets of predictor variables for linear regression models, but they do not seem to be applicable to logistic regression models. Does anyone know of software for finding good subsets of predictor variables for linear regression models? Thanks. -Ben p.s., The leaps package references "Subset Selection
2012 Feb 13
1
Any package for best subset selection on random effects model?
Hi Pros, I know leaps() computes the best subset selection for linear model, and the bestglm() computes the best subset selection for generalized linear model. Is there any package for best subset selection on random effects model, or mixed effects model? Thank you so much. -- View this message in context:
2012 Feb 13
2
best subset selection on random effects model
Hi, I know leaps() computes the best subset selection for linear model, and the bestglm() computes the best subset selection for generalized linear model. Is there any package for best subset selection on random effects model, or mixed effects model? Thank you so much. Tao [[alternative HTML version deleted]]
2005 Oct 14
2
subset selection for glm
Hello: Are there any libraries that will do a subset selection for glm's? I looked through leaps, but seems like it is specifically for linear regressions. Thank you. -Dhiren
2016 May 26
2
Error en subset selection
Hola a todas, Quiero realizar un subset selection usando el paquete leaps, entre mis variables explicativas tengo rezagos de las mismas, por tanto tienen datos NA. sin embargo, al tratar de realizar cross validation me pide que los datos esten en formato data.frame con lo que me arroja un error al ejecutar el algoritmo. Mi pregunta es cómo puedo forzar en un data.frame en que tengo variables
2010 Oct 25
2
Question on passing the subset argument to an lm wrapper
Hello, How would you go about handling the following situation? This is on R 2.12.0 on Ubuntu 32-bit. I have a wrapper function to lm. I want to pass in a subset argument. First, I just thought I'd use "...". ## make example reproducible set.seed(123) df1 <- data.frame(age = rnorm(100, 50, 10), bmi = rnorm(100, 30, sd = 2)) ## create a wrapper using
2009 Feb 17
3
Subset Regression Package
Dear all , Is there any subset regression (subset selection regression) package in R other than "leaps"? Thanks and regards Alex [[alternative HTML version deleted]]
2008 Mar 14
1
Forward Selection with regsubsets
Hi, I would like to perform a forward selection procedure on a data set with 6 observations and 10 predictors. I tried to run it with regsubsets (I set nvmax=number of observations) but I keep getting these warning messages: Warning messages: 1: 5 linear dependencies found in: leaps.setup(x, y, wt = weights, nbest = nbest, nvmax = nvmax, 2: nvmax reduced to 5 in: leaps.setup(x, y, wt =
2007 Nov 09
2
wrapper for coxph with a subset argument
Dear R-help - Thanks to those who replied yesterday (Christos H. and Thomas L.) regarding my question on coxph and model formula, the answers worked perfectly. My new question involves the following. I want to run several coxph models (package survival) with the same dataset, but different subsets of that dataset. I have found a way to do this, described below in functions subwrap1 and
2003 May 08
1
All possible subset selection?
Hello, I am wondering if there is a function in R to do all possible subset selection, e.g. using AIC/BIC. It seems to me the function step can not do all possible selection. I am also want to know why the following functions give me different results. It seems I missed some points here. lm <- lm(y ~., data=somedata) AIC(lm) extractAIC(lm) Many thanks, Zheng Huang
2005 Aug 11
3
sub set selection
hi all is there a package that undertakes subset selection but BASED ON AIC or any other information criteria. i've seen the "subselect" and the "leaps" package but i have not played around with them yet. thanx
2006 Jan 03
1
All possible subsets model selection using AICc
Hello List, I was wondering if a package or piece of code exists that will allow all possible subsets regression model selection within program R. I have already looked at step(AIC) which does not test differing combinations of variables within a model as far as I can tell. In addition I tried to use the leaps command, but that does not use the criterion I am looking for. Any help or advice
2005 May 11
2
Subset with selection variable from function argument. Is there another way?
Dear list, I'm making my current code more generic and would like some advise. The basic problem is subset and the name of the column to be compared for selection. What I've come up with is > data(mammals) > set <- bottompremolars" > subset(mammals, eval(parse(file="",text=set)) > 2) This seems a bit odd. Is there a nicer way? /Fredrik
2010 Feb 12
1
all possible subsets, with AIC
Hello, I have a question about doing ALL possible subsets regression with a general linear model. My goal is to produce cumulative Akaike weights for each of 7 predictor variables-to obtain this I need R to: 1. Show me ALL possible subsets, not just the best possible subsets 2. Give me an AIC value for each model (instead of a BIC value). I have tried to do this in library(RcmdrPlugin.HH),
2008 Jan 16
3
Pause on graphics
My R script needs to pause or wait for a key or mouse on each graph. I used the following statement after each plot par(ask=TRUE) This works on Windows but not on MacOS. Is there any way to pause on graph in MacOS? Thanks, Vu [[alternative HTML version deleted]]
2007 Oct 02
0
Variable selection in R
Disclaimer : Short of having local statistical expertise at hand, I'm using this list because I use R for variable selection in the context of linear multiple regression but the questions I have relate more to basic statistics than to R per se. Please redirect me to another appropriate list if such a list exists. I have the very common problem of identifying which (subset of) variables are
2004 Mar 11
0
Subselect package - Version 0.7.1
A new version (0.7.1) of package 'subselect' has been uploaded to CRAN. Package 'subselect' provides functions which assess the quality of variable subsets as surrogates for a full data set, in an exploratory data analysis, and search for subsets which are optimal under various criteria. As of version 0.7 a new function 'leaps' has been added. 'Leaps' performs a
2004 Mar 11
0
Subselect package - Version 0.7.1
A new version (0.7.1) of package 'subselect' has been uploaded to CRAN. Package 'subselect' provides functions which assess the quality of variable subsets as surrogates for a full data set, in an exploratory data analysis, and search for subsets which are optimal under various criteria. As of version 0.7 a new function 'leaps' has been added. 'Leaps' performs a
2023 Jun 09
0
leaps for plm - looking for variable selection software for panel data
Dear all, I have a small query. Just like we have package leaps which can do variable selection for a linear model, do we have any technique/software for variable selection for panel data? Here are the links to the mentioned packages: https://cran.r-project.org/web/packages/leaps/leaps.pdf https://cran.r-project.org/web/packages/plm/plm.pdf Many thanks, Ashim
2007 Dec 20
1
custom subset method / handling columns selection as logic in '...' parameter
Dear R-helpers & bioconductor Sorry for cross-posting, this concerns R-programming stuff applied on Bioconductor context. Also sorry for this long message, I try to be complete in my request. I am trying to write a subset method for a specific class (ExpressionSet from Bioconductor) allowing selection more flexible than "[" method . The schema I am thinking for is the following: