Re: [R] moses extreme reaction test

2014-04-08 Thread Spencer Graves
the point is that Learn to Search may even be a bit over the top -- is there anyone on the internet who does not use standard search engines like google, bing, and yahoo? I don't think I'm the only one. Using Spencer Graves' excellent package is very convenient and has delivered many answers

Re: [R] solicit help to read in 384 plate color image

2014-04-07 Thread Spencer Graves
Have you considered the Bioconductor package EBImage? See www.bioconductor.org/packages/release/bioc/html/EBImage.html. I found it using findFn{sos}. It seems well developed, well maintained AND includes a vignette that simplifies the job of learning how to use it.

[R] getting arg names in function calls?

2014-04-07 Thread Spencer Graves
How can I convert plot(0, 1) into plot(x=0, y=1)? More generally, how can I get argument names assigned to function calls in language objects? Example: tstFn - function()plot(0, 1) bo - body(tstFn) tstFnxy - function()plot(x=0, y=1) boxy - body(tstFnxy) Is

[R] data.frame(1)*1:4 = 1?

2014-04-03 Thread Spencer Graves
Hello, All: What's the logic behind data.frame(1)*1:4 producing a scalar 1? Or the following: data.frame(1:2, 3:4)*5:7 X1.2 X3.4 15 21 2 12 20 I stumbled over this, because I thought I was multiplying a scalar times a vector, and obtaining a scalar rather than

Re: [R] data.frame(1)*1:4 = 1?

2014-04-03 Thread Spencer Graves
for. I was expecting an error or at least a warning and was surprised when I didn't get one. Best Wishes, Spencer Cheers, Josh On Wed, Apr 2, 2014 at 11:42 PM, Spencer Graves spencer.gra...@structuremonitoring.com mailto:spencer.gra...@structuremonitoring.com wrote

[R] create video?

2014-02-22 Thread Spencer Graves
. Can anyone suggest something different or provide details on ways to make this easy? Thanks, Spencer Graves __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R

Re: [R] R for a stats intro for undergrads in the US?

2013-11-17 Thread Spencer Graves
, Professor McMaster University Hamilton, Ontario, Canada http://socserv.socsci.mcmaster.ca/jfox/ -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- project.org] On Behalf Of Spencer Graves Sent: Saturday, November 16, 2013 9:19 PM To: R list Subject: [R] R

[R] R for a stats intro for undergrads in the US?

2013-11-16 Thread Spencer Graves
a friend who teaches such a class, and wondered if R might be suitable. The alternative is SPSS at $406 per student. Thanks, Spencer -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408

Re: [R] R for a stats intro for undergrads in the US?

2013-11-16 Thread Spencer Graves
Hi, Umair Durrani: Thanks very much for the quick reply. The course you mentioned does not feature psychology, that I could see. However, my friend might be able to use pieces of that course in hers. Thanks again. Spencer On 11/16/2013 7:58 PM, umair durrani wrote:

Re: [R] Gaussian Quadrature for arbitrary PDF

2013-10-15 Thread Spencer Graves
other options, like numerical integration with quadrature. However, orthogonal polynomials for a continuous distribution won't work properly with a discontinuous transformation like round ;-) Hope this helps. Spencer David 2013/10/14 Spencer Graves spencer.gra

Re: [R] Gaussian Quadrature for arbitrary PDF

2013-10-11 Thread Spencer Graves
: Thanks so much for your response. BTW, do you know any Gauss quadrature R package can deal with the arbitary PDF? Thank you! David 2013/10/11 Spencer Graves spencer.gra...@structuremonitoring.com mailto:spencer.gra...@structuremonitoring.com p.s. Orthogonal polynomials can be defined

Re: [R] Gaussian Quadrature for arbitrary PDF

2013-10-10 Thread Spencer Graves
On 10/10/2013 5:02 PM, Marino David wrote: Hi all, We know that Hermite polynomial is for Gaussian, Laguerre polynomial for Exponential distribution, Legendre polynomial for uniform distribution, Jacobi polynomial for Beta distribution. Does anyone know which kind of polynomial deals with

Re: [R] Gaussian Quadrature for arbitrary PDF

2013-10-10 Thread Spencer Graves
p.s. Orthogonal polynomials can be defined for any probability distribution on the real line, discrete, continuous, or otherwise, as described in the Wikipedia article on orthogonal polynomials. On 10/10/2013 5:02 PM, Marino David wrote: Hi all, We know that Hermite polynomial is for

