search for: wrapup

Displaying 20 results from an estimated 49 matches for "wrapup".

2008 May 22
1
tests/ok-errors.R ## bad infinite recursion
...+#Error: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error: segfault from C stack overflow +#Error: C stack usage is too close to the limit +#Error during wrapup: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error during wrapup: C stack usage is too close to the limit +#Error: C stack usage is too close to the limit +#Error during wrapup: C stack usage is too close to the limit +#Error: C stack usage is too clos...
2009 Mar 19
1
Overriding Queue Wrapup Time
Is there a way to override the queue wrapup time on the fly? I would like to allow a longer wrapup time for my agents, but if they are already done with closing up the call ticket, I would like them to be able to dial an extension or something to override the wrapup. Is there a way to do that? -- Regards, Robert Broyles
2010 May 24
1
Error during wrapup: cannot open the connection
....character(1:nrow(x))) ) > > samr.obj <- samr ( data, resp.type="Two class unpaired", + nperms=100, logged2=TRUE ) Error in samr(data, resp.type = "Two class unpaired", nperms = 100, logged2 = TRUE) : unused argument(s) (logged2 = TRUE) Error during wrapup: cannot open the connection > > > samr.obj <- samr ( data, resp.type="Two class unpaired", + nperms=100 ) perm= 1 Error in !logged2 : invalid argument type *Error during wrapup: cannot open the connection* > sessionInfo() R version 2.11.0 (2010-04-22) i38...
2012 Mar 26
2
Error during wrapup: incorrect number of dimensions
...[19,] 1 17 [20,] 1 11 [21,] 0 11 > unique(loopless[,1]) [1] 0 1 2. __BAD__ > edges [,1] [,2] [1,] 0 1 [2,] 0 0 Browse[1]> edges[!loops,] [1] 0 1 why is it a vector, not a matrix? Browse[1]> loopless [1] 0 1 Browse[1]> loopless[,1] Error during wrapup: incorrect number of dimensions -- Sam Steingold (http://sds.podval.org/) on Ubuntu 11.10 (oneiric) X 11.0.11004000 http://www.childpsy.net/ http://iris.org.il http://truepeace.org http://thereligionofpeace.com http://camera.org http://www.memritv.org Lottery is a tax on statistics ignorants....
2005 Sep 13
3
Call Wrapup time for agents.
Hi all, I was wondering if there was a way to deal with "wrap up" time for agents slightly better than we do it at the moment. At the moment, we set a wrap up time of 20 seconds for each of our call queues. The problem with this is that sometimes it's either too long or two short. I would essentially like to have all agents put into wrap up straight after a call, and have to
2008 Aug 26
1
Potential Error/Bug?: addition of NULL during arithmetic
...en my reading of the documentation and does not appear to be referenced in the list archives or online. The error occurred when a function received a NULL value rather than a numeric value as a parameter and then attempted to use the NULL value in the calculateion. The error: "Error during wrapup: nothing to replace with" can be easily recreated with the following code: > 1 + NULL # note that the opperation succeeds and returns a numeric vector with dim(NULL) numeric(0) > bar <- 1 > bar [1] 1 > foo <- 1 + NULL > foo numeric(0) > bar <- bar + foo # note t...
2007 Jan 30
2
R crashes when used from within rpy (PR#9481)
....4.0. Screendump: ------------------------------ >>> from rpy import * >>> beer = r.scan() 1: 3 4 1 1 3 4 3 3 1 3 2 1 2 1 2 3 2 3 1 1 1 1 4 3 1 26: Read 25 items >>> c = r.table(beer) >>> c array([10, 4, 8, 3]) >>> r.pie(c) >>> Error during wrapup: C stack usage is too close to the limit *** caught segfault *** address (nil), cause 'memory not mapped' Possible actions: 1: abort (with core dump) 2: normal R exit 3: exit R without saving workspace 4: exit R saving workspace Selection: 3 3 >>> End of screendump ------------...
2005 Feb 15
3
using poly in a linear regression in the presence of NA f ails (despite subsetting them out)
...efore calling lm(). Andy > From: Markus J?ntti > > I ran into a to me surprising result on running lm with an orthogonal > polynomial among the predictors. > > The lm command resulted in > > Error in qr(X) : NA/NaN/Inf in foreign function call (arg 1) > Error during wrapup: > > despite my using a "subset" in the call to get rid of NA's. > > poly is apparently evaluated before any NA's are subsetted out > of the data. > > Example code (attached to this e-mail as as a script): > > ## generate some data > > n <-...
2005 Feb 15
3
using poly in a linear regression in the presence of NA f ails (despite subsetting them out)
...efore calling lm(). Andy > From: Markus J?ntti > > I ran into a to me surprising result on running lm with an orthogonal > polynomial among the predictors. > > The lm command resulted in > > Error in qr(X) : NA/NaN/Inf in foreign function call (arg 1) > Error during wrapup: > > despite my using a "subset" in the call to get rid of NA's. > > poly is apparently evaluated before any NA's are subsetted out > of the data. > > Example code (attached to this e-mail as as a script): > > ## generate some data > > n <-...
2017 Nov 29
2
SAMseq errors
...ing.status=PFI.status, resp.type="Survival") Estimating sequencing depths...Error in quantile.default(prop, c(0.25, 0.75)) :?? missing values and NaN's not allowed if 'na.rm' is FALSEIn addition: Warning message:In sum(x) : integer overflow - use sum(as.numeric(.))Error during wrapup: cannot open the connection > sessionInfo()R version 3.3.2 (2016-10-31)Platform: x86_64-w64-mingw32/x64 (64-bit)Running under: Windows 7 x64 (build 7601) Service Pack 1 locale:[1] LC_COLLATE=English_United States.1252? LC_CTYPE=English_United States.1252? ? LC_MONETARY=English_United States.1252...
2009 Jan 08
1
NAs are not allowed in subscripted assignments
Browse[1]> j <- c(1,2,NA) Browse[1]> j[j==1][-1] [1] NA Browse[1]> j[j==1][-2] [1] 1 Browse[1]> j[j==1][-2] <- 2 Error during wrapup: NAs are not allowed in subscripted assignments As far as I can see, I have no NA in the lhs (not after the second subscript anyway). Besides, I have a single value on the rhs, so it should be allowed to have NAs in the lhs, according to help(Extract). What am I missing? I can see no ambiguite as...
2012 Jul 10
1
Negative years with strptime?
...ot; "0500-02-02" as.Date(as.character(x)) # "0001-01-24" "0500-01-24" # Minus 391 days gives negative year as.character(x - 391) # "-001-12-30" "0498-12-29" # Can't convert this string back to Date as.Date(as.character(x - 391)) # Error during wrapup: character string is not in a standard unambiguous format # as.Date.character uses strptime, so we can try using strptime directly strptime(as.character(x), "%Y-%m-%d") # "0001-01-24" "0500-01-24" strptime(as.character(x - 391), "%Y-%m-%d") # NA...
2005 Feb 14
0
using poly in a linear regression in the presence of NA fails (despite subsetting them out)
I ran into a to me surprising result on running lm with an orthogonal polynomial among the predictors. The lm command resulted in Error in qr(X) : NA/NaN/Inf in foreign function call (arg 1) Error during wrapup: despite my using a "subset" in the call to get rid of NA's. poly is apparently evaluated before any NA's are subsetted out of the data. Example code (attached to this e-mail as as a script): > ## generate some data > n <- 50 > x <- runif(n) > a0 <- 10...
2009 Dec 13
1
debug an error that incapacitates R?
...or? > sosInit() Error: invalid connection When this happens R refuses to run anything: > 2+2 Error: invalid connection > sessionInfo () Error in stdout() : invalid connection Debugging it seems impossible. > options(error=recover) > sosInit() Error: invalid connection Error during wrapup: invalid connection The error also "crashes" browser(). Browse[1]> n debug at /home/liviu/Devel/Rcmdr-dev/Rcmdr.sos/RcmdrPlugin.sos-0.1-0/R/sosInit.R#51: doItAndPrint(paste("## Launching RSiteSearch, please be patient..")) Browse[2]> Error in function () : invalid conne...
2008 May 16
1
var/sd and NAs in R2.7.0
...ing an NA (like R 2.6.2), or NaN (like the function 'mean' does). That is, isn't the purpose of 'na.rm=TRUE' to, in part, suppress these error messages. Specifically, > var(c(NA, NA, NA), na.rm=TRUE) # R2.6.2 [1] NA > var(c(NA, NA, NA), na.rm=TRUE) # R2.7.0 Error during wrapup: no complete observations in cov/cor I think I can get the old behavior by setting use='p', but the 'sd' function does not have a 'use' argument and I'd like not to get an error here. Anyway, I'm a fan of the old behavior (not producing an error), but if there was a...
2011 Jul 14
1
recursive function - finding connections
...0 0.5 1.0 1.0 0.5 0.5 [8,] 0.5 1.0 0.0 0.5 1.0 0.0 1.0 0.0 0.0 0.0 [9,] 0.0 0.5 0.0 0.0 0.5 0.0 0.5 0.0 0.5 0.5 [10,] 1.0 1.0 0.5 1.0 0.0 1.0 0.0 0.0 0.0 0.5 > pb<-findconnection(foomat, 0.01) Error: C stack usage is too close to the limit Error during wrapup:
2017 Nov 29
0
SAMseq errors
...atus=PFI.status, resp.type="Survival") Estimating sequencing depths... Error in quantile.default(prop, c(0.25, 0.75)) :? ? missing values and NaN's not allowed if 'na.rm' is FALSE In addition: Warning message: In sum(x) : integer overflow - use sum(as.numeric(.)) Error during wrapup: cannot open the connection > sessionInfo() R version 3.3.2 (2016-10-31) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 7 x64 (build 7601) Service Pack 1 locale: [1] LC_COLLATE=English_United States.1252? LC_CTYPE=English_United States.1252? ? LC_MONETARY=English_United State...
2015 Jul 29
2
Queues don't follow dialplan if no members are registered
----- Original Message ----- > From: "John Kiniston" <johnkiniston at gmail.com> > To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users at lists.digium.com> > Sent: Tuesday, July 28, 2015 12:12:05 PM > Subject: Re: [asterisk-users] Queues don't follow dialplan if no members are registered > > In your queues.conf do you
2023 Nov 21
1
[External] Re: Error in setwd(dir) when initializing R
...the Microsoft representative to fix OneDrive so >> that temporary files would work on it and telling them the steps to >> reproduce the problem. >> >>> Browse[1]> dir.exists(dir) >>> [1] TRUE >>> Browse[1]> setwd(dir) >>> Error durante el wrapup: no es posible cambiar el directorio de >>> trabajo >> >> What is the value of `dir` at this point? (What does print(dir) say?) >> Can you open this directory in Windows Explorer? >> >> If possible, could you please set your mailer to compose messages in >&...
2007 Jul 05
1
Missing TRANSFER event in queue log when using Local Channels
Has anyone observed a problem where using Local channels with AddQueueMember results in missing TRANSFER events? Right now I'm using straight SIP channels when I call AddQueueMember(). I'm contemplating moving to Local channels because the non-state-based wrapuptime blows when you have a channel in multiple queues (they can hang up and get a call immediately so long as it's from a different queue). My grand plan is to use the 'h' extension in the context where app_queue calls my agents to invoke PauseQueueMember instead. The problem is with t...