search for: norm1

Displaying 13 results from an estimated 13 matches for "norm1".

Did you mean: norm
2008 Feb 28
1
Errors melt()ing data...
Hi, I'm trying to melt() some data for subsequent cast()ing and am encoutering errors. The overall process requires a couple of casts()s and melt()s. ########Start Session 1########## ## I have the data in a (fully) melted format and can cast it fine... > norm1[1:10,] Pool SNP Sample.Name variable value 1 1 rs1045485 CA0092 Height.1 0.003488853 2 1 rs1045485 CA0142 Height.2 0.333274200 3 1 rs1045485 CO0007 Height.2 0.396250961 4 1 rs1045485 CA0047 Height.2 0.535686831 5 1 rs1045485 CO0149 Height....
2011 Sep 20
3
adding labels to x,y points
Hi, I am new to R. I have a matrix that I have assigned to the object ?colon?. > colon<-read.table("c:\\alon.txt",header=T,row.names=1) attach(colon) names(colon) The dimenstions are 2000 62. Each of the 62 columns (titled norm1, norm2, norm3, etc) has 2000 different numbers (?continuous? values) within it. I have also assigned a name for each of the 2000 rows of the dataframe with a prefix (i.e. g1 ?. g2000) using the code (not sure if I did this right): > colon<-paste("g",c(1:nrow(colon)),sep="&quo...
2009 Mar 15
0
Axes crossing at origin
...amount.r") myxdata=predict_amount(fit,myydata,uselog=TRUE) for(i in 1:length(myydata)){ lines(c(myxdata[i],myxdata[i],max(newdata)),c(min(newy),myydata[i],myydata[i]),lty=3) } y1=seq(16.95,17.25,0.003) y2=seq(16.35,16.65,0.003) x1=predict_amount(fit,y1,TRUE) x2=predict_amount(fit,y2,TRUE) norm1=normpdf(y1,17.1,0.045) norm1=min(newy)+norm1/max(norm1)*.5 norm2=normpdf(y2,16.5,0.045) norm2=min(newy)+norm2/max(norm2)*.5 lines(x1,norm1,col="#0000FF") lines(x2,norm2,col="#FF0000") normy1=normpdf(y1,17.1,0.045) normy1=normy1/max(normy1)*-.3e-10+max(newdata) normy2=normpdf(y2,...
2006 Mar 07
3
glm automation
...; 1 2 2 3 3 4 dat <- read.table("FILENAME", header=TRUE, sep="\t", na.strings="NA", dec=".", strip.white=TRUE) dataf <- read.table("FILENAME", header=FALSE, sep="\t", na.strings="NA", dec=".", strip.white=TRUE) norm1 <- glm(dataf[1,1] ~ dataf[1,2], family= normal(log), data=dat) norm2 <- glm(dataf[1,1] ~ dataf[1,2], family= normal(identity), data=dat) and so on. But glm does not work on the data unless I write ABC and EFG there... I want to automate the script for multiple files. The other problem is to...
2010 Jan 16
2
predict.glm
...ent? When I run predict with the newdata argument, I get an error message - a different one though. The second reason might be that your dataset is named df, which is defined as a function an may produce problems. Try renaming the dataset. yhat=predict(reg1,newdata=x2) x1=seq(1:100) r.norm1=rnorm(100,0,20) x1=r.norm1+x1 x2=x1*2 r.norm2=rnorm(200,0,20) x2=r.norm2+x2 reg1=glm(y1~x1,binomial) yhat=predict(reg1) ##prediction works fine yhat=predict(reg1,newdata=x2) ##gives error message because of &...
2013 Mar 28
2
hierarchical clustering with pearson's coefficient
...they use pearson's correlation for hierarchical clustering. Any idea if anything is violated in case pearson's correlation is used with Ward's linkage function? the dissimilarity of pearson's correlation can be defined as d = sqrt(1-pearsonsimilarity^2). can that be considered as norm1 distance? and thus norm2 if we square it? so that the wikipedia's statement "To apply a recursive algorithm under this objective function, the initial distance between individual objects must be (proportional to) squared Euclidean distance." is valid? Best, Pierre [[alternative HTM...
2012 Jul 05
14
[net-next RFC V5 0/5] Multiqueue virtio-net
...ec - Prodives irq affinity - Choose txq based on processor id References: - V4: https://lkml.org/lkml/2012/6/25/120 - V3: http://lwn.net/Articles/467283/ Test result: 1) 1 vm 2 vcpu 1q vs 2q, 1 - 1q, 2 - 2q, no pinning - Guest to External Host TCP STREAM sessions size throughput1 throughput2 norm1 norm2 1 64 650.55 655.61 100% 24.88 24.86 99% 2 64 1446.81 1309.44 90% 30.49 27.16 89% 4 64 1430.52 1305.59 91% 30.78 26.80 87% 8 64 1450.89 1270.82 87% 30.83 25.95 84% 1 256 1699.45 1779.58 104% 56.75 59.08 104% 2 256 4902.71 3446.59 70% 98.53 62.78 63% 4 256 4803.76 2980.76 62% 97.44 54.68 56% 8...
2012 Jul 05
14
[net-next RFC V5 0/5] Multiqueue virtio-net
...ec - Prodives irq affinity - Choose txq based on processor id References: - V4: https://lkml.org/lkml/2012/6/25/120 - V3: http://lwn.net/Articles/467283/ Test result: 1) 1 vm 2 vcpu 1q vs 2q, 1 - 1q, 2 - 2q, no pinning - Guest to External Host TCP STREAM sessions size throughput1 throughput2 norm1 norm2 1 64 650.55 655.61 100% 24.88 24.86 99% 2 64 1446.81 1309.44 90% 30.49 27.16 89% 4 64 1430.52 1305.59 91% 30.78 26.80 87% 8 64 1450.89 1270.82 87% 30.83 25.95 84% 1 256 1699.45 1779.58 104% 56.75 59.08 104% 2 256 4902.71 3446.59 70% 98.53 62.78 63% 4 256 4803.76 2980.76 62% 97.44 54.68 56% 8...
2008 Apr 04
2
predict.glm & newdata
Hi all - I'm stumped by the following mdl <- glm(resp ~ . , data = df, family=binomial, offset = ofst) WORKS yhat <- predict(mdl) WORKS yhat <- predict(mdl,newdata = df) FAILS Error in drop(X[, piv, drop = FALSE] %*% beta[piv]) : subscript out of bounds I've tried without offset, quoting binomial. The offset variable ofst IS in df. Previous postings indicate possible
2009 Jan 29
2
ANOVA in R
Hi I Have a very large dataset that I would like to conduct ANOVA tests on. Im not a very strong programmer so any help would be appreciated. the format is Identifier             A1       A2        B1      B2       C1   C2      Norm1         Norm2 1234                  1        1            NA     NA      4       3        NA               NA 4567                  2        2              4      4         8       8       9                    9 and so on I have 10 runs for 3 different doses plus the normal state. Any help greatl...
2012 Jun 25
8
[net-next RFC V4 PATCH 0/4] Multiqueue virtio-net
...r shaping, for the one that interested in this please see: http://www.mail-archive.com/kvm at vger.kernel.org/msg64111.html Detail result: Test results: smp = 2 pin vhosts and vcpus in the same node - 1 sq 2 mq(q=2) - TCP_MAERTS (Guest to external Host): sessions size throughput1 throughput2 norm1 norm2: 1 64 424.91 401.49 94% 13.20 12.35 93% 2 64 1211.06 878.31 72% 24.35 15.80 64% 4 64 1292.46 1081.78 83% 26.46 20.14 76% 8 64 1355.57 826.06 60% 27.88 15.32 54% 1 256 1489.37 1406.51 94% 46.93 43.72 93% 2 256 4936.19 2688.46 54% 100.24 46.39 46% 4 256 5251.10 2900.08 55% 107.98 50.47 46% 8 25...
2012 Jun 25
8
[net-next RFC V4 PATCH 0/4] Multiqueue virtio-net
...r shaping, for the one that interested in this please see: http://www.mail-archive.com/kvm at vger.kernel.org/msg64111.html Detail result: Test results: smp = 2 pin vhosts and vcpus in the same node - 1 sq 2 mq(q=2) - TCP_MAERTS (Guest to external Host): sessions size throughput1 throughput2 norm1 norm2: 1 64 424.91 401.49 94% 13.20 12.35 93% 2 64 1211.06 878.31 72% 24.35 15.80 64% 4 64 1292.46 1081.78 83% 26.46 20.14 76% 8 64 1355.57 826.06 60% 27.88 15.32 54% 1 256 1489.37 1406.51 94% 46.93 43.72 93% 2 256 4936.19 2688.46 54% 100.24 46.39 46% 4 256 5251.10 2900.08 55% 107.98 50.47 46% 8 25...
2006 Mar 08
0
survival
...; 1 2 2 3 3 4 dat <- read.table("FILENAME", header=TRUE, sep="\t", na.strings="NA", dec=".", strip.white=TRUE) dataf <- read.table("FILENAME", header=FALSE, sep="\t", na.strings="NA", dec=".", strip.white=TRUE) norm1 <- glm(dataf[1,1] ~ dataf[1,2], family= normal(log), data=dat) norm2 <- glm(dataf[1,1] ~ dataf[1,2], family= normal(identity), data=dat) and so on. But glm does not work on the data unless I write ABC and EFG there... I want to automate the script for multiple files. The other problem is to...