Re: [R] Read a Google Spreadsheet?

2013-09-21 Thread Spencer Graves
of R. Cheers, Josh P.S. Emacs + ESS allows for different versions of R and it is not too difficult to use the 64 or 32 bit version... M-x R-version-architecture On Wed, Sep 4, 2013 at 6:36 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: On 9/4/2013 6:09 PM, Ista Zahn wrote: Hi

[R] Read a Google Spreadsheet?

2013-09-04 Thread Spencer Graves
-bit) locale: [1] LC_COLLATE=English_United States.1252 [2] LC_CTYPE=English_United States.1252 [3] LC_MONETARY=English_United States.1252 [4] LC_NUMERIC=C [5] LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base -- Spencer Graves, PE

Re: [R] Read a Google Spreadsheet?

2013-09-04 Thread Spencer Graves
I want to do. Thanks for the reply. Spencer On Wed, Sep 4, 2013 at 6:12 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: Hello, All: What do you recommend for reading a Google Spreadsheet into R? I didn't find anything useful using library(sos); findFn('google

Re: [R] From POSIXct to numeric and back with time zone

2013-08-25 Thread Spencer Graves
? __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer

Re: [R] From POSIXct to numeric and back with time zone

2013-08-25 Thread Spencer Graves
. Spencer Graves spencer.gra...@structuremonitoring.com wrote: Is as.POSIXct1970{fda} useful here? That provides 1970-01-01 as the origin for as.POSIXct.numeric. Spencer p.s. as.Date1970{Ecdat} does the same for as.Date.numeric. On 8/25/2013 7:35 AM, Jeff Newmiller wrote: If the data you

Re: [R] Book recomendation: Repeated Measurements

2013-07-14 Thread Spencer Graves
On 7/14/2013 1:20 PM, Marcelo Laia wrote: Yes! I have a look there before I post! You may know that mixed effects is another term for repeated measurements. Spencer Graves Thank you very much! 2013/7/14 Bert Gunter gunter.ber...@gene.com: Look before you post

Re: [R] Book recomendation: Repeated Measurements

2013-07-14 Thread Spencer Graves
On 7/14/2013 3:05 PM, Rolf Turner wrote: On 15/07/13 08:57, Spencer Graves wrote: SNIP You may know that mixed effects is another term for repeated measurements. SNIP I must of course preface this comment with an I am no expert disclaimer, but I do not believe that this assertion

Re: [R] Installing R on Fedora 18 Linux?

2013-07-08 Thread Spencer Graves
-Help, R-Devel and stackoverflow, I got past all those. Thanks again to Peter and Ranjan. Best Wishes, Spencer Graves On 7/6/2013 9:53 PM, Ranjan Maitra wrote: Fedora does have the latest (both Fedora 18/19) R in the repos. (They are pretty good about this). To install R

[R] Installing R on Fedora 18 Linux?

2013-07-06 Thread Spencer Graves
Hello: I'm trying to install R under Fedora 18 Linux, and I'm confused. The R Installation and Administration manual, sec. 1.1, says, The simplest way is to download the most recent R-x.y.z.tar.gz file. However, I don't know how to get that. My favorite CRAN mirror offers a

Re: [R] nth root of matrix

2013-07-03 Thread Spencer Graves
,] -1.259921 [3,] -1.442250 cr^n Hope this helps. Spencer Graves David Winsemius Alameda, CA, USA __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting

[R] Write an Excel workbook?

2013-06-27 Thread Spencer Graves
failed to produce anything else that looked to me like it would write a complete workbook. Suggestions? Thanks, Spencer Graves sessionInfo() R version 3.0.1 (2013-05-16) Platform: x86_64-w64-mingw32/x64 (64-bit) locale: [1] LC_COLLATE=English_United States.1252 [2] LC_CTYPE=English_United

Re: [R] Instant search for R documentation

2013-06-12 Thread Spencer Graves
On 6/12/2013 1:03 AM, jonathan cornelissen wrote: Hi, I just wanted to share with you that we made a website over the weekend that allows instant search of the R documentation on CRAN, see: www.Rdocumentation.org. It's a first version, so any feedback/comments/criticism most welcome.

Re: [R] Execution of larger blocks of pasted code often fails?

