Displaying 6 results from an estimated 6 matches for "titmouse2".
Did you mean:
titmouse
2006 Jul 12
2
Error install rgl package on linux
Dear all,
I tried to install rgl package on my linux machine fc5, I got an error.
Here I run R as user,
$ R
> options(repos=c(CRAN="http://cran.at.r-project.org/"))
> install.packages("rgl", lib="/home/subianto/local/lib/R/library/site-packages", dependencies=TRUE)
trying URL 'http://cran.at.r-project.org/src/contrib/rgl_0.67-2.tar.gz'
Content type
2007 Oct 27
1
(PR#10379) Re: x11(....) kills R without DISPLAY
...to start device X11
> In addition: Warning message:
> In x11() : unable to open connection to X11 display ''
> > q()
> Save workspace image? [y/n/c]: n
> --------------------------------------------------
>
You need x11() with a valid display to trigger the bug:
[pd at titmouse2 BUILD]$ ssh -Y 192.168.1.10
pd at 192.168.1.10's password:
Last login: Sat Oct 27 02:40:16 2007 from 192.168.1.11
[pd at janus ~]$ echo $DISPLAY
localhost:10.0
[pd at janus ~]$ DISPLAY=3D R -q
> x11("localhost:10.0")
Error: Couldn't find per display information
[pd at janus ~]...
2008 Oct 20
1
Wrong behavior of lines.survfit for conf.int="only" (PR#13180)
I downloaded the source for survival and I think I found the bug. I have not tried to build the package with this change to test it, but just defining the function with this change seems to work.
The code
if (conf.int=='only') {
conf.int <- TRUE
plot.surv<- TRUE
}
Should be
if (conf.int=='only') {
conf.int <- TRUE
plot.surv<- FALSE
}
2007 Oct 29
1
(PR#10379) Re: x11(....) kills R without DISPLAY
Hin-Tak Leung wrote:
> Peter Dalgaard wrote:
> <snipped>
>> You need x11() with a valid display to trigger the bug:
>>
>> [pd at titmouse2 BUILD]$ ssh -Y 192.168.1.10
>> pd at 192.168.1.10's password:
>> Last login: Sat Oct 27 02:40:16 2007 from 192.168.1.11
>> [pd at janus ~]$ echo $DISPLAY
>> localhost:10.0
>> [pd at janus ~]$ DISPLAY=3D R -q
>> > x11("localhost:10.0")
>> E...
2006 Oct 03
3
how do I tell configure where to find Java?
Dear R-help,
I'm trying to build R-2.4.0 on our Opteron-based Scyld cluster. The system
has gcj (the GNU Java compiler, part of GCC) stuff in /usr/bin. When I
installed jdk 1.5.08, the install script placed it in /usr/java (I didn't
have a choice, as the script didn't offer that option). Now when I run
configure in R-2.4.0, it finds gcj, which is not what I want to use. Is
there a
2006 Oct 03
3
how do I tell configure where to find Java? [Broadcast]
Before I do that, I would need to remove the gcj stuff that are in /usr/bin.
If I know how to remove gcj, I'd gladly do that. However, for the
particular version of the OS, the entire GCC seems to be bundled into one
rpm, and I could not remove just the gcj component. Neither do I wish to
mess with files that are part of some RPMs--- in my experience that's
invitation for trouble later.