search for: att

Displaying 20 results from an estimated 1446 matches for "att".

Did you mean: at
2006 Oct 07
3
merge and polylist
...__________ dat=data.frame(read.delim(file="all.txt", header = TRUE, sep = "\t", quote="\"", dec=".",na.strings = "NA")) nc=read.shape("astae.shp", dbf.data=TRUE, verbose=TRUE) mappolys=Map2poly(nc) submap <- subset(mappolys, nc$att.data$NAME!="Honolulu, HI") nc$att.data=subset(nc$att.data, nc$att.data$NAME!="Honolulu, HI") nc$att.data[,1]=as.numeric(paste(nc$att.data$MSACMSA)) #attributes(nc$att.data) nc$att.data=merge(nc$att.data, dat, by.x="AREA", by.y="cod", all.x=TRUE, sort=FALS...
2009 Jan 13
3
Returning Non-Unique Index with Which (alternatives?)
Dear all, I tried to find index in repo given a query with this: > repo <- c("AAA", "AAT", "AAC", "AAG", "ATA", "ATT") > qr <- c("AAC", "ATT", "ATT") > which(repo%in%qr) [1] 3 6 Note that the query contain repeating elements, yet the output of which only returns unique. How can I make it returning [1] 3 6 6 instead? - Gundala Viswanath Jakarta - Indonesia
2013 Jan 15
2
Need some help on Text manipulation.
...82493783, -1.17738110289352, 0.210601060411423, -0.827369747447338, -0.36896112964414, 0.440288648776096, 1.28018410608809, -0.897113649961341, 0.342216546981718, -1.17288066266219, -1.57994101992621, -0.913655547602414, -2.54753726314408, -0.617703410989815, -0.443272763891558, 0.359181170918489), att = structure(c(2L, 2L, 2L, 4L, 2L, 2L, 1L, 3L, 1L, 4L, 1L, 2L, 2L, 2L, 2L, 4L, 2L, 2L, 4L, 2L), .Label = c("aa", "bb", "cc", "dd"), class = "factor")), .Names = c("dat", "att"), row.names = c(NA, -20L), class = "data.frame&qu...
2011 Jul 13
1
How to turn off "plus" delivery
....dovecot.sieve sieve_dir: ~/sieve > cat ~/.dovecot.sieve require ["regex","fileinto"]; if header :regex ["X-Bogosity"] ["^ *Spam,"] { fileinto "caughtspam"; stop; } # excerpt from mail.log: postfix/pipe[32255]: BE4FCE24069: to=<gene_att at xxxxxxxxxx.com>, relay=bogo_filter, delay=1.2, delays=0.13/0.01/0/1.1, dsn=2.0.0, status=sent (delivered via bogo_filter service) postfix/qmgr[28916]: BE4FCE24069: removed postfix/cleanup[32254]: DBA1EE2406E: message-id=<1310331364610.sdc.29057010.18396.155116668 at connect2.wireless.att-m...
2007 Jan 10
1
map data.frame() data after having linked them to a read.shape() object
...uot; in ArcView and "relate" in ArcMap. I use the code shown below, though without success. Help with this would be greatly appreciated. Thanks! Tord require(maptools) # Read shape file (one row per county) a=read.shape("myshp.shp", dbf.data=TRUE, verbose=TRUE) str(a) ..- attr(*, "maxbb")= num [1:4] -100 49 0 0 ..- attr(*, "class")= chr "ShapeList" $ att.data:'data.frame': 490 obs. of 60 variables: ..$ STATE_FIPS: Factor w/ 12 levels "04","06","08",..: 11 11 11 11 4 5 5 5 5 5 ... [sni...
2004 Aug 05
2
PRI protocol question...
I'm having difficulty getting a PRI working between asterisk and a Merlin Legend. I have been attempting to get it going as esf, b8zs & 5ess (although I have tried other switchtypes...). I found the following info in the Legend docs: If the switch type is 5ESS, the protocol MUST be set for ATT Custom. If switch type is DMS-100, the protocol MUST be set for NTNAPRI The README in libpri...
2011 Mar 22
1
Problem with plot histogram
...trying to built a plot of two series of data, but thees series result "superimposed". The R-code is like this: goal <- c(125, 143, 81, 26, 2, 3) numgoal <- 0:5 lambda <- sum(goal*numgoal)/sum(goal) plot(numgoal, goal, type="h") x <- 0:5 y<-dpois(x, lambda) att<-y*380 lines(x,att, type="h", col="red") legend(x="topright", legend=c("Osservate", "Attese"), col=c("black","red"), ncol=1, lty=1, lwd=3, inset=c(0.01, 0.02), bg="white") How can I draw the two lines one near o...
2008 Mar 11
1
Cingular/ATT killing my IMAP/POP connections with bad TCP FIN packets?
...pic or this issue is actually just a symptom of my own ignorance. Also, sorry for how long this email got, I knew I wouldn't be able to explain my issue in a paragraph. I'm having issues connecting to my dovecot mail server, running with SSL under Solaris while connected via Cingular/ATT wireless, specifically via the wap.cingular access point. This server is not firewall, either via software or hardware and sits on a fully routable internet IP address. A few days after we made the transition from UW-IMAP to Dovecot, I could no longer connect from my Nokia E61i to our server...
2004 Apr 12
3
Hunting S(n)IPs
Hi Akk, If this has been discussed/done then apologies be-4-hand. I did not find it in the Wiki or the Archives. Here's the question. We have incoming PRI lines, all on the same main number. An attendant is supposed to handle all incoming calls. Now, let's say I have a multi-line SIP phone. For argument's sake (and to keep it simple) say I only have two lines. We'll call them SIP/att-0 and SIP/att-1. Here's the desired behavior: Call comes in. Gets to Dial(SIP/att-0) Other...
2006 Aug 16
5
How to remove similar successive objects from a vector?
...y to do this? VECTOR=c(3,2,4,5,5,3,3,5,1,6,6); NEWVECTOR=VECTOR[1]; for(i in 1:(length(VECTOR)-1)) { if((identical(VECTOR[i], VECTOR[i+1]))==FALSE){ NEWVECTOR=c(NEWVECTOR,VECTOR[i+1])} } > VECTOR [1] 3 2 4 5 5 3 3 5 1 6 6 > NEWVECTOR [1] 3 2 4 5 3 5 1 6 _______________________________ Atte Tenkanen University of Turku, Finland
2011 Jul 06
0
matching, treatment effect-ATT and Zelig package
...<- setx(z.out, fn = NULL, data = match.data(m.out, "treat"), cond = TRUE) s.out <- sim(z.out, x = x.out) summary(s.out) 2. Without Zelig - only matching T.output <- match.data(m.out, group="treat")$re78 C.output <- match.data(m.out, group="control")$re78 ATT <- mean(T.output)-mean(C.output) ATT ATT between 1. and 2. is quite different. Hope to hear some thoughts regarding this. Many thanks! Ana [[alternative HTML version deleted]]
2006 Feb 14
5
Call centre - * hang's up
When agent tries to transfer a phone call (*2 - att transfer) he hangs up. Why? When a phone call isn't from queue then att transfer works fine. In features conf I have *1 for recording, *2 for att transfer and #1 for blind. In queue blind transfer works. For disconnect I have #0. I guess that * is somewhere defined as for hang-up the call, bu...
2007 Jan 19
1
Is this possible to do?
I'm a bit confused if this is possible to do. I would like to write some instructional pages using markdown, here is a short example of my problem. The text looks like this: ============================================================ Risken ?r dock att du har lite mer komplicerade objekt, tex att det ?r uppbyggt av flera delobjekt: ![A complex object](images/CloneAdvancedObject.png) Om du genomf?r en enkel kopiering liknande den som du gjorde ovan s? kan du r?ka ut f?r n?got som ser ut ungef?r s? h?r: ===========================================...
2010 Sep 23
1
strange behaviour of callNextMethod in S4 methods
...Generic("ncputVar",def=function(nc,variable,object) standardGeneric("ncputVar")) Define a 1st method for class Source: setMethod("ncputVar",signature(nc="NetCDF",variable="ANY",object="Source"), def=function(nc,variable,object) { att.put.nc(nc,variable,"nom","NC_CHAR",object at nom) att.put.nc(nc,variable,"dom","NC_CHAR",object at dom) att.put.nc(nc,variable,"loc","NC_CHAR",object at loc) att.put.nc(nc,variable,"time","NC_CHAR",object at...
2006 Oct 06
4
Row comparisons to a new matrix?
...ix? I have here used cosine distance as an example, but the comparison function can be any other, euclidean dist etc. A=rbind(c(2,3),c(4,5),c(-1,2),c(5,6)) M=matrix(nrow=length(A[,1]),ncol=length(A[,1])) for(i in 1:length(A[,1])) { for(j in 1:length(A[,1])) { M[i,j]=cosine(A[i,],A[j,]) } } Atte Tenkanen University of Turku, Finland
2006 Jun 19
3
Border line width?
Is there some way to change the line widths of plot borders? I couldn't find any parameters for that purpose. Atte Tenkanen University of Turku, Finland
2004 Jun 18
1
Asterisk as Media Gateway (was: ATT CallVantage & Asterisk)
...it's better than nothing. I am considering adding MG capability to the * MGCP stack. Do you or does anyone have an interest in helping with this? --Stewart > Date: Fri, 18 Jun 2004 10:30:15 -0400 > From: "Kubat, Philip" <pkubat@kubat.com> > Subject: [Asterisk-Users] ATT CallVantage & Asterisk > I am trying to connect directly to AT&T VoIP service CallVanage. I have > ATT's ATA (D-Link DVG-1120M). They use mgcp. I have traces of the connects > from the Dlink and hoping to setup Asterisk the same. It looks like I need > to have Asterisk...
2012 Dec 17
3
How to test whether is.element() returns only TRUE's
Hi, How can I test, whether all the values that is.element() -function returns are TRUE's Eg. > (is.element(c(1,4,2),c(1,2,3))) [1] TRUE FALSE TRUE This doesn't work: > (is.element(c(1,4,2),c(1,2,3)))==TRUE [1] TRUE FALSE TRUE Best, Atte Tenkanen, FT, MuM http://users.utu.fi/attenka/
2006 Jun 09
1
SBC/ATT Supertrunk configuration
I have what my SBC/ATT representative calls a "Supertrunk," but he can't tell me the specifics I need to know to configure Asterisk to work with it. By fiddling about, I've come up with the "almost working" configuration below. This works except that it takes about 4 seconds from when the...
2016 May 20
2
identical on closures
Specifically, the srcfile attribute of the srcref attribute of the two instances of the functions contain different environments, AFAICT. Environments are compared only by exact pointer, so this forces return FALSE. Snippets from .Internal(inspect(x)) and .Internal(inspect(y)): @cca008 03 CLOSXP g0c0 [MARK,NAM(2),ATT] FORMALS...