2013-05-28 Thread Spencer Graves
On 5/28/2013 2:44 AM, Jim Lemon wrote: On 05/28/2013 04:54 PM, Mark Breman wrote: Hello List, When i paste a large block of R code from an editor to the R command line the execution of the code will often fail at some point because it is not pasted as it was copied. ... Hi Mark, I

[R] Matching names with non-English characters

2013-05-13 Thread Spencer Graves
Hello: How can one match names containing non-English characters that appear differently in different but related data files? For example, I have data on Raúl Grijalva, who represents the third district of Arizona in the US House of Representatives. This first name appears as Raúl

[R] aggregate.data.frame with NAs and different types

2013-05-12 Thread Spencer Graves
in the latter two and with other attempts using RSiteSearch, except for a reference to plyr. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com

Re: [R] aggregate.data.frame with NAs and different types

2013-05-12 Thread Spencer Graves
, Try: library(plyr) res1-ddply(df2aggregate,.(id),summarize,x=sum(x),y=mean(y),a=head(a,1)) res1 # id x ya #1 a 3 NA NA #2 b 7 2.5A #3 c 11 4.5C #4 d NA NAE res1$x- as.numeric(res1$x) identical(ag1.2,res1) #[1] TRUE A.K. - Original Message - From: Spencer

Re: [R] maxLik: different estimations from different packages

2013-05-10 Thread Spencer Graves
in your publications :-) Best regards, Arne -- Arne Henningsen http://www.arne-henningsen.name -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com

[R] Wikipedia plots and tables?

2013-02-23 Thread Spencer Graves
of the contribution refers to Ecdat for details. (2) Functions to facilitate creating and updating data objects being added. Are there better ways of producing quality graphics and maybe interfacing R with MediaWiki projects? Thanks, Spencer Graves

Re: [R] Wikipedia plots and tables?

2013-02-23 Thread Spencer Graves
) .OO#. .OO#. rocks...1k --- Sent from my phone. Please excuse my brevity. Spencer Graves spencer.gra...@structuremonitoring.com wrote: Hello, All: What facilities exist for plots and tables of data

Re: [R] Wikipedia plots and tables?

2013-02-23 Thread Spencer Graves
interface to Wikipedia and wrap all this interfacing stuff up, but that will require research on Mediawiki input format requirements, for which development I would hope one would want a Mediawiki expert's help. OK. Thanks. Spencer Graves

Re: [R] Exponentiate very large numbers

2013-02-05 Thread Spencer Graves
this helps. Spencer Graves On 2/4/2013 10:58 AM, Rui Barradas wrote: Sorry, it should be: Divide both terms by exp(log(0.1) + log.b) to give tmp1 - exp(log.a - log(0.1) - log.b) - 1 result - tmp1 * exp(log(0.1) + log.b) Rui Barradas Em 04-02-2013 18:53, Rui Barradas escreveu: Hello, Use

Re: [R] Exponentiate very large numbers

2013-02-05 Thread Spencer Graves
Functions log1p and expm1 may be of interest here. To understand them, look at a 2- or 3-term Taylor expansion for log(x) [natural log, of course] and exp(x). Spencer On 2/5/2013 10:48 AM, Albyn Jones wrote: I stayed out of this one thinking it was probably a homework exercise. After others

Re: [R] rJava works with 32-bit but not 64

2013-02-05 Thread Spencer Graves
On 2/4/2013 3:55 PM, Simon Urbanek wrote: On Feb 4, 2013, at 7:14 PM, Spencer Graves wrote: On 2/4/2013 7:03 AM, Simon Urbanek wrote: On Feb 4, 2013, at 10:27 AM, Spencer Graves wrote: On 2/4/2013 5:22 AM, Milan Bouchet-Valat wrote: Le lundi 04 février 2013 à 08:19 -0400, Simon Urbanek

Re: [R] rJava works with 32-bit but not 64

2013-02-04 Thread Spencer Graves
/is-it-possible-to-install-both-32bit-and-64bit-java-on-windows-7). Thanks, Spencer Regards, Pascal Le 04/02/2013 14:27, Spencer Graves a écrit : Hello: rJava works for me under 32-bit but under not 64-bit R; see below. Suggestions? Thanks, Spencer

Re: [R] rJava works with 32-bit but not 64

2013-02-04 Thread Spencer Graves
On 2/4/2013 5:22 AM, Milan Bouchet-Valat wrote: Le lundi 04 février 2013 à 08:19 -0400, Simon Urbanek a écrit : On Feb 4, 2013, at 6:33 AM, Spencer Graves wrote: On 2/3/2013 11:21 PM, Pascal Oettli wrote: Hello, Do you have a 64-bit version of Java? rJava says to you: call: stop

