similar to: R on Windows XP x64

Displaying 20 results from an estimated 5000 matches similar to: "R on Windows XP x64"

2006 Feb 20
2
help on dyn.load()
Hi, I used .C to call the C functions inside R. Everything works fine on the linux sever. I installed cygwin on my windows xp x64 platform and used rcmd shlib xxx.c to compile. Everything works fine till now and xxx.dll is generated. But when I use dyn.load("xxx.dll") in R, it will open another R window and the original R window becomes "Not responding", nothing loaded in
2014 Oct 27
1
[RFC PATCH 0/2] virtio-mmio: add irqfd support for vhost-net based on virtio-mmio
On 2014/10/26 19:52, Michael S. Tsirkin wrote: > On Sat, Oct 25, 2014 at 04:24:52PM +0800, john.liuli wrote: >> From: Li Liu <john.liuli at huawei.com> >> >> This set of patches try to implemet irqfd support of vhost-net >> based on virtio-mmio. >> >> I had posted a mail to talking about the status of vhost-net >> on kvm-arm refer to
2014 Oct 27
1
[RFC PATCH 0/2] virtio-mmio: add irqfd support for vhost-net based on virtio-mmio
On 2014/10/26 19:52, Michael S. Tsirkin wrote: > On Sat, Oct 25, 2014 at 04:24:52PM +0800, john.liuli wrote: >> From: Li Liu <john.liuli at huawei.com> >> >> This set of patches try to implemet irqfd support of vhost-net >> based on virtio-mmio. >> >> I had posted a mail to talking about the status of vhost-net >> on kvm-arm refer to
2007 Dec 07
1
low level plotting question on R
Dear List, I am trying to modify the xlab and ylab for a current figure that was plotted by a package, I searched through the low level plotting command and they do not seem to contain how to do this (the only way is to use xlab, ylab as arguments in "plot" command, which I can not do since the plot is plotted using some other package, not by my own script). Is there any command for
2015 Nov 16
2
[PATCH] drm/nouveau: Fix pre-nv50 pageflip events
On Mon, Nov 02, 2015 at 04:45:00PM +0900, Michel Dänzer wrote: > On 31.10.2015 06:55, Daniel Vetter wrote: > > Apparently pre-nv50 pageflip events happen before the actual vblank > > period. Therefore that functionality got semi-disabled in > > > > commit af4870e406126b7ac0ae7c7ce5751f25ebe60f28 > > Author: Mario Kleiner <mario.kleiner.de at gmail.com> >
2006 Apr 27
1
scope of variable/object ?
Hi, I must be missing something here...Essentially, a short piece of code works if it's standalone, but doesn't work if it's divided into two functions. The code that works is: ################### WORKS ############### library(pamr) set.seed(120) x <- matrix(rnorm(1000*20),ncol=20) y <- sample(c(1:4),size=20,replace=TRUE) mydata <- list(x=x,y=y)
2003 Feb 28
1
Concerning the clustering tree
Dear Stuff, I am trying to enjoy "PAM", but I could not recognize which sample is in which branches in the clustering tree because of too many samples and size limitation for my monitor. I mean, I did unsupervised clustering with "PAM" ( data2$newy<-pamr.makeclasses(data2) ) with 275 primary samples, but samples were piled up at the point of each branch, so I cannot
2014 Aug 08
2
Looking for new maintainer of orphans R2HTML SemiPar cghseg hexbin lgtdl monreg muhaz operators pamr
Dear maintainers and R-devel, Several orphaned CRAN packages are about to be archived due to outstanding QC problems, but have CRAN and BioC packages depending on them which would be broken by the archival (and hence need archiving alongside). Therefore we are looking for new maintainers taking over maintainership for one or more of the following packages: R2HTML SemiPar cghseg hexbin lgtdl
2015 Dec 01
2
[PATCH] drm/nouveau: Fix pre-nv50 pageflip events
On Tue, Dec 01, 2015 at 04:08:16PM +0100, poma wrote: > On Mon, Nov 16, 2015 at 4:11 PM, Daniel Vetter <daniel at ffwll.ch> wrote: > > On Mon, Nov 02, 2015 at 04:45:00PM +0900, Michel Dänzer wrote: > >> On 31.10.2015 06:55, Daniel Vetter wrote: > >> > Apparently pre-nv50 pageflip events happen before the actual vblank > >> > period. Therefore that
2006 Nov 08
1
Making Solaris 10 x86/x64 build of R available?
Hi Folks, I've been working on a 32bit build of R on Solaris 10 x64. What are the steps for validate a build beyond make check? Once I am ready to contribute a binary build / HowTo doc, who should I contact? Thanks, David
2014 Oct 07
1
S4 Method Dispatch for Class Defined as Attribute
Hello, I am writing an interface to some functions from the CRAN package pamr, which is poorly written. I have a S4 method I declared with setMethod. I'd like to provide a signature of "pamrtrained" which is the class of object that training creates. The last two lines of code of pamr.train are : class(junk) = "pamrtrained" junk How can I dispatch on these kinds
2005 Feb 24
5
mythtv on centos
Hi, Anyone out there has any luck on getting mythv or freevo to work on centos 3. I am planning to setup mine pretty soon. Thanks,
2017 May 05
1
moving drives containing bricks from one server to another
Hi, I have a gluster volume with bricks spread over several physical drives. I now want to upgrade my server to a new system and plan to move the drives from the old server to the new server, with a different host name and IP address. Can I shut down the gluster volume on the old server, move and install the physical drives containing the bricks to the new server, and then create a new gluster
2017 Jul 18
1
moving drives containing bricks from one server to another
hi, I did not see a reply to my problem. Let me ask it in a different way... If I have bricks from a previous glusterfs volume and that volume is now gone because of the old machine was replaced, now I tried to create a new volume and add the old bricks to the new volume with the "force" opinion to "volume create". The old data files are still in the bricks but when I mount
2014 Oct 27
0
[RFC PATCH 0/2] virtio-mmio: add irqfd support for vhost-net based on virtio-mmio
On Mon, Oct 27, 2014 at 05:19:23PM +0800, Li Liu wrote: > > > On 2014/10/26 19:52, Michael S. Tsirkin wrote: > > On Sat, Oct 25, 2014 at 04:24:52PM +0800, john.liuli wrote: > >> From: Li Liu <john.liuli at huawei.com> > >> > >> This set of patches try to implemet irqfd support of vhost-net > >> based on virtio-mmio. > >> >
2005 Nov 02
2
readline() and Rterm in Windows
I'm running an R script in Rterm and would like the user to be prompted for input as in: id <- readline("Please enter ID: ") myfunction(id) . . . etc. This works when I run one line at a time in RGui, but not when I try to run the script in Rterm (I'm working with R 2.2.0 in Windows Server 2003). Is there any way to do this? Mikkel
2009 Jun 06
1
large numbers of observations using ME() of spdep
Dear All, We aim to remove the spatial structure of our data using Moran Eigen Vectors and spdep package . Our data has 3694 samples and 13 variables. The computer stop working after almost 4 days of processing (we found it emitting a sharp sound and with all colors on the screen. No wories, it was restared without problem!). And we are left with nothing: no result file was produced since the
2004 Jun 30
5
strange problem with oh323 loaded!
Hi, I am using asterisk CVS 2004-06-16 with oh323-0.6.3a I have a strange problem if I start asterisk with oh323 loaded /usr/sbin/asterisk -vvvvvc once I am in the console and issue "restart now" or "reload" asterisk hangs and it not stoping or restarting at all, below is the console logging when it happens, as you can see it stucks on "Destroying any remaining
2007 Apr 13
2
R on Solaris 10 x64
Hi R Developers, Greg is helping me with debugging R on Solaris 10 x64. Please let us know if you have any thoughts or tips that can help us debug this. Thanks, David ************ Using default transfer plist in vector_io: permuting About to write *** caught segfault *** address e8554000, cause 'memory not mapped' Traceback: 1: .External("do_hdf5save", call,
2001 Aug 26
1
time zone issues
>RFC822 is HISTORIC: please refer to RFC2822 instead. > >While UTC is sufficient for human beings, but not necessarily accurate >for machines, because of the leap year adjustment. TAI is the You mean leap seconds, not leap years. Since 1972, UTC == TAI modulo some number of seconds. Leap Seconds are announced officially by the IERS http://www.iers.org/iers/products/eop/leap.html