search for: cf1

Displaying 6 results from an estimated 6 matches for "cf1".

Did you mean: cf
2010 Jan 26
5
Strange tick in ggplot geom_area; and ordering, again
...like to get the order of the colors in the plot the same as in the legend, and not arranged alphabetically (the factor is ordered, don't touch my order). Hadley once mentioned an undocumented aestetics "order", but I could not get it to work in the example. Dieter library(ggplot2) cf1 = structure(list(dur = c(10L, 10L, 10L, 10L, 10L, 150L, 150L, 150L, 150L, 150L), score = structure(c(3L, 1L, 4L, 5L, 2L, 3L, 1L, 4L, 5L, 2L), .Label = c("none", "weak", "moderate", "severe", "verysevere"), class = c("ordered", "factor...
2009 Jan 14
1
[LLVMdev] FP problems in different backends?
...g operand types, etc). Please, just try to compile using the attached BC file. I guess, it is related to the FP support. May be I'm testing in the wong way? What I currently do is: 1) I compile the source file on my X86 machine, using the following options: llvm-gcc -O6 -c -emit-llvm -o obj/cf1.c.bc cf1.c I get this disassembled ll file: ; ModuleID = 'cf1.c.bc' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32" target triple = "i386-pc-linux-gnu" @fl = external global floa...
2013 Jan 09
21
question
Hello, Is "Dos installer from Win98" REMOVED from Syslinux-5.00/syslinux-5.01-pre1? Prof S W Damle
2011 Mar 14
2
color under lm line
Hi, I would like to add a color under a lm line and not the plotted line. Is this possible? In the example, I do not want the area under the curve red, but rather under the llm line. x=seq(0,5,len=100) y=-(x-5)^2 llm<-lm(y~x) plot(x,y) polygon(c(x,x[length(x)]), c(y, y[1]), col='red') abline(llm) keith -- M. Keith Cox, Ph.D. Alaska NOAA Fisheries, National Marine Fisheries Service
2006 Nov 14
2
Matrix-vector multiplication without loops
Hi, I am trying to do the following computation: p <- rep(0, n) coef <- runif(K+1) U <- matrix(runif(n*(2*K+1)), n, 2*K+1) for (i in 0:K){ for (j in 0:K){ p <- p + coef[i+1]* coef[j+1] * U[,i+j+1] } } I would appreciate any suggestions on how to perform this computation efficiently without the "for" loops? Thank
2001 Jun 15
1
contrasts in lm and lme
...hich is also found at www.med.ed.ac.uk/phs/mixed. The data file was opened and initialized with > dat <- read.table("bp.dat") > names(dat) <- c("patient","visit","center","treatment","dbp","dbp1","cf","cf1") > attach(dat) > Patient <- factor(patient) > Treatment <- factor(treatment) > Center <- factor(center) > Visit <- factor(visit) > dat1 <- data.frame(Patient,Visit,Center,Treatment,dbp,dbp1) > sapply(dat1,data.class) Patient Visit Center Treatment...