[R] Wide character in print?

2013-02-04 Thread Spencer Graves
rather find a way to avoid it. (I suppose I could dump it to sink, but that's pretty extreme and could mask other problems.) Thanks, Spencer -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA

Re: [R] rJava works with 32-bit but not 64

2013-02-04 Thread Spencer Graves
On 2/4/2013 7:03 AM, Simon Urbanek wrote: On Feb 4, 2013, at 10:27 AM, Spencer Graves wrote: On 2/4/2013 5:22 AM, Milan Bouchet-Valat wrote: Le lundi 04 février 2013 à 08:19 -0400, Simon Urbanek a écrit : On Feb 4, 2013, at 6:33 AM, Spencer Graves wrote: On 2/3/2013 11:21 PM, Pascal Oettli

[R] rJava works with 32-bit but not 64

2013-02-03 Thread Spencer Graves
methods base other attached packages: [1] rJava_0.9-3 -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com __ R

[R] Wide character in print?

2013-02-03 Thread Spencer Graves
, Spencer -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com __ R-help@r-project.org mailing list https

Re: [R] New Book: Statistical Psychology with R [in French]

2013-01-23 Thread Spencer Graves
__ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief

Re: [R] nested, unbalanced anova

2013-01-06 Thread Spencer Graves
is in the book. There is also an r-sig-mixed-mod...@r-project.org email list that may interest you. I have not used this in years, and I would expect that people on this email list could help you with more current information on what's available. Hope this helps. Spencer Graves

Re: [R] Vectorizing integrate()

2012-12-07 Thread Spencer Graves
/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting- guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126

Re: [R] Vectorizing integrate()

2012-12-07 Thread Spencer Graves
On 12/7/2012 9:40 AM, Berend Hasselman wrote: On 07-12-2012, at 18:12, Spencer Graves wrote: Has anyone suggested using the byte code compiler compiler package? An analysis by John Nash suggested to me that it may be roughly equivalent to vectorization; see http://rwiki.sciviews.org

Re: [R] Using multicores in R

2012-12-03 Thread Spencer Graves
() does not work. If the work you are doing within each iteration of the loop is trivial, you will likely even see a decrease in performance if you try to parallelize it. Without more info from you regarding your problem, there's little we can do to help, tho. -Steve -- Spencer Graves, PE

Re: [R] R-Forge not building packages?

2012-12-03 Thread Spencer Graves
http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web

Re: [R] optim and nlminb

2012-10-11 Thread Spencer Graves
a fortune? On 10/11/2012 9:56 AM, John C Nash wrote: snip Indeed in several years on the list, I've never seen a query with a short, testable case fail to get an answer very quickly. JN -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection

Re: [R] Regarding licensing Terms

2012-10-03 Thread Spencer Graves
, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com __ R-help@r

Re: [R] nlme: spatial autocorrelation on a sphere

2012-10-03 Thread Spencer Graves
(unfortunately). Ben Bolker From: Spencer Graves [spencer.gra...@prodsyse.com] Sent: 01 October 2012 16:34 To: David Winsemius Cc: Dan Bebber; r-help@r-project.org Subject: Re: [R] nlme: spatial autocorrelation on a sphere On 10/1/2012 12:38 AM, David

Re: [R] glpk package missing?

2012-10-02 Thread Spencer Graves
://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct

Re: [R] nlme: spatial autocorrelation on a sphere

2012-10-01 Thread Spencer Graves
Software 25(10) From: David Winsemius [dwinsem...@comcast.net] Sent: 01 October 2012 17:32 To: Spencer Graves Cc: Dan Bebber; r-help@r-project.org Subject: Re: [R] nlme: spatial autocorrelation on a sphere On Oct 1, 2012, at 8:34 AM, Spencer Graves wrote

[R] Linking to C type short?

2012-07-26 Thread Spencer Graves
I define any short vector in C as a matrix with 2 rows of type either raw or char? Thanks, Spencer p.s. I need this to link to lossless JPEG code obtained from ftp.cs.cornell.edu/pub/multimed/ljpg.tar.Z -- Spencer Graves, PE, PhD President and Chief Technology Officer

Re: [R] Linking to C type short?

2012-07-26 Thread Spencer Graves
On 7/26/2012 4:51 PM, Duncan Murdoch wrote: On 12-07-26 4:22 PM, Spencer Graves wrote: Hello, All: What references exist on how to link to C? I'm familiar with sections 5.2 and 5.6 of the Writing R Extension manual plus chapter 6 of Venables and Ripley (2000) S Programming

Re: [R] Convert Package Interest?

2012-07-23 Thread Spencer Graves
, miles, km) [1] 1.609344 -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com __ R-help@r-project.org mailing

