[R] Long memory ts

2003-01-04 Thread Erin Hodgess
Dear R People: Where is the command for long memory time series, please? In S, it's arima.fracdiff Is there something like that in R? If so, which library has it, please? Version 1.5.1 for Windows Happy new year Thanks so much! Sincerely, Erin Hodgess mailto: [EMAIL PROTECTED]

Re: [R] easy graphics question

2003-01-04 Thread Sundar Dorai-Raj
Myriam, Here's a simple script that lists the pch symbols: plot(x=0,type="n",xlim=c(0,1),ylim=c(0,1)) for(i in 1:100) { j = i - 1 x = j%%10/10 y = j%/%10/10 cat("(",x,",",y,",",i,")\n") points(x,y,pch=i) } No arrow that I see. Look up ?arrows instead. > version _ platform i386

[R] easy graphics question

2003-01-04 Thread Myriam Abramson
What's the pch code for drawing an arrow in a plot? myriam __ [EMAIL PROTECTED] mailing list http://www.stat.math.ethz.ch/mailman/listinfo/r-help

Re: [R] factor analysis (pca): how to get the 'communal

2003-01-04 Thread bmagill
On 4 Jan 2003 at 12:51, Wolfgang Lindner wrote: > Please excuse me, if the following questions are *too* off-topic, but I found it > interesting. In inspecting your code I came across an R feature, I could not > find in the online manuals: > > Q1. Looking at the left-handside in your function

Re: [R] factor analysis (pca): how to get the 'communalities'?

2003-01-04 Thread bmagill
On 4 Jan 2003 at 12:51, Wolfgang Lindner wrote: > Please excuse me, if the following questions are *too* off-topic, but I found it > interesting. In inspecting your code I came across an R feature, I could not > find in the online manuals: > > Q1. Looking at the left-handside in your function

Re: [R] factor analysis (pca): how to get the 'communalities'?

2003-01-04 Thread Uwe Ligges
Wolfgang Lindner wrote: > > Brett Magill schrieb: > | If interested, on my web site I have code to do factor analysis by PC. Does > | exactly as below, but a nice wrapper to print methods, rotations, sorting, and > | other conveniences. > | > | home.earthlink.net/~bmagill/MyMisc.html > | > | Th

Re: [R] factor analysis (pca): how to get the 'communalities'?

2003-01-04 Thread Wolfgang Lindner
Brett Magill schrieb: | If interested, on my web site I have code to do factor analysis by PC. Does | exactly as below, but a nice wrapper to print methods, rotations, sorting, and | other conveniences. | | home.earthlink.net/~bmagill/MyMisc.html | | The relevant code snipets are "prinfact", "p