search for: tx0

Displaying 19 results from an estimated 19 matches for "tx0".

Did you mean: tx
2000 Mar 01
1
Re: R-1.0.0 is released (PR#466)
..../../bin/R --vanilla < base-Ex.R > base-Ex.Rout make[4]: *** [base-Ex.Rout] Error 1 ... and >tail tests/Examples/base-Ex.Rout > > cut(rep(1,5),4)#-- dummy [1] (0.9995,1] (0.9995,1] (0.9995,1] (0.9995,1] (0.9995,1] Levels: (0.999,0.9995] (0.9995,1] (1,1.0005] (1.0005,1.001] > tx0 <- c(9, 4, 6, 5, 3, 10, 5, 3, 5) > x <- rep(0:8, tx0) > tx <- table(x) > all(tx == tx0) Error in all(tx == tx0) : dim<- length of dims do not match the length of object Execution halted Don't shure what I should think about it. my compiler is: >gcc --version 2.95.2...
2008 Dec 02
4
Variables inside a for
Hi! I had a database with some variables in sequence. Let me say: TX01, TX02, TX03 and TX04. But I need to run some regressions changing the variables... so: variable <- paste("TX0", 1:4, sep="") for(i in 1:4){ test[i] <- lm(variable[i] ~ INCOME, data=database) } But doesn't work... lm tries to find a variable inside database named v...
2011 Nov 08
4
Intervals in function cut
When I was studying the function cut I found this example: > x <- rep(0:8, tx0) > x [1] 0 0 0 0 0 0 0 0 0 1 1 1 1 2 2 2 2 2 2 3 3 3 3 3 4 4 4 5 5 5 5 5 5 5 5 5 5 6 [39] 6 6 6 6 7 7 7 8 8 8 8 8 > cut(x, b = 8) [1] (-0.008,0.994] (-0.008,0.994] (-0.008,0.994] (-0.008,0.994] (-0.008,0.994] [6] (-0.008,0.994] (-0.008,0.994] (-0.008,0.994] (-0.008,0.994] (0.994,2]...
2000 Mar 01
1
Re: Re: R-1.0.0 is released (PR#467)
...t; writes: > > > I've rolled up R-1.0.0.tgz a short while ago. > > > I've build R-1.0.0 on my > > >uname -a > Linux pchoel 2.2.14 #3 Mit Jan 5 08:57:39 MET 2000 i686 unknown > > box. Calling "make check" fails with .... > > all(tx == tx0) > Error in all(tx == tx0) : dim<- length of dims do not match the length of object > Execution halted > > Don't shure what I should think about it. > > my compiler is: > > >gcc --version > 2.95.2 > > R is compiled using the > > "-fPIC -O3...
2000 Mar 01
1
Re: Re: R-1.0.0 is released (PR#467)
...t; writes: > > > I've rolled up R-1.0.0.tgz a short while ago. > > > I've build R-1.0.0 on my > > >uname -a > Linux pchoel 2.2.14 #3 Mit Jan 5 08:57:39 MET 2000 i686 unknown > > box. Calling "make check" fails with .... > > all(tx == tx0) > Error in all(tx == tx0) : dim<- length of dims do not match the length of object > Execution halted > > Don't shure what I should think about it. > > my compiler is: > > >gcc --version > 2.95.2 > > R is compiled using the > > "-fPIC -O3...
2010 Nov 14
1
RCurl and cookies in POST requests
...script will retrive the same URL as before, which # will reply with ZZZ if XXX was sent. # # If XXX and ZZZ are in "cookies.txt", this should be removed # to test again (otherwise the script will find both cookies # and won't do anything). library(RCurl) site <- "http://chr.tx0.org/arch/ml/r/cookie-20101114.cgi" c_file <- "cookies.txt" no_cookie <- function() { curlHandle <- getCurlHandle(cookiefile=c_file, cookiejar=c_file) getURL(site, curl=curlHandle) rm(curlHandle) gc() } if ( file.exists(c_file) == FALSE ) { file.create(c_file) no_coo...
2000 Feb 29
7
R-1.0.0 is released
I've rolled up R-1.0.0.tgz a short while ago. You can get it from ftp://cvs.r-project.org/pub/CRAN/src/base/R-1.0.0.tgz or http://cvs.r-project.org/pub/CRAN/src/base/R-1.0.0.tgz or wait for it to be mirrored at a CRAN site near you within a day or two. It should get to the CRAN master site within a few hours. There's also a version split in three for floppies if you prefer that.
2000 Feb 29
7
R-1.0.0 is released
I've rolled up R-1.0.0.tgz a short while ago. You can get it from ftp://cvs.r-project.org/pub/CRAN/src/base/R-1.0.0.tgz or http://cvs.r-project.org/pub/CRAN/src/base/R-1.0.0.tgz or wait for it to be mirrored at a CRAN site near you within a day or two. It should get to the CRAN master site within a few hours. There's also a version split in three for floppies if you prefer that.
2010 Feb 26
5
[PATCH 0/5] renouveau: nv30/nv40 unification
This patchset applies some minor fixes to renouveau.xml and then unifies the nv30 and nv40 register definitions. nv30 and nv40 are very similar and have the same offsets for the registers they share. The major differences are: 1. Texture setup is different due to full NPOT support on nv40 2. More advanced blending/render targets on nv40 3. NV30 has fixed function registers, which NV40 lacks The
2012 Nov 27
4
[net-next rfc v7 0/3] Multiqueue virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Nov 27
4
[net-next rfc v7 0/3] Multiqueue virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 04
3
[PATCH net-next 0/3] Multiqueue support for virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 04
3
[PATCH net-next 0/3] Multiqueue support for virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2017 Apr 15
11
[PATCH RFC (resend) net-next 0/6] virtio-net: Add support for virtio-net header extensions
Curreclty virtion net header is fixed size and adding things to it is rather difficult to do. This series attempt to add the infrastructure as well as some extensions that try to resolve some deficiencies we currently have. First, vnet header only has space for 16 flags. This may not be enough in the future. The extensions will provide space for 32 possbile extension flags and 32 possible
2017 Apr 15
11
[PATCH RFC (resend) net-next 0/6] virtio-net: Add support for virtio-net header extensions
Curreclty virtion net header is fixed size and adding things to it is rather difficult to do. This series attempt to add the infrastructure as well as some extensions that try to resolve some deficiencies we currently have. First, vnet header only has space for 16 flags. This may not be enough in the future. The extensions will provide space for 32 possbile extension flags and 32 possible
2012 Dec 05
3
[PATCH net-next v2 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 05
3
[PATCH net-next v2 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version of multiqueue virtio-net driver based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Please review and comments. A protype implementation of qemu-kvm support could by found in git://github.com/jasowang/qemu-kvm-mq.git. To start a guest with two queues, you could specify the queues
2012 Dec 07
6
[PATCH net-next v3 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version (hope the final version) of multiqueue (VIRTIO_NET_F_MQ) support in virtio-net driver. All previous comments were addressed, the work were based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Performance test show the aggregate latency were increased greately but may get some regression
2012 Dec 07
6
[PATCH net-next v3 0/3] Multiqueue support in virtio-net
Hi all: This series is an update version (hope the final version) of multiqueue (VIRTIO_NET_F_MQ) support in virtio-net driver. All previous comments were addressed, the work were based on Krishna Kumar's work to let virtio-net use multiple rx/tx queues to do the packets reception and transmission. Performance test show the aggregate latency were increased greately but may get some regression