Re: [R] c(a, b) for POSIXct objects with tzone attributes?

2012-07-11 Thread Spencer Graves
. Hopefully, you'll get a more informed and authoritative explanation, though. ... I'm just speculating and and may be all wet. Cheers, Bert On Sun, Jul 8, 2012 at 9:46 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: Hello: What is the recommended method for retaining

[R] a fortune?

2012-07-08 Thread Spencer Graves
Hello, All: I think therefore I R, according to the header on several R-Tutorials by William B. King, PhD, Coastal Carolina University (http://ww2.coastal.edu/kingw/statistics/R-tutorials). Might this be appropriate for fortunes? Spencer -- Spencer Graves, PE, PhD

[R] c(a, b) for POSIXct objects with tzone attributes?

2012-07-08 Thread Spencer Graves
were what is returned by c.POSIXct [as discussed with help('c.POSIXct')]. Is there some other function like c2, say, that tries to retain attributes where c strips all but names? Thanks, Spencer -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure

[R] How to defeat buffering in Rgui? (was: Re: Printing a variable in a loop)

2012-06-29 Thread Spencer Graves
. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President

Re: [R] How to defeat buffering in Rgui?

2012-06-29 Thread Spencer Graves
http://cran.r-project.org/bin/windows/base/rw-FAQ.html#The-output-to-the-console-seems-to-be-delayed and ?flush.console . On 29/06/2012 08:01, Spencer Graves wrote: Hello, All: Does anyone know how to defeat buffering of output to the console from Rgui? I routinely print progress

Re: [R] How to defeat buffering in Rgui?

2012-06-29 Thread Spencer Graves
()} # flush.console() } You will notice a very large speedup. 0 0.5 root 1.0.4 flush.console 1.0.0 cat 1.0.0 == On Fri, Jun 29, 2012 at 1:15 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: Dear Prof. Ripley: Thanks for the reply

Re: [R] remove leading slash

2012-06-15 Thread Spencer Graves
]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer

Re: [R] dumpMethods (was: How to build a large identity matrix faster?)

2012-06-15 Thread Spencer Graves
to be. Hope this helps, Michael On Fri, Jun 8, 2012 at 5:11 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: How can one get the source code for diag? I tried the following: diag standardGeneric for diag defined from package base function (x = 1, nrow, ncol) standardGeneric

Re: [R] How to build a large identity matrix faster?

2012-06-08 Thread Spencer Graves
: I quickly looked at it, and the difference comes from: n - 5e3 system.time(x - array(0, c(n, n))) # from diag() system.time(x - matrix(0, n, n)) # from Rdiag() Replaced in R-devel. Best, Uwe Ligges On 07.06.2012 12:11, Spencer Graves wrote: On 6/7/2012 2:27 AM, Rui Barradas wrote: Hello

Re: [R] How to build a large identity matrix faster?

2012-06-07 Thread Spencer Graves
On 6/7/2012 2:27 AM, Rui Barradas wrote: Hello, To my great surprise, on my system, Windows 7, R 15.0, 32 bits, an R version is faster! I was also surprised, Windows 7, R 2.15.0, 64-bit rbind(diag=t1, Rdiag=t2, ratio=t1/t2) user.self sys.self elapsed user.child sys.child diag

Re: [R] Do YOU know an equation for splines (ns)?

2012-06-06 Thread Spencer Graves
. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology

Re: [R] fda modeling

2012-05-28 Thread Spencer Graves
people. Many of my data analysis failures involved jumping straight to a multivariate analysis before doing the simple things first ;-) Hope this helps. Spencer Graves Best wishes Troels Ring, Nephrology Aalborg, Denmark __ R-help@r

Re: [R] write.xls

2012-05-20 Thread Spencer Graves
On 5/19/2012 7:59 PM, Jim Holtman wrote: I have been using XLConnect to write multisheet Excel without any problems. Thanks very much. That looks like it will solve my problems. Best Wishes, Spencer p.s. findFn{sos} identified thatt for me, but for some unknown reason,

