search for: cellnumber

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

Did you mean: callnumber
2005 Feb 02
3
Boxplot by factors
Dear all, I have the following data format cellnumber force 1 100 1 230 1 100 1 200 1 130 1 210 2 179 2 298 2 400 2 500 2 600 ........... I want to make a boxplot of the force according to the cellnumber. Here the cellnumber is actually a factor. It has 1, 2 two levels. How can I do that using boxplot? Thanks in advance Ming
2012 Apr 05
2
random sample from list
...="dismo"),"/ex",sep=""),pattern="grd",full.names=TRUE) mask <- raster(files[[9]]) #make point data pts<-randomPoints(mask,100) #extract the unique cell numbers within a 800km buffer of the points, remove NA cells z <- extract(mask, pts, buffer=800000,cellnumbers=T) z_nonna <- lapply(z, na.omit) ###########PROBLEM AREA########## ##If I convert this to a dataframe and find the unique "cells" values #z2<-as.data.frame(do.call(rbind,z_nonna)) #z_unique<-unique(z2[,1]) ##I can tell there there are 9763 unique "cells" values #How d...
2006 Nov 14
1
Broken Call Screening
...374 ast_bridge_call: Bridge failed on channels Local/299@default-d64b,2 and Zap/3-1 -- Hungup 'Zap/3-1' -- Local/299@default-d64b,1 answered SIP/7960A-Gary1-63f2 -- Stopped music on hold on SIP/7960A-Gary1-63f2 Dialplan: exten => 299,1,Wait(0.2) exten => 299,n,Dial(Zap/3/${CELLNUMBER}|60|gmM(screen^${SCREEN_FILE})) [macro-screen] exten => s,1,Wait(0.2) exten => s,n,Answer exten => s,n,Read(ACCEPT|${ARG1}|1) exten => s,n,GotoIf($[${ACCEPT} = 1 ] ?yes:no) exten => s,n(no),SetVar(MACRO_RESULT=CONTINUE) Regards, Gary
2012 Mar 25
2
avoiding for loops
I have data that looks like this: > df1 group id 1 red A 2 red B 3 red C 4 blue D 5 blue E 6 blue F I want a list of the groups containing vectors with the ids. I am avoiding subset(), as it is only recommended for interactive use. Here's what I have so far: df1 <- data.frame(group=c("red", "red", "red", "blue",