RE: [R] R interface to Python (in Windows)

2004-08-05 Thread Benjamin . STABLER
I put a copy of R 1.8.1 for Windows on our FTP site at: ftp://ftp.odot.state.or.us/outgoing/Test/. It should be there for a few days before it gets deleted. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301

RE: [R] text editor for R

2004-07-12 Thread Benjamin . STABLER
JEdit has an R syntax highlighting file at http://community.jedit.org. It is listed as a file pretty far down on the right side menus as R Edit Mode - Extensive Version. Ben Stabler -Original Message- From: Yi-Xiong Sean Zhou [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004

RE: [R] text editor for R - summary on R-WinEdt

2004-07-12 Thread Benjamin . STABLER
I implemented Uwe's R-WinEdt package as a closer to true WinEdt mode so that WinEdt could be used with other modes as well. I sent Uwe the implementation and we talked a little about cleaning it up, but I haven't gotten around to it and I don't think he has either. It is still a little messy as

RE: [R] indexing question

2004-05-19 Thread Benjamin . STABLER
take a look at match or maybe merge -Original Message- From: Adrian Dusa [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 8:44 AM To: [EMAIL PROTECTED] Subject: [R] indexing question Hi, I have a problem and a rather poor solution that I would like to improve. There a 2

RE: [R] code for functions in base package

2004-05-13 Thread Benjamin . STABLER
) .Internal(dexp(x, 1/rate, log)) environment: namespace:base Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104 -Original Message- From: Brittany Erin Laine [mailto:[EMAIL PROTECTED

RE: [R] Turning windows screen buffering on and off

2004-04-16 Thread Benjamin . STABLER
right?...so that seems to be a good spot to set something like that. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104 - Message: 75 Date: Fri, 16 Apr 2004 08:59:43

RE: [R] Rcmd BATCH command line arguments

2004-03-10 Thread Benjamin . STABLER
Okay, thanks. But it seems inconsistent that Rterm and Rgui support setting environment variables this way while Rcmd does not. Also, I don't think the rw-FAQ is all that helpful on this issue. It says: Environment variables can be set in R in three different ways. 1. On the command line as

RE: [R] Decision Trees

2004-03-09 Thread Benjamin . STABLER
Thanks for the insight. I think we will try both CART (rpart) and C4.5 (J4.8) and see what happens. As always, the R community is so helpful. Thanks, Ben -Original Message- From: Ko-Kang Kevin Wang [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 09, 2004 12:08 AM To: 'Prof Brian

[R] Rcmd BATCH command line arguments

2004-03-09 Thread Benjamin . STABLER
I want to run Rcmd BATCH with R_DEFAULT_PACKAGE=base so it doesn't load any packages, but it seems to reject this argument because it does not start with a '-' or '--'. Is there a different argument that will work? Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department

[R] Decision Trees

2004-03-08 Thread Benjamin . STABLER
of it) available to R? If not, then I might use the WEKA Java package ( http://www.cs.waikato.ac.nz/ml/weka) that implements a Java version of C4.5. Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104

Re: [R] writing polygons/segments to shapefiles (.shp) or other A rcGIS compatible file

2004-02-26 Thread Benjamin . STABLER
. If not, then maybe I can help. Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104 __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch

[R] R internal data types

2004-01-14 Thread Benjamin . STABLER
I am trying to figure out R data types and/or storage mode. For example: #From a clean workspace gc() used (Mb) gc trigger (Mb) Ncells 415227 11.1 597831 16 Vcells 103533 0.8 7864326 x - seq(0,10,1) is.integer(x) [1] FALSE is.double(x) [1] TRUE object.size(x)

Re: [R] Windows Memory Issues

2003-12-09 Thread Benjamin . STABLER
in learning more and was wondering if there is any specific R documentation that explains R's memory usage? Or maybe some good links about memory and garbage collection. Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2

RE: [R] Windows Memory Issues

2003-12-09 Thread Benjamin . STABLER
Thanks for the reply. So are you saying that multiple calls to gc() frees up memory to Windows and then other processes can use that newly freed memory? So multiple calls to gc() does not actually make more memory available to new R objects that I might create. The reason I ask is because I

[R] Array Dimension Names

2003-10-31 Thread Benjamin . STABLER
elements of each dimension (such as with dimnames) but rather name the dimensions. Thanks for your help. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104

RE: [R] Array Dimension Names

2003-10-31 Thread Benjamin . STABLER
the individual elements of each dimension (such as with dimnames) but rather name the dimensions. Thanks for your help. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104

[R] apply on a 4D array

2003-09-25 Thread Benjamin . STABLER
I am trying to multiply a 3D array of 4x4x4 by the 4 3D arrays of a 4D array with dimensions 4x4x4x4 (the last dimension being the one that I want to split by). (4x4x4 array) hiaAry , , a1 i1 i2 i3i4 h1 9.5936098 6.001040 0.08772 0.3138600 h2 1.2003500 1.454570

RE: [R] Building and loading a DLL on Windows NT

2003-09-18 Thread Benjamin . STABLER
It was the case sensitive issue. I changed the file from .C to .c and I got the gcc compiler instead of the g++ compiler, which resulted in the function name staying the same. Thanks for your help. Also, I can't seem to find the Borland tdump utility (everything I can find on the Internet says

RE: [R] Building and loading a DLL on Windows NT

2003-09-18 Thread Benjamin . STABLER
Thanks for the link. Turns out I already had pedump though. Ripley's tools for building R for Windows zip file contains a copy of pedump. He also notes it in the readme. I forgot to look at the readme for the R tools when I was debugging my problem. Thanks again to the R community for all its

RE: [R] Building and loading a DLL on Windows NT

2003-09-17 Thread Benjamin . STABLER
Thanks. I didn't try the Borland utility but your response reminded me of a way to view the DLL info in Windows. Right click a DLL and then quick view and Windows outputs some file information, including the Export table which lists the names of the symbols in the DLL. The name of the add

[R] Shapefiles package upload

2003-07-23 Thread Benjamin . STABLER
not permit underscores in field names. Let me know if you run into any other problems. Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104 __ [EMAIL

[R] RE: Shapefiles package upload

2003-07-23 Thread Benjamin . STABLER
problems. Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104 __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo

[R] EMME/2 and shapefiles packages

2003-06-17 Thread Benjamin . STABLER
For those of you that are interested, the EMME/2 and shapefiles packages are now on CRAN. Let me know if you run into any bugs or have some suggestions. Thanks, Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301

[R] ESRI shapefiles and EMME/2 packages

2003-06-09 Thread Benjamin . STABLER
some suggestions. Thanks. Regards, Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104 __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch

[R] Package upload to CRAN

2003-06-05 Thread Benjamin . STABLER
I want upload two packages to CRAN, but I can't seem to connect to ftp://cran.r-project.org/incoming. Do I need a username and password? Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986

RE: [R] Building an R package under Windows NT

2003-06-04 Thread Benjamin . STABLER
The version of Perl I have is: This is perl, version 5.005_02 built for MSWin32-x86-object Copyright 1987-1998, Larry Wall Binary build 506 provided by ActiveState Tool Corp. http://www.ActiveState.com Built 15:40:37 Oct 27 1998 It was installed by my IS department some time ago. I

RE: [R] Building an R package under Windows NT

2003-06-04 Thread Benjamin . STABLER
The emme2 package is not in the $RHOME/library directory. My sh.exe is the most current one from the tools available at http://www.stats.ox.ac.uk/pub/Rtools/.I searched for sh.exe and that is only one I've got on my system. -Original Message- From: Duncan Murdoch [mailto:[EMAIL

RE: [R] Building an R package under Windows NT

2003-06-04 Thread Benjamin . STABLER
I finally figured out the problem. I went ahead and installed Perl 5.8 but that didn't do it. The problem was that an existing program's directory was earlier in the PATH and so one (or more) of the components of the Rcmd INSTALL was an older version. It wasn't zip since I renamed the old zip.

[R] Building an R package under Windows NT

2003-06-03 Thread Benjamin . STABLER
: X) Any help would be appreciated. Thanks. Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104 __ [EMAIL PROTECTED] mailing list https

Re: [R] How to list functions in a library?

2003-04-01 Thread Benjamin . STABLER
[73] svm.formula tune tune.knn [76] tune.nnet tune.randomForest tune.rpart [79] tune.svm write.matrix.csr Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th

RE: Re: [R] ESRI shape file import and time-space models

2003-02-18 Thread Benjamin . STABLER
also to Fan for the comments. Finally, I am working on putting together a package to read and write shapefiles. Regards, Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation 555 13th Street NE, Suite 2 Salem, OR 97301 Ph: 503-986-4104

[R] UltraEdit R Syntax Highlighting File

2003-02-06 Thread Benjamin . STABLER
Attached as a text file is the UltraEdit R syntax highlighting file that I wrote a few months ago and submitted to UltraEdit. I resubmitted it yesterday and it should be available soon. Regards. r.txt Benjamin Stabler Transportation Planning Analysis Unit Oregon Department of Transportation