search for: 12,14

Displaying 20 results from an estimated 47 matches for "12,14".

Did you mean: 1,14
2005 Nov 13
1
selection of missing data
...ome data that i import from excel. My colomn of the datafram are the localisations of metastasis. If there is a metatsasis there is the symbol "_". i want to exclude the row without metastasis wich represent the NA data. so, i wrote this mela is the data fram mela1=ifelse(mela[,c(11:12,14:21,23,24)]=="_",1,0) # selection of the colomn of metastasis localisation mela4=subset(mela3,Skin ==0 & s.c == 0 & Mucosa ==0 & Soft.ti ==0 & Ln.peri==0 & Ln.med==0 & Ln.abdo==0 & Lung==0 & Liver==0 & Other.Visc==0 & Bone==0 & Marrow==0 &...
2013 Oct 31
7
[PATCH] tools: ovmf debug build only if tools debug is enabled
...--- a/tools/firmware/ovmf-makefile +++ b/tools/firmware/ovmf-makefile @@ -1,3 +1,6 @@ +XEN_ROOT = $(CURDIR)/../../.. +include $(XEN_ROOT)/tools/Rules.mk + # OVMF building system is not ready yet to run in parallel. # Force it to be serial in order to exploit parallelism for neighbors. @@ -9,8 +12,14 @@ all: ovmf.bin .PHONY: ovmf.bin ovmf.bin: - OvmfPkg/build.sh -a X64 - cp Build/OvmfX64/DEBUG_GCC*/FV/OVMF.fd ovmf.bin + if [ "$(debug)" == y ]; then \ + OvmfPkg/build.sh -a X64; \ + cp Build/OvmfX64/DEBUG_GCC*/FV/OVMF.fd ovmf.bin; \ + else \ + OvmfPkg/build.sh -a X64 -b RELEAS...
2006 Oct 26
1
Adding shading to background of Time series plot
...ving the polygons to the background of a ts.plot. I've tried panel.first in the gpars(...) arguments and trellis.focus, but I get errors. Am I missing something easy here? Here is my script: ts.plot(tsdjia, tstenyield, gpars = list(xlab = " ", ylab = " ", axes=FALSE, col=c(12,14))) mtext("Time", side=1, line=3, cex = 0.75, font = 1) mtext("Yield", side=4, line=1, cex = 0.75, font = 1) mtext("Dow Jones Level", side=2, line=2, cex = 0.7, font = 1) polygon(cord.x2,cord.y1,col = "gray85") polygon(cord.x3,cord.y1,col = "gray85&qu...
2019 Dec 18
1
[PATCH] docs: exclude dummy.c sources
...-E '.*/errnostring\.' | \ grep -v -E '.*-gperf\.' | \ + grep -v -E '/dummy.c$$' | \ LC_ALL=C sort -u > $@-t mv $@-t $@ diff --git a/docs/C_SOURCE_FILES b/docs/C_SOURCE_FILES index c2d1c3465..c9fc3533e 100644 --- a/docs/C_SOURCE_FILES +++ b/docs/C_SOURCE_FILES @@ -12,21 +12,14 @@ cat/ls.c cat/tail.c common/edit/file-edit.c common/edit/file-edit.h -common/mlcustomize/dummy.c -common/mlgettext/dummy.c -common/mlpcre/dummy.c common/mlpcre/pcre-c.c common/mlprogress/progress-c.c -common/mlstdutils/dummy.c common/mltools/JSON_parser-c.c -common/mltools/dummy.c...
2006 Mar 20
1
type in daisy
...r(everalw) everparti=as.factor(everparti) endozoo=as.factor(endozoo) epizoo=as.factor(epizoo) aquat=as.factor(aquat) wind=as.factor(wind) detach(basetraits) #dissimilarities calculation library(cluster) daisybase<-daisy(basetraits,stand=FALSE,type=list(numeric=c(1,7),ordrati o=c(8,11),symm=c(12,14),asymm=c(15,40))) [[alternative HTML version deleted]]
2005 Oct 21
1
Re: [Xen-changelog] Tweak to pygrub build config detection.
On Fri, 2005-10-21 at 18:54 +0000, Xen patchbot -unstable wrote: > # HG changeset patch > # User kaf24@firebug.cl.cam.ac.uk > # Node ID 8eaaa622db81393ef0eae497090c34c04adf4212 > # Parent 3eee5653f08b01a310e0a9172a6c0149f16217df > Tweak to pygrub build config detection. > Signed-off-by: Jeremy Katz <katzj@redhat.com> Applying both patches for this is overkill.... ;) Jeremy _______________________________________________ Xen-devel mailing list Xen-devel...
2005 Jan 21
1
[PATCH] strncat appends not enough, doesnt terminate correctly
...ks scsi_id from udev/extras #include <string.h> #include <stdio.h> int main(void) { unsigned char olh[42]; memset(olh, 'A', sizeof(olh)); sprintf(olh, "abc"); fprintf(stderr, "olh: '%s'\n", olh); bar(olh, "123456789", 7); fprintf(stderr, "olh: '%s'\n", olh); return 0; } olh: 'abc' olh: 'abc1234AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA' Index: klibc/strncat.c =================================================================== RCS file: /home/cvs/klibc/klibc/k...
2011 Mar 18
1
[Patch suggestion] Adding 3rd arg to tempfile() to set extension
...pfile(pattern, tmpdir, fileext)) tempdir <- function() .Internal(tempdir()) Index: src/library/base/man/tempfile.Rd =================================================================== --- src/library/base/man/tempfile.Rd (revision 54862) +++ src/library/base/man/tempfile.Rd (working copy) @@ -12,13 +12,14 @@ names for temporary files. } \usage{ -tempfile(pattern = "file", tmpdir = tempdir()) +tempfile(pattern = "file", tmpdir = tempdir(), fileext = "") tempdir() } \arguments{ \item{pattern}{a non-empty character vector giving the initial part o...
2010 Aug 05
0
[PATCH RFC] vhost: max s/g to match qemu
...t/vhost.c | 32 ++++++++++++++++++++++++++++++-- drivers/vhost/vhost.h | 17 ++++++++--------- 2 files changed, 38 insertions(+), 11 deletions(-) diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index e519950..b21a5e5 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -123,10 +123,31 @@ static void vhost_vq_reset(struct vhost_dev *dev, vq->log_ctx = NULL; } +/* Helper to allocate iovec buffers for all vqs. */ +static long vhost_dev_alloc_iovecs(struct vhost_dev *dev) +{ + int i; + for (i = 0; i < dev->nvqs; ++i) { + dev->vqs[i].indirect = kmalloc(G...
2010 Aug 05
0
[PATCH RFC] vhost: max s/g to match qemu
...t/vhost.c | 32 ++++++++++++++++++++++++++++++-- drivers/vhost/vhost.h | 17 ++++++++--------- 2 files changed, 38 insertions(+), 11 deletions(-) diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index e519950..b21a5e5 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -123,10 +123,31 @@ static void vhost_vq_reset(struct vhost_dev *dev, vq->log_ctx = NULL; } +/* Helper to allocate iovec buffers for all vqs. */ +static long vhost_dev_alloc_iovecs(struct vhost_dev *dev) +{ + int i; + for (i = 0; i < dev->nvqs; ++i) { + dev->vqs[i].indirect = kmalloc(G...
2010 Jul 16
0
Mixed Conditional Logit with nested data
...0,0,0,1 1,6,B,0,0,0,1,0,0,1,0,1,0 1,7,A,1,1,0,0,0,0,1,1,0,0 1,7,B,0,0,1,0,0,1,0,0,0,1 1,8,A,1,0,0,1,1,0,0,0,1,0 1,8,B,0,0,1,0,0,1,0,0,0,1 1,9,A,1,0,1,0,1,0,0,1,0,0 1,9,B,0,0,0,1,0,1,0,0,1,0 1,10,A,1,1,0,0,1,0,0,0,1,0 1,10,B,0,0,0,1,0,0,1,1,0,0 1,11,A,1,0,1,0,0,1,0,1,0,0 1,11,B,0,0,0,1,1,0,0,0,0,1 1,12,A,1,1,0,0,0,1,0,1,0,0 1,12,B,0,0,1,0,0,0,1,0,1,0 1,13,A,0,0,0,1,0,0,1,0,1,0 1,13,B,1,1,0,0,0,1,0,0,0,1 1,14,A,0,0,0,1,0,0,1,0,0,1 1,14,B,1,0,1,0,1,0,0,1,0,0 1,15,A,1,1,0,0,1,0,0,0,1,0 1,15,B,0,0,0,1,0,1,0,0,0,1 1,16,A,1,1,0,0,0,0,1,1,0,0 1,16,B,0,0,1,0,0,1,0,0,1,0 1,17,A,1,0,1,0,1,0,0,0,1,0 1,17,B,...
2002 Aug 12
1
question about cloud() in lattice package
Hi all, I have been previously been using scatterplot3d package to create some graphs but unfortunately it does not allow me to rotate the plot on all three axis. The cloud() function in the lattice package does allow me to do so. When I was using scatterplot3d I was using a script (Shown Below) to calculate the mean, quartiles and range limits for all three axis and I was representing that on the
2008 Nov 30
4
simple question with table()
Dear List, my problem should be easy to fix, but I couldn't find a solution by myself... In my survey, there is a question with 14 possible answers. None of the respondents choose the 13th answer, so when I table() the results, R says: 1 2 3 4 5 6 7 8 9 10 11 12 14 31 52 7 21 40 7 8 2 28 2 2 1 17 13 is missing... anyone knows how to tell table() that there are 14 modalities in the answers? I tried with responseName =c("1","2","3","4","5","6","7","8","9","10&...
2005 Dec 13
2
Parallel build of dash still fails
Building dash in parallel still fails: GEN dash/builtins.def HOSTCC dash/mkinit HOSTCC dash/mknodes HOSTCC dash/mksignames HOSTCC dash/mksyntax dash/mksignames.c:59: warning: function declaration isn?t a prototype dash/mksignames.c:365: warning: function declaration isn?t a prototype dash/mksignames.c:386: warning: function declaration isn?t a prototype KLIBCCC
2017 Jul 04
5
about adding a column for water year
...ucture below. But the wyear column just shows one year. Could anyone help me with this problem? Thanks. DF year month day time flow 1972 1 1 1972-01-01 5 1972 1 2 1972-01-02 5.5 1972 1 3 1972-01-03 6 ... 1985 12 31 1985-12-31 6 for(i in 1972:1985){ if(DF$year==i & DF$month %in% 1:9){ DF$wyear <- i { }else{ DF$wyear < i-1 } } } [[alternative HTML version deleted]]
2010 Apr 08
3
[PATCH 00/11] (v6) virtio: console: Fixes, new way of discovering ports
Hello, This series reworks the ABI to allow port discovery (only) via the control queue and enable multiport again. In addition, it adds support for non-blocking write() support, which means no spinning. This works fine with the recent patches that are on qemu-devel. Also included is removal of hvc_remove() as removing one such console port causes other console ports (registered with hvc) to
2010 Apr 08
3
[PATCH 00/11] (v6) virtio: console: Fixes, new way of discovering ports
Hello, This series reworks the ABI to allow port discovery (only) via the control queue and enable multiport again. In addition, it adds support for non-blocking write() support, which means no spinning. This works fine with the recent patches that are on qemu-devel. Also included is removal of hvc_remove() as removing one such console port causes other console ports (registered with hvc) to
2007 Jun 06
0
[PATCH UPDATE] xen: use iret directly where possible
...rq_disable_direct; paravirt_ops.irq_enable = xen_irq_enable_direct; paravirt_ops.read_cr2 = xen_read_cr2_direct; + paravirt_ops.iret = xen_iret_direct; } } =================================================================== --- a/arch/i386/xen/xen-asm.S +++ b/arch/i386/xen/xen-asm.S @@ -12,14 +12,20 @@ */ #include <linux/linkage.h> + #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <asm/percpu.h> -#include <asm/asm-offsets.h> #include <asm/processor-flags.h> +#include <asm/segment.h> + +#include <xen/interface/xe...
2007 Jun 06
0
[PATCH UPDATE] xen: use iret directly where possible
...rq_disable_direct; paravirt_ops.irq_enable = xen_irq_enable_direct; paravirt_ops.read_cr2 = xen_read_cr2_direct; + paravirt_ops.iret = xen_iret_direct; } } =================================================================== --- a/arch/i386/xen/xen-asm.S +++ b/arch/i386/xen/xen-asm.S @@ -12,14 +12,20 @@ */ #include <linux/linkage.h> + #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <asm/percpu.h> -#include <asm/asm-offsets.h> #include <asm/processor-flags.h> +#include <asm/segment.h> + +#include <xen/interface/xe...
2007 Jun 04
1
[PATCH] xen: use iret directly where possible
...rq_disable_direct; paravirt_ops.irq_enable = xen_irq_enable_direct; paravirt_ops.read_cr2 = xen_read_cr2_direct; + paravirt_ops.iret = xen_iret_direct; } } =================================================================== --- a/arch/i386/xen/xen-asm.S +++ b/arch/i386/xen/xen-asm.S @@ -12,14 +12,20 @@ */ #include <linux/linkage.h> + #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <asm/percpu.h> -#include <asm/asm-offsets.h> #include <asm/processor-flags.h> +#include <asm/segment.h> + +#include <xen/interface/xe...