Re: [R] write.xls

2012-05-20 Thread Spencer Graves
Hi, Gabor: Thanks. I'll try that. Spencer On 5/20/2012 5:52 AM, Gabor Grothendieck wrote: On Sun, May 20, 2012 at 8:30 AM, Gabor Grothendieck ggrothendi...@gmail.com wrote: On Sat, May 19, 2012 at 9:32 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: Hello, All

Re: [R] write.xls

2012-05-20 Thread Spencer Graves
On 5/20/2012 6:47 AM, Marc Schwartz wrote: On May 19, 2012, at 8:32 PM, Spencer Graves wrote: Hello, All: The writeFindFn2xls function in the sos package tries to write an Excel file with 3 sheets ('PackageSum2', 'findFn', 'call'). Unfortunately, it is often unable to do this because

Re: [R] write.xls

2012-05-20 Thread Spencer Graves
On 5/20/2012 5:52 AM, Gabor Grothendieck wrote: On Sun, May 20, 2012 at 8:30 AM, Gabor Grothendieck ggrothendi...@gmail.com wrote: On Sat, May 19, 2012 at 9:32 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: Hello, All: The writeFindFn2xls function in the sos package

Re: [R] write.xls

2012-05-20 Thread Spencer Graves
attached the resulting Excel file (see how far it makes it). On Sun, May 20, 2012 at 7:15 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: On 5/20/2012 5:52 AM, Gabor Grothendieck wrote: On Sun, May 20, 2012 at 8:30 AM, Gabor Grothendieck ggrothendi...@gmail.comwrote: On Sat

Re: [R] write.xls

2012-05-20 Thread Spencer Graves
On 5/20/2012 5:37 PM, Gabor Grothendieck wrote: snip Unfortunately this is getting increasingly complex due to the non-standard evaluation done by dataframes2xls but if you want to do it then this will do it. We copy dataframes2xls to the current environment and reset write.xls's environment

[R] write.xls

2012-05-19 Thread Spencer Graves
#[5] LC_TIME=English_United States.1252 #attached base packages: #[1] stats graphics grDevices utils datasets methods base #other attached packages: #[1] RODBC_1.3-5 WriteXLS_2.1.0 dataframes2xls_0.4.5 -- Spencer Graves, PE, PhD President and Chief Technology Officer

[R] [R-pkgs] new version of fda fixes bug in pca.fd and supports library(Matrix)

2012-05-17 Thread Spencer Graves
'). A package using the returnMatrix argument will also need Matrix in the dependencies in DESCRIPTION and something like import(Matrix) in NAMESPACE. Each use will require adding returnMatrix = TRUE to an appropriate fda function call. Best Wishes, Jim Ramsay, Giles Hooker, Spencer

Re: [R] fda problems - version correct?

2012-05-11 Thread Spencer Graves
] fda_2.2.7 zoo_1.7-7 loaded via a namespace (and not attached): [1] grid_2.15.0lattice_0.20-6 tools_2.15.0 -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web

Re: [R] Rprofile.site under Windows 7?

2012-05-04 Thread Spencer Graves
On 5/4/2012 5:41 AM, Duncan Murdoch wrote: On 12-05-04 12:41 AM, Spencer Graves wrote: On 5/3/2012 9:28 PM, Joshua Wiley wrote: How are you using R? Any special front ends that might be causing this? Can you try it in unsuffered consequences? I'm running R 1.15.0; sessionInfo

Re: [R] Rprofile.site under Windows 7?

2012-05-04 Thread Spencer Graves
On 5/4/2012 9:27 PM, Duncan Murdoch wrote: On 12-05-04 10:33 PM, Joshua Wiley wrote: On Fri, May 4, 2012 at 7:17 PM, Duncan Murdochmurdoch.dun...@gmail.com wrote: On 12-05-04 7:40 PM, Spencer Graves wrote: [snip] This is almost enough to drive a person to join the I hate MicroSoft

[R] Rprofile.site under Windows 7?

2012-05-03 Thread Spencer Graves
documented below, I also copied Rprofile.site into R_HOME/etc/i386 and R_HOME/etc/x64, without, e.g., max.print being changed to 222 as requested. Any other suggestions? Thanks, Spencer Graves I have so far

Re: [R] Rprofile.site under Windows 7?

