Displaying 20 results from an estimated 4000 matches similar to: "try-error in batch and interactive mode (PR#1934)"
2002 Aug 20
1
try-error in batch and interactive mode
I have a tiny R script performing two tasks, the first one of which may
contain error.
mammon(12)% cat z.R
version
options(show.error.messages = FALSE)
try(b <- log("foo")) ## task 1
1 + 2 ## task 2
Running in batch mode from a solaries machine, the second task never got
started; see below:
mammon(13)% R BATCH --vanilla -q z.R
mammon(14)% cat z.Rout
>
2002 Oct 07
3
RE: new packages: geepack and KMsurv
I downloaded geepack from your site and installed it from the zip file.
However, although it appears under my library directory, I could not load
into R.
Regards
John Sendak
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 1
minor 6.0
year 2002
month 10
2002 Sep 24
1
R_Libs in .Renviron?
Hi!
Where to set R_LIBS?
I have .Renviron with the line.
R_LIBS=/package/R/R-1.5.0/linux/lib/R/library/;/home/wolski/Rpack/
in my home directory
but cant access any library stored in the /home/wolski/Rpack/?
Eryk
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info",
2003 Apr 17
1
Simulation of recurrent events
I'd like to program a simulation of recurrent events to test few models in
R. Is there anybody who has experience of that and could give me advice?
Your help is greatly appreciated!
Regards,
--
Peggy Ramlau
ramlau at gmx.de
+493080906358
Bitte l?cheln! Fotogalerie online mit GMX ohne eigene Homepage!
2002 Oct 15
2
glm and Newey-West estimator
Dear R-users,
has anybody combined the glm function with the Newey-West estimator of
variance, similar as in Stata 7.0? I'd like to estimate corrected
standard errors within a logistic regression model, taking into account
the auto-correlated binary observations within individuals.
I use R1.5.1 on Mac OS X (10.2).
Thanks,
Christof
2002 Oct 25
1
reshape: duplicate rows to multiple cols
I have a dataframe that I'm trying to reshape, and need advice. My data:
> klam.merge[200:225,]
stream lulc x sumlength pct.lgth
200 1223030419685 92 0.25000000 9.89 2.52780586
201 1223030419686 23 0.00274154 4.73 0.05796068
202 1223030419686 41 0.75009917 4.73 15.85833341
203 1223030419686 42 2.65000000 4.73 56.02536998
204
2002 Oct 05
4
Implementation of S-Plus "nlmib" routine in R
Where can I find a package with an R implementation of the S-Plus
"nlmib" general
minimzation routine described in
Venables & Ripley's "Modern Applie Statistics with S-Plus", 3rd Ed., pp
267 - 270?
Thanks,
David Stamps
stamps.d.a at att.net
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2002 Oct 25
2
source output differs from console output
Dear R-help,
I would like to be able to run the following code sequence as a source
routine.
If I paste it into R via the clipboard it works as expected, but if I source
the code instead then the last 3 statements fail.
I've also tried writing to the file in place of the sink sequence, but that
also hits a snag. R 1.6, w98e2, dfr is a data frame containing the content
of Julian
2005 Jul 21
3
Rprof fails in combination with RMySQL
Dear R community,
I tried to optimized my R code by using Rprof. In my R code I'm using MySQL
database connections intensively. After a bunch of queries R fails with the
following error message:
Error in .Call("RS_MySQL_newConnection", drvId, con.params, groups, PACKAGE = .MySQLPkgName) :
RS-DBI driver: (could not connect mylogin@mydatabase on dbname "myDB"
2005 Apr 25
2
rebuilding anaconda for centos 4.0
Hi all:
I'm trying to rebuild the anaconda installer for Centos 4.0 (i386) to add some
RPMs and do some other things, and I've run into a problem. I've done lots of
anaconda rebuilds for Tao Linux 1.0, and I'm bringing those bits forward into
Centos 4.0. The all-knowing web hasn't turned up anything useful. It looks
like the PXE-loaded kernel unpacked and mounted the
2006 Oct 17
2
CTRL-C behaviour with RODBC on Solaris2.8
After loading the RODBC package version 1.1-7, Ctrl-C changes its
behaviour and is quitting R and returning to the (unix-)command prompt
on the solaris2.8 platform here. Here's what happened before and after
loading RODBC
> for (i in 1:10^5) rnorm(10)
^C
> library(RODBC)
> for (i in 1:10^5) rnorm(10)
^C
bash-3.00$
platform sparc-sun-solaris2.8
arch
2004 May 24
1
as.matrix.data.frame() in R 1.9.0 converts to character when it should (?) convert to numeric
Conversion of a data frame to a matrix using as.matrix() when a
column of the data frame is POSIXt and all other columns are numeric
has changed in R 1.9.0 from R 1.8.1. The new behavior issues a
warning message and converts to a character matrix. In R 1.8.1, such
an object was converted to a numeric matrix.
Here is an example.
#### R 1.9.0 ####
> foo <- data.frame(
2007 Jan 18
4
Reading contingency tables
I am trying to read an ftable using read.ftable, but I get the
following error message:
> jobSatTable <- read.ftable("http://definetti.uark.edu/~gpetris/stat5333/jobSatisfaction.dat",skip=2)
Error in seek(file, where = 0) : no applicable method for "seek"
In addition: Warning messages:
1: no non-missing arguments to max; returning -Inf
2: no non-missing arguments to
2001 Feb 23
0
cross building
I was trying to learn cross building an R pcakage for windows on my linux
machine. I picked a relatively small library gee to test. I downloaded the
cross-tools and put them in my path,
jyan at ludwig:/a3/jyan/src/R-1.2.1/src/gnuwin32$ echo $PATH
/home/jyan/cross-tools/bin:/home/jyan/cross-tools/i386-mingw32msvc/bin:
/usr/lib:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games
Following the
2003 Jul 17
1
line length limitation in ROracle
Hello everybody,
I found that queries (send by "dbExecStatement" ) with more than 4000 characters
length produces an error in ROracle (ver 0.3-3). Maybe there is a limitation of 4kB....
Is this a bug? If yes, is this problem solved in the latest version of ROracle (ver 0.5-0)?
My system information:
platform sparc-sun-solaris2.8
arch sparc
os solaris2.8
2004 Jun 23
1
problem with tilde expansion in install.packages
In R 1.9.0 on Solaris/Sparc when I run, for example,
install.packages("gregmisc", "~/R-local/lib"), instead of installing
the `gregmisc' package in the directory
/users/student/rpeng/R-local/lib the package gets installed in
/users/student/rpeng/\~/R-local/lib, so the directory \~ is created in
my home directory. This doesn't happen to me on Linux or Windows so I
2001 Nov 15
3
pdf() behavior (PR#1174)
--0__=88256B050063F04C8f9e8a93df938690918c88256B050063F04C
Content-type: text/plain; charset=us-ascii
The attached script produces "Error in plot.xy ... negative length
vectors are not allowed" when using pdf() but not when using postscript
().
platform sparc-sun-solaris2.8
arch sparc
os solaris2.8
system sparc, solaris2.8
status
major 1
minor 3.1
year 2001
month
2002 Aug 25
1
library(file) segfaults on solaris (PR#1942)
luke's demonstration of external references, at
www.stat.umn.edu/~luke/file_0.0-0.tar.gz
(accessible through the developer page) causes
a segfault on solaris 2.8 as soon as library(file)
is attempted. it runs fine on RH 7.2. the segfault
on solaris occured for R 1.5.1 and 1.6 (8-25 image)
a quick poke at gdb (which i can only get running
for R 1.6, though this bug report is for 1.5.1)
2005 Mar 22
1
Package vignette and build
Hello,
I am writing a package called 'DLM' containing a vignette.
The vignette contains a chunck with the function call 'library(DLM)'.
This worked fine with 'R CMD check DLM', but when it comes to building
the package with 'R CMD build DLM' I get the following error message:
* creating vignettes ... ERROR
Error: chunk 1
Error in library(DLM) : There is no
2002 Sep 20
1
Install with 64-bit GCC 3.2 (PR#2048)
Hi,
been trying to build R-1.5.1 for som eof our users here.
No probs with gcc-3.2 32-bit installtion, but thought we'd try it with
the 64-bit just for the crack.
Configuring thus
CC=gcc3 CFLAGS="-m64" CXX=g++3 CXXFLAGS="-m64" F77=g773 FFLAGS="-m64"
LDFLAGS="-m64 -L/usr/local/packages/gcc-3.2/lib/sparcv9" ./configure