Displaying 20 results from an estimated 500 matches similar to: "Dead link in Nile help documentation (PR#14079)"
2009 Aug 07
1
Bug in nlm, found using sem; failure in several flavors (PR#13883)
This message is in MIME format. The first part should be readable text,
while the remaining parts are likely unreadable without MIME-aware tools.
--1660387551-150661043-1249684349=:2997
Content-Type: TEXT/PLAIN; charset=iso-8859-1; format=flowed
Content-Transfer-Encoding: QUOTED-PRINTABLE
Hi Jeff,
=09As mentioned in my message, I *did* replicate on another platform.=20
One platform was
2008 Jan 26
2
Error: C stack usage is too close to the limit
Lately R has been behaving strange on my Linux (Ubuntu 7.10) machine,
with occasional segfaults. Today something else and reproducible
happened:
If I type the code below (meant for calibrating data), I get the error
message that "the C stack usage is too close to the limit".
calcurve <- cbind(1:2e4, 1:2e4, 1:2e3); #dummy curve, real one is more complex
caldist <-
2004 Oct 12
1
KalmanLike: missing exogenous factor?
>From the help document on KalmanLike, KalmanRun, etc.,
I see the linear Gaussian state space model is
a <- T a + R e
y = Z' a + eta
following the book of Durbin and Koopman.
In practice, it is useful to run Kalman
filtering/smoothing/forecasting with exogenous factor:
a <- T a + L b + R e
y = Z' a + M b + eta
where b is some known vector (a function of time).
Some other
2009 Aug 07
0
Bug in nlm, found using sem; failure in several flavors (PR#13882)
Adam,
It seems that your attachment didn't make it through.
That aside, my experience with strange errors like those (random type
not implemented ones) has been that you may be looking at a memory
problem on you machine. Given that you can't replicate on another
platform (and the .csv file didn't come through), I would think it
wise to start there.
My 2c. And I love bacon too :)
2003 Feb 20
0
Fwd: West Nile Virus < Anna Kournikova Virus, get protected. (PR#2563)
UNSUBSCRIBE AT THE BOTTOM
-------------------------------------------------------
Dear Subscriber/Member,
You don't need to spend hundreds of dollars on Norton
SystemWorks 2003! You can get the exact
same thing from us!
Norton SystemWorks 2003 is the most technologically
advanced method of AntiVirus and Computer Stability set
of programs ever to be offered at a public level.
Get it today
2005 Feb 24
0
KalmanXXXX and deJong-Penzer statistic?
A question about: Kalman in R, time series and
deJong-Penzer statistic - how to compute it using
available artefacts of KalmanXXXXX?
Background. in the paper
http://www.lse.ac.uk/collections/statistics/documents/researchreport34.pdf
'Diagnosing Shocks in TIme Series', de Jong and Penzer
construct a statistic (tau) which can be used to
locate potential shocks. [p15, Theorem 6.1 and
2010 Feb 04
1
Changing fonts of axis labels in Histogram() function
Dear All
I am using the histogram() function to plot two subsets from my data on the
same output display, i.e. there are two histogram plots
My code is:
histogram( ~ Age | Date, layout = c(1, 2),
xlab = "Age (years)",
strip = FALSE, strip.left = TRUE, col = "black",
border = "white", cex.axis = 1.1, family = "serif", cex.lab =
2017 Sep 01
0
I have corrected a dead link in the treering documentation
Martin Maechler writes:
> There may be one small problem: IIUC, the wayback machine is a
> +- private endeavor and really great and phantastic but it does
> need (US? tax deductible) donations, https://archive.org/donate/,
> to continue thriving.
> This makes me hesitate a bit to link to it within the "base R"
> documentation. But that may be wrong -- and I should
2006 Dec 11
2
FW: R
Hi Ricky / AJ
Progress of sorts. I got passed the last problem by looking at the makefiles
but run in to the next one, see below.
It has created files in /contrib/R-2.4.0. there is an " R " under
/contrib/R-2.4.0/bin/R.
Running it gives :-
/contrib/R-2.4.0/bin/R
R version 2.4.0 (2006-10-03)
Copyright (C) 2006 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
R is
2010 Feb 22
1
grid unit bug? (PR#14220)
The following seems to me to be at least a perverse trap, if not an =
outright
bug:
> is.numeric(unit(1,"npc"))
[1] TRUE
> is.numeric(1*unit(1,"npc"))
[1] FALSE
> is.numeric(unit(0,"npc") +unit(1,"npc"))
[1] FALSE
...etc.
i.e. is.numeric() appears to be TRUE for class "unit" but false for =
class
("unit.arithmetic"
2006 Oct 13
1
HP UX
I have a user who is currently running R on a desktop system which takes 3
days to run.
We have an Itanium 2 Cluster running HP UX. My system manager has tried to
install R and has sent the following message
INSTALL file says do
./configure
make
./configure fails with ( tail end of output
checking for main in -ltermcap... no checking for main in -ltermlib... no
checking
2003 Mar 14
2
R "FinMetrics" Package Available?
Hello List,
I've done some cursory searching but (so far) have struck out. Does
anyone know if the R version of the S+ FinMetrics package is available?
Best,
Bill Vedder
2008 Apr 28
2
X11 window title setting in X11() Device (PR#11325)
--=-=-=
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
Hi,
I think I have found a very little bug in the new version of the X11()
device in R 2.7.0, more precisely in the devX11.c file.
The problem is that when you open a new window with X11(), the title
of the window (the WM_NAME property) is not immediately set. It seems
that the window is created, then it
2005 Mar 09
1
compile error
king all in vorbisfile
make[2]: Entering directory `/home/ronan/libvorbis-1.0.1/doc/vorbisfile'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/ronan/libvorbis-1.0.1/doc/vorbisfile'
Making all in vorbisenc
make[2]: Entering directory `/home/ronan/libvorbis-1.0.1/doc/vorbisenc'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory
2007 Mar 06
1
expm()
Can the expm function be used to calculate the exponential of a matrix where
the matrix is multiplied by a vector in a data frame?
For example
for (i in 1:length(y)){
expmN<-expm(Q*y[i])
Q<-Matrix(c(1, 2, 3, 4), 2, 2)
return(expmN)
}
Sorry I am new to R and I have been finding it difficult to get information
on calculating Matrix exponentials in R.
Many thanks in
2008 Feb 01
1
Mixed models
Hello Folks,
I'm after some help regarding mixed models.
Basically I have sampled a number of different animals at 10 independent sites and am trying to create a mixed model to account for the variation between sites my current model looks like this:
mm<-glmm.admb(Hep~Sex+Mass, random=~Mouse, group=Location, data=alan, family="binomial", link="logit")
I numbered each
2010 Jun 08
1
Getting started
Hi,)
I am just getting started with R but have hit an early snag. I am working through Crawley (2008) The R Book and on page 6, 'Significance Stars', I am trying to enter the commands given. However, 'Gain.txt' does not seem to have been downloaded when I downloaded the R programme.
I have searched for it in case it put it somewhere other than 'temp' but I cannot find it.
2004 Jul 16
3
rd2dvi bug on windoze?
hi,
can anyone confirm the following problem? when i do
dos> rcmd rd2dvi --pdf my-package-name
i get
dos> Can't open perl script "c:\PROGRA~1\r\rw1091/bin/rd2dvi": No such file or directory
might the problem be in (double back slashes rather than forward slashes)
R-1.9.1\src\gnuwin32\front-ends\rcmdfn.c(251): strcat(cmd, RHome); strcat(cmd, "/bin/Rd2dvi.sh");
2017 Sep 01
2
I have corrected a dead link in the treering documentation
>>>>> Thomas Levine <_ at thomaslevine.com>
>>>>> on Fri, 28 Jul 2017 18:53:16 +0000 writes:
> The attached patch corrects a dead link in the treering
> documentation. The URL in the manual [1] refers to a
> personal home page belonging to Christine Hallman (user
> "hallman") on the website of the University of Arizona
2008 Aug 22
1
Different results between v2.6.1 and 2.7.1 (PR#12579)
Hello~
When I use R2.6.1, the following work correctly.
par(mar=3Dc(4.2,3.1,0.5,0.5), oma=3Dc(2,2,2,2))
boxplot(count ~ spray, col =3D "lightgray")
box("inner", lty=3D"dotted", col=3D"red")
box("outer", lty=3D"solid", col=3D"green")
=20
But when I use R2.7.1, the outer region seems too large.
I don=A1=A6t know what