search for: indexnum

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

Did you mean: indexnumr
2007 Dec 06
0
alternatives to latex() or xtable()
...a list of grouping vectors, just like you would pass to -by-, but with sensible names for each vector if(!is.list(indices)) { stop("indices needs to be a list") } # Create a selector variable from the indices given as a list if(length(indices) > 1) { for(indexnum in length(indices):1) { groups=paste(groups,indices[[indexnum]],sep="") } } if(length(indices)==1) { groups=indices[[1]] } first=!duplicated(groups) # Initialize data frame with grouping variables (indices) bynames=dimnames(by(datavec,i...
2005 Jul 10
5
Indices and totals
...rg/ogg-tagging.html and http://www.vorbis.com/ot/20030303.html#id2726753 about the goals and non-goals of vorbis comments, but I'm still unsure: 1) Is it by purpose to forget about CDA's index feature because it's so rarely used or did nobody here ever thought about it? -> Add an INDEXNUMER field? 2) If "Vorbis comments are the equivalent of a quick note scribbled on the bottom of a CDR", it would be nice to know the total number of items in a series to be shure to have all parts together (at least I note the total number of disks on the bottom of a CDR). So what about...
2010 Apr 05
1
Deleting many list elements in one time
Hi guys, here is a simple thing I want to do but it doesn't work: I have a vector of the element indexes that I want to delete called index so when I write myList[[index]] <- NULL to delete these elements here is what I get: Error in myList[[index]] <- NULL : more elements supplied than there are to replace Isn't it possible to delete multiple elements? ----- Anna Lippel --
2007 Apr 02
0
Object problems with Generic and rematchDefinition
...vector(object at env$MSMSrt[i]) preMZ<-as.vector(object at env$MSMSpremz[i]) preZ<-as.vector(object at env$MSMSpreZ[i]) } decide<-decideBest(met.xml, MSMSpeaks, cost, ppm) if(decide$levenshtein<5){ print(preMZ) temp.values<-c(met.xml[decide$indexNum,1], decide$levenshtein, preMZ, preZ,rtMSpeaks, paste(MSMSpeaks, collapse=":")) values<-rbind(values,temp.values) } #else cat(".") ? } return(values) write.csv(values, file="xcms.tsv", col.names=NA, sep="\t") }) --...