search for: x1st

Displaying 4 results from an estimated 4 matches for "x1st".

Did you mean: 1st
2010 Dec 03
2
difference between linear model & scatterplot matrix
...>cpairs(dta, dta.o, panel.colors=dta.col, gap=.5, >main="Variables Ordered and Colored by Correlation") #command for linear model and summary() >a<- lm ( dmp ~ Latitude + Longitude + Year + Tot.Prod + Herbaceous.Prod.kg.ha. + Leaf.Prod + Tree.bio + Total_Density + X1st.SpecieDensity.trunk.ha.+ X2nd.SpecieDensity.trunk.ha.+ Herb_Specie_Index1 + iNDVI.JASO. + RFE.Cum.JASO., data=senegal5 ) >summary(a) Call: lm(formula = dmp ~ Latitude + Longitude + Year + Tot.Prod + Herbaceous.Prod.kg.ha. + Leaf.Prod + Tree.bio + Total_Density + X1st.SpecieDensi...
2013 Nov 28
1
Relative Cumulative Frequency of Event Occurence
...art: cumsum(E.occur)/(E.Occur) The denominator E.Occur is a fixed value, instead of a moving count. I have tried nrow(), length() but none provides a moving version of row count, as cumsum does for the "True" values, occurring so far. > dput(df.1) structure(list(Sample.Number = 1:10, X1st.Fly = c("G", "B", "B", "G", "G", "G", "B", "G", "G", "B"), X2nd.Fly = c("B", "B", "G", "B", "G", "B", "B", "G", "B...
2010 Aug 20
5
paired samples, matching rows, merge()
Hi everyone! I'm matching two samples to create one sample that have pairs of observations equal for the k1 variable. Merge() doesn't work because I dont't want to recycle the values. x <- data.frame(k1=c(1,1,2,3,3,5), k2=c(20,21,22,23,24,25)) x y <- data.frame(k1=c(1,1,2,2,3,4,5,5), k2=c(10,11,12,13,14,15,16,17)) y merge(x,y,by="k1") k1 k2.x k2.y 1 1 20
2004 Jul 23
4
Reading ASCII files
Dear all, I need to read an ASCII file with diffent length lines. This is what is contained in the file gene.txt: 1st line ID description snp_id genotype 2nd line 10003 Low rs152240 3rd line 10003 Moderate rs189011 TC 4th line 10004 Conservative rs152240 GC 5th line 10004 Bad rs154354 6th line 10013 Bad rs152240 7th line 10019 Conservative rs152240 AC etc... This is what I would like to obtain