Displaying 20 results from an estimated 1100 matches similar to: "Summary: 'pausing' in R (fwd)"
2000 Jun 22
1
'pausing' in R
I have this 'odd' problem; I need to let R pause, for a given time, before
starting next iteration in a loop. I'm using the following to do this
task, but feel a little bit guilty because I'm using as much CPU time as I
can get while pausing:
while(keepGoing) {
t.end <- proc.time()[3] + 5 ## the time this loop should end at
[block of R commands]
while(proc.time()[3]
2002 Sep 18
1
problem with make fullcheck on Sparc Solaris 8
I have been trying out R-1.6.0 tarballs (2002-9-10 and 2002-9-17) on:
arch sparc
os solaris2.8
system sparc, solaris2.8
status beta
major 1
minor 6.0
year 2002
month 09
day 17
language R
As you see form above, R-1.6.0 compiles fine and works. However, when I
"make fullcheck" I get the following error:
running code in 'tools-Ex.R' ... OK
2002 Sep 20
0
problem with make on sparc solaris 8 ( R-1.6.0beta_2002-09-18.tar.gz)
This is something that I have not seen in earlier beta versions of 1.6.0:
.
.
.
ts.plot text html latex example
ts.union text html latex example
tsSmooth text html latex
tsdiag text html latex example
R_LIBS= ../../../bin/R CMD INSTALL
ERROR: no packages
2001 Nov 26
2
R not giving memory back to system?
This might be because I didn't get it right, but; I thought R would
release memory back to the system as (big) objects get removed?
Here is my platform (with 1Gb of RAM):
platform sparc-sun-solaris2.8
arch sparc
os solaris2.8
system sparc, solaris2.8
status
major 1
minor 3.1
year 2001
month 08
day 31
language R
A little example:
Start a new section of R, with
2002 Nov 27
1
problem with attr()
I got this wired behaviour of the attr() function using R-1.6.1 on both
linux redhat 7.3 (i386) and Solaris 8 (Sparc):
> tmp <- list(id=1)
>
> attr(tmp,"n.ch") <- 2
> attr(tmp,"n") <- 1
> tmp
$id
[1] 1
attr(,"n.ch")
[1] 2
attr(,"n")
[1] 1
>
> attributes(tmp)
$names
[1] "id"
$n.ch
[1] 2
$n
[1] 1
>
1999 Oct 07
1
Xgobi
I have been trying to get Xgobi to work with the function xgobi( ), but
I keep on getting the message ""Xgobi requires a filename or some data
from stdin" in the DOS-shell. My Xgobi.bat file is :
@echo off
PATH=c:\windows\
set DISPLAY=195.23.18.11:0.0
set XGOBIDIR=c:/Xgobi3
c:\Xgobi3\xgobi.exe
In R I get:
> xgobi(D1)
C:\RW0642/library/xgobi/scripts/xgobi.bat -vtitle
1999 Nov 09
0
Xgobi for windows NT
Dear R-Help,
Has anyone gotten Xgobi to work in conjunction with R on a windows NT
platform? About a month ago there was a thread in which Peter Ho gave a set
of instructions on how to do it on windows 95. These instructions worked
perfectly when I tried to follow them on a windows 95 pc, but didn't when
it came to the NT pc on my desk. I'd be very grateful for a set of
instructions of
1999 Oct 07
0
Xgobi under Windows
Hi,
Firstly, I would like to thank everyone who had replied to my earlier
question of using Xgobi with R under windows. After a little messing around
with the xgobi.bat file, I can now export data from R into Xgobi running on
the free MIX X server.
In summary here is the procedure to make Xgobi work under windows for R:
1) Download the Xgobi for windows executables from Brian Ripley's
2001 Aug 15
1
Help with XGobi.
Hi,
I followed the following sequence of commands after installing 'XGobi':
>library(xgobi);
>data(ToothGrowth);
>xgobi(ToothGrowth);
I got the following warning message:
C:/R13 1.0/rw1030/library/xgobi/scripts/xgobi.bat -vtitle 'ToothGrowth' -std mmx
C:/DOCUME~1/h1452992/LOCALS 1/Temp/xgobi-TthGr5705
Warning message:
argument `pkg' is deprecated. Use
2002 Apr 12
1
xgobi
Hi,
Just started with exploring R. Nice ! (for many years using Splus).
I tried to install and activate the package xgobi.
- first download of xgobi.zip
- then the R-command to install:
install.packages('N:\\d024\\xgobi.zip',CRAN=NULL)
- finally the command to attach the library:
library(xgobi)
Up to now, everything seemed to work. Also the help. No warnings that
the
2013 Sep 17
8
[Bug 69465] New: Kernel freeze with NVA3 kernel 3.11.1 / PGRAPH][0000:01:00.0] PGRAPH TLB flush idle timeout fail
https://bugs.freedesktop.org/show_bug.cgi?id=69465
Priority: medium
Bug ID: 69465
Assignee: nouveau at lists.freedesktop.org
Summary: Kernel freeze with NVA3 kernel 3.11.1 /
PGRAPH][0000:01:00.0] PGRAPH TLB flush idle timeout
fail
QA Contact: xorg-team at lists.x.org
Severity: critical
2002 Jul 24
2
No subject
Hi, I am trying to use xgobi with R on a windows XP machine. I downloaded the package, which seems to have worked and started on the tutorial supplied. The command
data(laser)
works fine
but the command
xgobi(laser)
returns
C:/PROGRA~1/R/rw1051/library/xgobi/scripts/xgobi.bat -vtitle 'laser' -std mmx C:/DOCUME~1/Adam/LOCALS~1/Temp/xgobi-laser19169
>
with nothing
2004 Apr 14
2
attaching data.frame/list within a function
I'm trying to find a good way of attaching a list within a function such
that the attached variables (the list's members) precede the global
environment (.GlobalEnv) in the search list. Here is a non-working example
using attach(), which hopefully explains better what I'm trying to do:
> foo <- function(x=0, input=list(a=10)) {
+ attach(input)
+ on.exit(detach(input))
+
2001 Nov 20
0
Summary: non-negative least squares
Thank you Brian Ripley, Gardar Johannesson, and Marcel Wolbers for your
prompt
and friendly help! I will share any further learnings as I move through
these suggestions. -Bob Abugov
Brian Ripley wrote:
I just use optim() on the sum of squares with non-negativity constraints.
That did not exist in 1999.
Gardar Johannesson wrote:
You can always just use the quadratic programing library in R
2007 Jan 26
1
Question about the xgobi package
Hi,
When I tried an example of the xgobi function, I got the following error. Could someone explain to me
what is wrong ? Thanks a lot.
xgobi(crabs,colors=c("SkyBlue","SlateBlue","Orange","Red")[rep(1:4,each=50)])
c:/PROGRA~1/R/R-23~1.1/library/xgobi/scripts/xgobi.bat -vtitle 'crabs' -std mmx
2000 Apr 17
1
xgobi
I can't ssem to get the the examples running. Can anyone offer a
solution?
Thanks in advance, and this what happens.
> data(laser)
> xgobi(laser)
xgobi -title 'laser' -std mmx /tmp/xgobi-laserR7316S41c6 &
> Neither the file /tmp/xgobi-laserR7316S41c6 nor /tmp/xgobi-laserR7316S41c6.dat exists
-------------- next part --------------
A non-text attachment was scrubbed...
2007 Jan 31
2
Patch to fix the 255 status code problem
Hi,
Currently using openssh-4.5p1 on Solaris 8 in conjunction with Oracle 8i
dataguard. Is there a patch available to prevent ssh returning status
code 255 for a successful execution of a remote connection/command.
Many Thanks,
Tim Mann
2011 Mar 10
1
Problems with upscmd ACCESS-DENIED
I'm trying to execute some commands on my ups, but I keep getting ERR
ACCESS-DENIED
upscmd -l sinus
Instant commands supported on UPS [sinus]:
beeper.toggle - Toggle the UPS beeper
load.off - Turn off the load immediately
load.on - Turn on the load immediately
shutdown.return - Turn off the load and return when power is back
shutdown.stayoff - Turn off the load and remain off
shutdown.stop -
2001 Dec 20
1
optimizing R-1.4.0 build on Solaris; a show-and-tell storry
This is a little success story about the benefits of changing
the defaults in config.site when I was building R-1.4.0 for Solaris
(on a Sun Sparc that I'm currently using).
For previous versions of R, I had just used the default config.site and
not given it any thought. Since the Sun machine that I'm using
is not getting any faster, I decided I would give config.site a look
when building
2000 Apr 11
2
xgobi interface
i just installed the xgobi interrface,
and this is what i get
when i try to run the example
things don't work
> xgobi(laser)
xgobi -title 'laser' -std mmx -dev 2 /tmp/unixR3e07S15fb &
> Neither the file 2 nor 2.dat exists
what am i doing wrong?
p.s.: xgobi is installed and works
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help