[R] Memory management

2011-06-01 Thread Michael Conklin
Windows XP Any suggestions? W. Michael Conklin Chief Methodologist Google Voice: (612) 56STATS MarketTools, Inc. | www.markettools.comhttp://www.markettools.com 6465 Wayzata Blvd | Suite 170 | St. Louis Park, MN 55426. PHONE: 952.417.4719 | CELL: 612.201.8978 This email and attachment(s) may

Re: [R] Anyone successfully install Rgraphviz on windows with R 2.13?

2011-05-20 Thread Michael Conklin
Thanks to everyone who responded. The ReadMe file did the trick. It is too bad that it is so well hidden :) W. Michael Conklin Chief Methodologist Google Voice: (612) 56STATS MarketTools, Inc. | www.markettools.com 6465 Wayzata Blvd | Suite 170 |  St. Louis Park, MN 55426.  PHONE: 952.417.4719

[R] Anyone successfully install Rgraphviz on windows with R 2.13?

2011-05-19 Thread Michael Conklin
to find the needed dll files. So, even though I have added the appropriate directories to the system path R cannot seem to find them. Any tips would be appreciated. W. Michael Conklin Chief Methodologist Google Voice: (612) 56STATS MarketTools, Inc. | www.markettools.comhttp://www.markettools.com

[R] Windows editor suggestions - autosave

2010-12-29 Thread Michael Conklin
like a system that does not require me to remember to hit the save button on my script every 10 minutes so that I can avoid redoing everything. W. Michael Conklin Chief Methodologist Google Voice: (612) 56STATS MarketTools, Inc. | www.markettools.com 6465 Wayzata Blvd | Suite 170 |  St. Louis Park

Re: [R] Analogue to SPSS regression commands ENTER and REMOVE in R?

2010-03-04 Thread Michael Conklin
I bet you stirred the pot here because you arre asking about stepwise procedures. Look at step, or stepAIC in the MASS library. \Mike On Thu, 4 Mar 2010 07:47:34 -0800 Dimitri Liakhovitski ld7...@gmail.com wrote: I am not sure if this question has been asked before - but is there a

[R] Scraping a web page

2009-12-03 Thread Michael Conklin
appreciated - I will not know the structure of the URLs I would submit in advance. Any suggestions on where to look would be greatly appreciated. Mike W. Michael Conklin Chief Methodologist MarketTools, Inc. | www.markettools.comhttp://www.markettools.com 6465 Wayzata Blvd | Suite 170 | St. Louis

Re: [R] Mixed effect multinomial regression

2009-10-06 Thread Michael Conklin
The bayesm package implements such models. Hth, Mike On Tue, 6 Oct 2009 12:41:18 -0700 James Martin just.strut...@gmail.com wrote: Hello list, I was trying to investigate the possible use of a mixed effect multinomial logit model in R. Does anyone have suggestions on where to find

Re: [R] Problem with predict.coxph

2009-08-19 Thread Michael Conklin
on the data are only available in 2.8 or greater - meaning I am currently looking at trying to run two different versions of R to get the project done. TIA, Michael Conklin -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Michael Conklin

[R] Problem with predict.coxph

2009-08-18 Thread Michael Conklin
: 'newdata' had 25 rows but variable(s) found have 43350 rows Does anyone have an idea what is going on? Best regards, Michael Conklin W. Michael Conklin Chief Methodologist MarketTools, Inc. | www.markettools.comhttp://www.markettools.com 6465 Wayzata Blvd | Suite 170 | St. Louis Park, MN 55426

[R] Problem with Random Forest predict

2009-04-28 Thread Michael Conklin
.1252;LC_MONETARY=English_United States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] randomForest_4.5-30 Any ideas would be greatly appreciated. W. Michael Conklin

Re: [R] performing function on data frame

2009-04-16 Thread Michael Conklin
newDF-as.data.frame(scale(oldDF)) see ?scale Hope that helps. Michael Conklin -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Karin Lagesen Sent: Thursday, April 16, 2009 5:29 AM To: r-help@r-project.org Subject: Re: [R

Re: [R] Convert bits to numbers in base 10

2009-04-09 Thread Michael Conklin
the big vs little endian issue you can just remove the rev from Marc's code below. Michael Conklin -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Marc Schwartz Sent: Thursday, April 09, 2009 4:51 PM To: Jorge Ivan Velez Cc: R-help

Re: [R] Winsorizing Multiple Variables

2009-01-16 Thread Michael Conklin
Don't sort y. Calculate xbot and xtop using xtemp-quantile(y,c(tr,1-tr),na.rm=na.rm) xbot-xtemp[1] xtop-xtemp[2] -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Karl Healey Sent: Friday, January 16, 2009 2:51 PM To:

Re: [R] running R-code outside of R

2008-06-25 Thread Michael Conklin
Spencer Graves wrote: If you want to hide the fact that you are using R -- especially if you charge people for your software that uses R clandestinely -- that's a violation of the license (GPL). I doubt if anyone associated with R would bother with a lawsuit, but a competitor who offers

Re: [R] LDA on pre-assigned training and testing data sets

2008-06-25 Thread Michael Conklin
I think this line mafdiscpred - predict(mafdisc, data = test) needs to be mafdiscpred - predict(mafdisc, newdata = test) Michael Conklin Chief Methodologist - Advanced Analytics MarketTools, Inc. 6465 Wayzata Blvd. Suite 170 Minneapolis, MN 55426 Tel: 952.417.4719 | Mobile

Re: [R] request: a class having max frequency

2008-06-06 Thread Michael Conklin
The 0 is the name of the item and the 1 is the index in f of the maximum class. (since f is a table, and the first element of the table is the maximum, which.max returns a 1) So, if you just want to know which class is maximum you can say names(which.max(f)) Michael Conklin Chief

Re: [R] Percentages for categorical data by group

2008-05-23 Thread Michael Conklin
tapply(example.data$responseVar,example.data$groupVar,function(x){prop.t able(table(x))}) Michael Conklin Chief Methodologist - Advanced Analytics MarketTools, Inc. 6465 Wayzata Blvd. Suite 170 Minneapolis, MN 55426 Tel: 952.417.4719 | Mobile:612.201.8978 [EMAIL PROTECTED

Re: [R] Percentages for categorical data by group

2008-05-23 Thread Michael Conklin
prop.table(table(factor(x,levels=1:5))) Michael Conklin Chief Methodologist - Advanced Analytics MarketTools, Inc. 6465 Wayzata Blvd. Suite 170 Minneapolis, MN 55426 Tel: 952.417.4719 | Mobile:612.201.8978 [EMAIL PROTECTED] MarketTools(r)http://www.markettools.com This e

Re: [R] Problem with R version 2.6.0

2007-11-09 Thread Michael Conklin
a new shortcut for a specific project. The beauty of R is that there are multiple ways to do many things and the user can find the way that is best for him. Michael Conklin __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help