Displaying 20 results from an estimated 10000 matches similar to: "model.matrix crashes (PR#189)"
2000 Feb 08
2
installing online help (PR#423)
When I attempt to install the online help for R.99 on Intel RH5.2, I
get the following message
Substitution loop at /usr/local/src/R/etc/Rdconvlib.pl line 1589, <rdfile> chunk 171
and it stops after a few files. Each time I rerun it, it gets a bit
further and gives a different number at the end. I commented out the
line 1589 and it works.
2000 Feb 08
2
installing online help (PR#423)
When I attempt to install the online help for R.99 on Intel RH5.2, I
get the following message
Substitution loop at /usr/local/src/R/etc/Rdconvlib.pl line 1589, <rdfile> chunk 171
and it stops after a few files. Each time I rerun it, it gets a bit
further and gives a different number at the end. I commented out the
line 1589 and it works.
1999 Nov 24
2
scan error (PR#342)
It seems to me the following should work (in fact, it comes from
someone's SPlus file). Instead, it reads the first 8 lines and then
spits out syntax errors. Using nlines=36 works. Using nmax does not.
Intel RH5.2 with R90.0. Debugging shows it must be internal. Jim
junk <- scan(file="",list(i=0,r1=0,r2=0,lull="",day=""),n=5*36)
1 3 5 no 1
2 1
1999 Dec 14
2
1.2pre17 scp Input/Output error
Under OpenSSH 1.2pre17 I can duplicate and Input/Output error for scp:
Conditions:
pc36 is a RH6.0/i386 box.
abc.co.za is a RH5.2/i386 box. (private network)
openssh 1.2 pre 17 on both boxes.
Line between them is a 128k leased line. It works between two 10baseT
machines.
If the scrollbar is active, the scp fails, if it isn't active, scp
works. Note that without the scrollbar, the file gets
1999 Nov 29
1
rbind crash (PR#351)
Well here is my (first) segmentation fault for this version (R0.90.0)
on Intel RH5.2:
x <- matrix(0,nrow=1,ncol=3)
y <- c(0.1,10,0.01)
rbind(x,y)
Jim
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the
1999 Dec 17
1
lists of functions (PR#377)
The following works:
list(function() 1, function() 2)
but this does not:
z <- list()
zz[[1]] <- function() 1
giving an "incompatible types" error.
The second procedure works with other types of objects.
Intel RH5.2 with R90.1.
Jim
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read
2000 Jan 25
1
core dump involving function closure (PR#402)
A user has crashed R90.1 on MS Windows by succesive calls to two of my
formula/function interpretors in an order that I had not foreseen. I
have checked and this also occurs with Intel RH5.2. I have distilled
the problem down to its bare bones as the following set of
instructions:
func <- function(.mu){
.ch1 <- deparse(.mu,width=500)[-1]
.fn <-
1999 Nov 16
3
Inf in expression (PR#326)
I was getting worried. 0.65 is the first version that I had not been
able to crash. Well the following gives a seg fault on Intel RH5.2
with R0.65.1:
plot(rnorm(20),xlab=expression(mu[Inf]))
You can guess what I was trying to do, as I used infty first and that
did not work. (I now know the correct formula.)
Jim
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
1999 May 24
1
sum(is.na(c(...)) -> negative number; bug or feature?
As I understand it, sum() treats a logical vectors as 1's and 0's, so
that
> is.logical(c(FALSE,TRUE,FALSE))
[1] TRUE
> sum(c(FALSE,TRUE,FALSE))
[1] 1
However, summing the results of an is.na() yields a
negative number. Eg
> is.na(c(1,NA,3))
[1] FALSE TRUE FALSE
> is.logical(is.na(c(1,NA,3)))
[1] TRUE
> sum(is.na(c(1,NA,3)))
[1] -1
(This is from R Version 0.64.0,
1998 Dec 16
2
NT domains and 1.9.18pSomething
Hi,
I'm trying to replace an NT SBS box with a RH5.2 box, and
things are proceeding quite well, save a few samba troubles.
I've found that the NT4WS (SP4) clients can log in if told
to use a samba machine as a "workgroup", but that they can
not find a domain controller if told to use "domain" logons.
(They have the registry password encryption hack installed.)
1998 Jun 18
2
R-beta: glm bug
A non-text attachment was scrubbed...
Name: not available
Type: text
Size: 997 bytes
Desc: not available
Url : https://stat.ethz.ch/pipermail/r-help/attachments/19980618/ee08ba8d/attachment.pl
2017 Mar 14
4
Rsyncing without RSH or SSH ?
People,
This doesn't seem possible - would it be possible to hack a version of
rsync to do it?
As an exercise, I want to create a VM image (or at least backup of all
the files with rsync) from a SCSI drive in an old Red Hat (NOT
Enterprise) v5.2 Linux 486 machine (circa 1999 that does have rsync on
it but it has protocol problems talking my server). The 486 has:
- an ISA Adaptec 1542
2007 Mar 21
1
KWD crashes
I got this whilst changing to the laptop theme.
It happens both with changing to laptop and starting with it enabled.
Starting program: /usr/bin/kde-window-decorator --sync --replace
[Thread debugging using libthread_db enabled]
[New Thread 46970607390640 (LWP 15227)]
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 46970607390640 (LWP 15227)]
0x00002ab82ff1365a in
1999 Apr 07
2
offsets again (PR#159)
1. Try the following in 63.3
y <- rnorm(20)
y1 <- y[2:20]
y2 <- y[1:19]
summary(glm(y1~offset(y2)))
summary(glm(y1-y2~1))
Both are the same model, but the first gives the wrong s.e.
I don't believe this was a problem in 63.2
2. Besides the strsplit buffer, there appear to be other memory
problems causing seg faults. With vsize 12M in batch, I accumulated 9
glm objects in memory,
1999 Mar 18
2
e1071 and netpbm
Having compiled and successfully installed e1071 on a previous machine
(and run under 0.62.4) I want to compile it on a new machine to run under
0.63.3 but the loader can't find netpbm - both machined are RH5.2 Linux
installations.
I have some quite old netpbm's on a CD but none more recent and I
certainly didn't install them on my old machine. I can't locate or rpm -q
or rpm
1999 Mar 18
2
e1071 and netpbm
Having compiled and successfully installed e1071 on a previous machine
(and run under 0.62.4) I want to compile it on a new machine to run under
0.63.3 but the loader can't find netpbm - both machined are RH5.2 Linux
installations.
I have some quite old netpbm's on a CD but none more recent and I
certainly didn't install them on my old machine. I can't locate or rpm -q
or rpm
1999 Apr 30
2
Graphs
I am trying to use the Windows version of R to do the following:
- Have a Delphi front-end which gets the user input
- Delphi will produce a R script, do a system call to R to
calculate the statistics.
Is there a better way? Maybe a library one can use in Delphi or
Visual C?
- How do one see a graph? A graph is plotted in a window which
IMMEDIATELY closes afterwords so that one can't
1999 Nov 07
1
Bug list summary (automatic post)
=================================================
This is an automated summary of the status of the R-bugs
repository.
Note that this may be neither complete nor perfectly
correct at any given instance: Not all bugs are reported,
and some reported bugs may have been fixed, but the
repository not yet updated.
Some bug fixes are difficult to verify because they pertain
to specific hardware or
1999 Jan 12
4
RH5.2 bundle
Hello and Happy New R
Two points:
1 Noting the existence of 0.63.2 as a tgz file on CRAN, but being careful
or lazy depending on how you want to see it, I also note that the binaries
for Redhat stop at 0.63.1 on RH 5.1.
I recently got the RH 5.2 Power Tools where I was pleased to see R 0.62.4
included, lots of libraries including V&R. This had been compiled into an
rpm - does anyone know
1999 Jan 12
4
RH5.2 bundle
Hello and Happy New R
Two points:
1 Noting the existence of 0.63.2 as a tgz file on CRAN, but being careful
or lazy depending on how you want to see it, I also note that the binaries
for Redhat stop at 0.63.1 on RH 5.1.
I recently got the RH 5.2 Power Tools where I was pleased to see R 0.62.4
included, lots of libraries including V&R. This had been compiled into an
rpm - does anyone know