Displaying 20 results from an estimated 10000 matches similar to: "Error in parse"
1997 Oct 29
4
R-beta: new executable
I have just put up a new executable as a replacement for the one in
rseptbeta.zip
there have only been a few changes; mostly to the menu's. I am about
to start on a major overhaul including getting survival to work and
grabbing the 0.60 version once it's stable.
Please let me know about other enhancements you want....
robert
1997 Oct 29
4
R-beta: new executable
I have just put up a new executable as a replacement for the one in
rseptbeta.zip
there have only been a few changes; mostly to the menu's. I am about
to start on a major overhaul including getting survival to work and
grabbing the 0.60 version once it's stable.
Please let me know about other enhancements you want....
robert
2003 Sep 08
2
pacf lags
pacf in devel seems by default to return a different number of lags
than 1.7.1 for $pacf. I don't see any mention of this in the NEWS file,
or any change in the documentation, so I suspect it is and error,
though it may be an undocumented improvement.
(Newbie question: How is the simplest way to display a function like
pacf.default that is not exported from a namespace?)
Paul
2012 Sep 18
2
Data frame divison by another data frame with common groups and different length
Dear all,
I have two different data frames, that have two common variables: date and
sample. Here is a small extract of both of them
> head(traffic)
datet sessiont samplet buddleiat
1 07-08-2012 1 1 1
2 07-08-2012 1 1 1
3 07-08-2012 1 1 1
4 07-08-2012 1 2 3
5 07-08-2012 1 2
2007 Nov 15
3
kalman filter estimation
Hi,
Following convention below:
y(t) = Ax(t)+Bu(t)+eps(t) # observation eq
x(t) = Cx(t-1)+Du(t)+eta(t) # state eq
I modified the following routine (which I copied from: http://www.stat.pitt.edu/stoffer/tsa2/Rcode/Kall.R) to accommodate u(t), an exogenous input to the system.
for (i in 2:N){
xp[[i]]=C%*%xf[[i-1]]
Pp[[i]]=C%*%Pf[[i-1]]%*%t(C)+Q
siginv=A[[i]]%*%Pp[[i]]%*%t(A[[i]])+R
2005 Jul 06
2
Plotting confidence intervals for lme
Hello and sorry to disturb.
I'm trying to plot the confidence intervals for the fixed effects of a lme.
I want to obtain graphically, if it is possible, a bar with Estimate, upper
and lower CI for each level of the factors.
I know how to do for a lm model but for a lme one, I tried with
plot(intervals(...)) and plot(ci(...)) from the gmodels package but it
doesn't work well.
Thanks
2014 Oct 31
4
[PATCH] builder: move the gpgkey_type type from Sigchecker to Utils
No functional change, just code motion.
---
builder/builder.ml | 6 +++---
builder/list_entries.ml | 12 ++++++------
builder/list_entries.mli | 2 +-
builder/sigchecker.ml | 5 -----
builder/sigchecker.mli | 7 +------
builder/utils.ml | 5 +++++
6 files changed, 16 insertions(+), 21 deletions(-)
diff --git a/builder/builder.ml b/builder/builder.ml
index
1998 Jan 05
1
make docs
Installing 0.61 in Solaris (SunOS 5.5) I am getting the following error when I
try to make docs or make help
[28] /home/res8/gilp/R : make docs
make: Fatal error: Don't know how to make target `../src/library/*/man/*.Rd'
Current working directory /home/res8/gilp/R-versions/R-0.61/etc
Paul Gilbert
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel
1998 Jan 06
1
private libraries
My code mostly seems to be working fairly well under R 0.61 but I am still
trying to clean up the install procedures. Is the private library mechanism
working now (i.e. am I doing something wrong because it doesn't work for me) or
should I just install under $RHOME/library?
Paul Gilbert
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list --
2000 Nov 17
2
Simulation of Timeseries
Hello,
I try to simulate an ARMA-model using R, but I didn't find any function
to generate such timeseries.
In Splus there is the function arima.sim which generates AR-, MA- and
ARIMA-series. Is there any similar in R?
Best regards,
Frank Beimfohr
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2005 Jun 14
1
using forecast() in dse2 with an ARMA model having a trend component
(My apologies if this is a repeated posting. I couldn't find any trace
of my previous attempt in the archive.)
I'm having trouble with forecast() in the dse2 package. It works fine
for me on a model without a trend, but gives me NaN output for the
forecast values when using a model with a trend. An example:
# Set inputs and outputs for the ARMA model fit and test periods
2006 Sep 21
2
Exponentiate a matrix
Suppose I have a square matrix P
P <- matrix(c(.3,.7, .7, .3), ncol=2)
I know that
> P * P
Returns the element by element product, whereas
> P%*%P
Returns the matrix product.
Now, P^2 also returns the element by element product. But, is there a
slick way to write
P %*% P %*% P
Obviously, P^3 does not return the result I expect.
Thanks,
Harold
[[alternative HTML version
2010 Dec 08
1
Newbie trying to understand $ so I can understand acf function in stats
I am trying to understand the function acf
stats:::acf shows me the function
I am having trouble understanding the usage "$acf" in the following
acf <- array(.C(R_acf, as.double(x), as.integer(sampleT),
as.integer(nser), as.integer(lag.max), as.integer(type ==
"correlation"), acf = double((lag.max + 1L) * nser *
nser), NAOK =
1998 Jun 17
3
bug in functions of form "mcpar<-"
This fairly harmless looking piece of code, which worked in
0.61 (and in S-PLUS) fails in 0.62.1.
R> "mcpar<-" <- function(x,mcpar) {attr(x,"mcpar") <- mcpar; x}
R> mcpar(x) <- c(1,100,1)
Error in mcpar<-(*tmp*, value = c(1, 100, 1)) : unused argument to function
The error message gives a hint about how to work around the problem -
just replace the
1997 Dec 16
1
RedHat 5.0 Linux libc to glibc
This was posted on another list I follow and I thought it might be important if
you are not already aware of the change:
>Between Redhat 4.2 and Redhat 5.0, Redhat changed from libc version 5 to
>glibc version 2.0 as the standard C library. This arranges its include
>files differently and has resulted in MOST programs needing changes to
>compile under Redhat 5.0.
Paul Gilbert
2000 Feb 11
1
Help Help!
Hello! I have two questions.
First of all, I have a problem dealing with acf
(Autocovariance function) and need help. First I
defined a time series, x, which is a vector created by
x <- ts(rnorm(200)). So I plugged the series directly
into the acf function, acf(x) and an error message
popped up as:
Error in .C("acf", as.double(x), as.integer(sampleT),
as.integer(nser), :
2005 Jan 26
2
ASTCC Trunks
Hi all
I have asked this question before but have not got any helping input.
I'm really new to this and need some explanation about ASTCC.
So here is the question again.
In the ASTCC web admin there are Trunks, Routes, IAXFriends, SIPFriends,
Brands, Cards.
As I understand Brands is not used, Cards just makes the cards. Routed
in the dialplan and pricelist, Trunks is for ASTCC to
2002 Aug 26
3
generating time series data
To whom it may concern,
I am interested in generating data from an ARMA(p,q) process in R. I
know that there are functions in S which allow for this, but I don't
know if such functions exist in R. Do they? And if so, what are
those functions?
Thanks,
Carsten Botts
e-mail: cbotts at stat.ufl.edu
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help
1998 Feb 25
1
R-beta: Re: dse+redhat 4.2 problem
>R INSTALL dse rlibs
>Installing package `dse' ...
>libs
>gcc -g -fpic -I/usr/local/R-0.61/include -c dsefor.c -o dsefor.o
>/tmp/cca02533.i:1: numeric constant with no digits
>/tmp/cca02533.i:1: numeric constant with no digits
>...
>is there something wrong with my gcc or is there some
>option missing somewhere?
>I suspect the problem might have to do with
1998 Feb 25
1
R-beta: Re: dse+redhat 4.2 problem
>R INSTALL dse rlibs
>Installing package `dse' ...
>libs
>gcc -g -fpic -I/usr/local/R-0.61/include -c dsefor.c -o dsefor.o
>/tmp/cca02533.i:1: numeric constant with no digits
>/tmp/cca02533.i:1: numeric constant with no digits
>...
>is there something wrong with my gcc or is there some
>option missing somewhere?
>I suspect the problem might have to do with