2012-05-03 Thread Spencer Graves
23.3.1 using ESS. Thanks for the question. Spencer Josh On Thu, May 3, 2012 at 9:07 PM, Spencer Graves spencer.gra...@structuremonitoring.com wrote: Hello All: I'm still unable to get Rprofile.site to set, e.g., options(max.print=222), as I did with previous versions

[R] Rprofile.site in R 2.15.0 on Windows?

2012-05-02 Thread Spencer Graves
(and not attached): [1] tools_2.15.0 -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com __ R-help@r

[R] Rprofile.site?

2012-04-12 Thread Spencer Graves
: [1] LC_COLLATE=English_United States.1252 [2] LC_CTYPE=English_United States.1252 [3] LC_MONETARY=English_United States.1252 [4] LC_NUMERIC=C [5] LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base -- Spencer Graves

[R] Lobbying database

2012-04-12 Thread Spencer Graves
. With a little luck we may be able to obtain help from professors and similar researchers at Harvard, Stanford and elsewhere. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web

Re: [R] Best way to search r- functions and mailing list?

2012-04-05 Thread Spencer Graves
-to site for searching for R solutions. Are there any good replacements for this? I want to be able to search both functions and mailing lists at the same time. Cheers! --j -- -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751

Re: [R] Best way to search r- functions and mailing list?

2012-04-05 Thread Spencer Graves
archives, which requires an online solution. (See subject line.) Sarah On Thu, Apr 5, 2012 at 12:56 PM, Spencer Graves spencer.gra...@prodsyse.com wrote: The sos package is designed to search help pages only and sort the results by package. It includes a vignette describing how to get

Re: [R] Matrix negative fraction power

2012-03-11 Thread Spencer Graves
-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure

Re: [R] Packages 'effects' loads 'name' which conflicts with 'lme4' [corrected subject: Package 'effects' loads 'nlme' which conflicts with 'lme4']

2012-03-08 Thread Spencer Graves
commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com

Re: [R] Packages 'effects' loads 'name' which conflicts with 'lme4' [corrected subject: Package 'effects' loads 'nlme' which conflicts with 'lme4']

2012-03-08 Thread Spencer Graves
, John Fox wrote: Dear Spencer, -Original Message- From: Spencer Graves [mailto:spencer.gra...@prodsyse.com] Sent: March-08-12 10:29 AM To: Michael Kubovy Cc: John Fox; r-help Subject: Re: [R] Packages 'effects' loads 'name' which conflicts with 'lme4' [corrected subject: Package 'effects

Re: [R] evaluating derivative matrices of spline functions

2012-02-24 Thread Spencer Graves
guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web

Re: [R] using mclapply (multi core apply) to do matrix multiplication

2012-02-07 Thread Spencer Graves
. Unfortunately, Debian does not include a multi-threaded version of ATLAS although they provide instructions on how to recompile the package yourself with multi-threading enabled. I don't know about SUSE, sorry. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure

Re: [R] R-RApache to develop Knowledge Base

2012-02-06 Thread Spencer Graves
, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web:www.structuremonitoring.com -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection

Re: [R] The Future of R | API to Public Databases

2012-01-13 Thread Spencer Graves
@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure

Re: [R] general question on Spotfire

2012-01-11 Thread Spencer Graves
/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126

Re: [R] higher derivatives using deriv

2012-01-03 Thread Spencer Graves
, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com __ R-help@r

Re: [R] An R interface to Model Building

2012-01-03 Thread Spencer Graves
code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web:www.structuremonitoring.com -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection

Re: [R] Pascal's Triangle

2011-12-28 Thread Spencer Graves
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408

Re: [R] Rprofile.site

2011-11-27 Thread Spencer Graves
, reproducible code. -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com __ R-help@r-project.org mailing list

Re: [R] Copula Fitting Using R

2011-11-25 Thread Spencer Graves
to upgrade the RSiteSearch database is encouraged to contact Prof. Jonathan Baron (ba...@psych.upenn.edu), who has repeatedly asked for volunteer(s) to maintain it; he has many other commitments, and would like to transfer this to someone else. Hope this helps. Spencer Graves

Re: [R] R development master class: NYC, Dec 12-13

2011-11-13 Thread Spencer Graves
and manage their own social, political, and physical environments. Sarah -- Spencer Graves, PE, PhD President and Chief Technology Officer Structure Inspection and Monitoring, Inc. 751 Emerson Ct. San José, CA 95126 ph: 408-655-4567 web: www.structuremonitoring.com

<    1   2   3   4   5   6   >