On Wed, 15 Jul 2009, Duncan Murdoch wrote:
On 15/07/2009 6:00 AM, pa...@idsia.ch wrote:
I am trying to call texi2dvi on a very simple tex-file (see below) and it
fails with a memory access error. I originally tried to call it on another,
meaningful tex file with the same error occuring. I am
I am using try. I have found that sometimes errors are not caught by
try. For example, I got the following error message from code that was
wrapped in try. After the error, my R CMD BATCH aborted.
Error in assign(".target", met...@target, envir = envir) :
no function to return from, jumping
Gad Abraham wrote:
Hi,
Say I have two packages, test1 and test2, that both define the generic
method train (identical definition), and each has a specific train
method for a different S4 object (foo and bar, resp.)
I want to be able to call train(foo, x, y) and train(bar, x, y), which
doesn
I have to confess that I'm a little bit puzzled by how the
PROTECT/UNPROTECT mechanism is used in the C code of R.
Duncan, you say the problem you just fixed was an easy one.
I looked at the C code too and was able to recognize a pattern
that is indeed easy to identify as problematic:
an unprot
Hi,
Say I have two packages, test1 and test2, that both define the generic
method train (identical definition), and each has a specific train
method for a different S4 object (foo and bar, resp.)
I want to be able to call train(foo, x, y) and train(bar, x, y), which
doesn't work since test2
Well, guess what, rJava also compiles on R-devel (soon to be
R-2.10.0). I'll stick with that for my purposes. Thanks for your
suggestion. Mark
Mark W. Kimpel MD ** Neuroinformatics ** Dept. of Psychiatry
Indiana University School of Medi
On 15/07/2009 8:30 PM, murd...@stats.uwo.ca wrote:
> On 15/07/2009 8:08 PM, Hervé Pagès wrote:
>> Hi,
>>
>>> x <- c(a=10, b=20)
>>> length(x) <- 1
>>> x
>> a
>>10
>>
>> But with gctorture turned on, I get:
>>
>>> gctorture(TRUE)
>>> x <- c(a=10, b=20)
>>> length(x) <
murd...@stats.uwo.ca wrote:
On 15/07/2009 8:30 PM, murd...@stats.uwo.ca wrote:
On 15/07/2009 8:08 PM, Hervé Pagès wrote:
Hi,
> x <- c(a=10, b=20)
> length(x) <- 1
> x
a
10
But with gctorture turned on, I get:
> gctorture(TRUE)
> x <- c(a=10, b=20)
> length(x) <- 1
On 15/07/2009 8:08 PM, Hervé Pagès wrote:
> Hi,
>
>> x <- c(a=10, b=20)
>> length(x) <- 1
>> x
> a
>10
>
> But with gctorture turned on, I get:
>
>> gctorture(TRUE)
>> x <- c(a=10, b=20)
>> length(x) <- 1
>> x
> a
>"a" < ???
>
>> x <- c(a=1
Hi,
> x <- c(a=10, b=20)
> length(x) <- 1
> x
a
10
But with gctorture turned on, I get:
> gctorture(TRUE)
> x <- c(a=10, b=20)
> length(x) <- 1
> x
a
"a" < ???
> x <- c(a=10, b=20)
> length(x) <- 3
*** caught segfault ***
address (nil), cause 'unknown'
On 15/07/2009 6:00 AM, pa...@idsia.ch wrote:
I am trying to call texi2dvi on a very simple tex-file (see below) and
it fails with a memory access error. I originally tried to call it on
another, meaningful tex file with the same error occuring. I am
attaching a screenshot.
Thank you very muc
Mark,
Again,
sudo apt-get install r-cran-rjava
does what you want. We do provide these binaries for a reason. Namely, that
it can be hard to tame the system requirements. So why don't you just install
the binaries we provide?
Dirk
--
Three out of two people have difficulties with fra
On 7/15/2009 9:47 AM, Duncan Murdoch wrote:
I've just committed code that allows R to be built with support for
dynamic help pages using \Sexpr in Rd files. Define USE_NEW_HELP and
the R function tools:::.convertRdfiles will be used instead of the Perl
RdConv script, supporting \Sexpr and usin
Hi Mark,
The first thing that jumps out to me is that 2.7.1 compiles JRI, while
2.9.1 does not (for some reason, autodetect decides not to compile).
HTH,
Josh
--
http://www.fosstrading.com
On Wed, Jul 15, 2009 at 1:46 PM, Mark Kimpel wrote:
> I have been futzing around for days tying to get rJ
Full_Name: Andy Seila
Version: 2.9.1-patched
OS: Solaris 10 x86
Submission from: (NULL) (66.156.94.118)
When compiling R under a user's home directory that is mounted by the
automounter, R cannot create directories using dir.create() with
"recursive=TRUE". This causes the build to exit with an e
Sorry, My sentence that starts "The file" was truncated and should say
"The file "jni.h" is present and on my PATH, see output below"
mkimpel-debian-xps /usr/lib/jvm/java-6-sun/include: ls
classfile_constants.h jawt.h jdwpTransport.h jni.h jvmti.h linux
mkimpel-debian-xps /usr/lib/jvm/java-6-
I have been futzing around for days tying to get rJava to install on
my freshly build Debian Lenny installation. I have R-2.9.1 installed
from source in my R_HOME directory and R-2.7.1 installed via apt-get
install r-recommended. I was tried many different things, but by
accident started up R-2.7.1
Thanks for your help with this problem about dynamic linked libraries.
I thought I had it solved, but apparently not.
Below is a small piece of Pascal code that I compile into a library.
When I load the library using dyn.load R becomes very unstable.
The Mac GUI crashes in all kinds of situa
I've just committed code that allows R to be built with support for
dynamic help pages using \Sexpr in Rd files. Define USE_NEW_HELP and
the R function tools:::.convertRdfiles will be used instead of the Perl
RdConv script, supporting \Sexpr and using the new R converters.
Currently only text
Hello,
I've (by somewhat understanding serialize.c) understood how a vector
of type numeric/char/raw/logical are serialized, assuming they have no
attributes (e.g no attributes(x)=NULL).
I assumed for lists, the content of the list is written first and then
the names attribute. However nested list
Hi,
> gctorture(TRUE)
> setGeneric("foo", function(x, y) standardGeneric("foo"))
[1] "foo"
> setMethod("foo", c("ANY", "ANY"),
+ function(x, y) cat("calling foo,ANY,ANY method\n")
+ )
Error: protect(): protection stack overflow
Sorry this is something I already reported one week
21 matches
Mail list logo