search for: twelve

Displaying 20 results from an estimated 185 matches for "twelve".

Did you mean: delve
2017 Oct 22
3
ASR Suggestions for small dictionnary (<1000 entries) lookup in France/french
...mergency calling service IVR application. The IVR application asks simple one or two questions like "which is the postal code of the area you are currently calling from ?" "Is the correct ?". The expected values are a 5-digits number like "twenty-five-thousand-two-hundreds-twelve" or "twenty-five-two-twelve" variations or "yes or no". >From received answers, this application would route incoming call to an appropriate Public Safety Answering Point. As IVR requires working DTMF and sometimes it's not easy to type DTMF with wireless phones, I...
2006 Jan 16
3
Max Number of #include statements
What's the maximum number of #include statments I can have in extensions.conf? I'm getting an error at the 11th one. I tried breaking twelve #include's into 2 different contexts, and still got the same error. These aren't nested includes... they're only one level deep. Thanks, Doug.
2006 Jan 23
3
date.to_s trimming
When I convert a datetime to a string, it prints out something like this Jan 20 12:00:00 EST 2006 I want to trim off the last twelve characters, i.e. :00 EST 2006 I tried to do it like so: @date = @meeting.date.to_s.chomp.chomp.chomp.chomp.chomp.chomp.chomp.chomp.chomp.chomp.chomp.chomp but the chomps seem to do nothing. I''d love to use regex, but I don''t know which method to use to remove text from a st...
2007 Oct 10
3
simulated data using empirical distribution
...o find it. I need to create simulated data based on some empirical distributions of a single variable. I've found R functions to help me simulate data based on analytical distributions, or to make simulations based on correlation matrices, but nothing so simple as what I need. What I have is twelve bins of data, and the population in each bin. The top bin is open-ended, and the whole distribution is more or less poisson-ish. I can think of a couple of ways to fake this ok, but is there a real R way to do it? Many thanks, -tom -- ------------------------ tomfool at as220 dot org http...
2004 Nov 11
2
RODBC & POSIX & Daylight Saving blues
Dear All, The recent improvement in RODBC to recognize datetimes in tables has exposed my ongoing confusion. All my data are obtained from a satellite system (Argos) which tags events in the GMT time zone. Daylight saving is ignored. To my way of thinking this means that 1. twelve-o-clock means halfway through the day regardless of season, and 2. the difftime of any two dates where the time is set to twelve-o-clock should be an integer, regardless of which season each of the dates are in. I illustrate my confusion with a two-line table in an Access 2000 database tabl...
2018 Jan 31
1
Problems with "predict" function
Hello, I am synthesising some sales data over a twelve month period, and then trying to use the "predict" function, firstly to generate a thirteenth month forecast with upper and lower 95% confidence limits. So far so good But what I then want to do is add the upper sales value at the 95th confidence limit to the vector of thirteen months a...
2010 Sep 21
3
R-help Digest, Vol 91, Issue 21
All Is there a script in R equivalent to the "if then" transforms one can perform in Systat? For example, I want to create a "Treatment" column coded either 1 or 2 for twelve field sites in a large data set. Ideally, I'd be able to tell R to code sites a-f as 1 and sites g-l as 2. Cheers Kurt *************************************************************** Kurt Lewis Helf, Ph.D. Ecologist EEO Counselor National Park Service Cumberland Piedmont Network P.O. Box 8 Ma...
2008 Aug 29
2
non-parametric Anova and tukeyHSD
I have insect data from twelve sites and like most environmental data it is non-normal mostly. I would like to preform an anova and a means seperation like tukey's HSD in a nonparametric sense (on some sort of central tendency measure - median?). I am searching around at this time on the internet. Any suggestions, books,...
2006 Mar 25
3
Rails and Lighttpd, hangs?
I know this is kind of a generic question. But, when hitting my lighttpd/rails site on some of the first hits, the site hangs. I think it has something with the lighttpd configuration, possibly something I am missing with rails or ruby? Any ideas or how to track this down. fastcgi.server = ( ".fcgi" => ( "0.0.0.0" => ( "socket" =>
2018 Feb 20
0
Take the maximum of every 12 columns
The maximum over twelve columns is the maximum of the twelve maxima of each of the columns. single_col_max <- apply(x, 2, max) twelve_col_max <- apply( matrix(single_col_max, nrow = 12), 2, max ) ir. Thierry Onkelinx Statisticus / Statistician Vlaamse Overheid / Government of Flanders INSTITUUT VOOR NATUUR-...
2003 Feb 26
2
na.action in model.tables and TukeyHSD
Hello everybody! I use R 1.6.2 in Windows, and have a problem controlling the na.action. In a dataset with twelve trials, one of the trials lack any readings of the variable "STS.SH" (standing power at harvest) Fitting an aov() object with the call: led1t7sts.aov <- aov(STS.SH ~ Trial/Block + Treatment + Treatment:Trial, data = led1t7, na.action=na.exclude) seems to work as it produces an objec...
2018 Feb 20
2
Take the maximum of every 12 columns
...;The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue, Feb 20, 2018 at 7:05 AM, Thierry Onkelinx <thierry.onkelinx at inbo.be> wrote: > The maximum over twelve columns is the maximum of the twelve maxima of > each of the columns. > > single_col_max <- apply(x, 2, max) > twelve_col_max <- apply( > matrix(single_col_max, nrow = 12), > 2, > max > ) > > ir. Thierry Onkelinx > Statisticus / Statistician > > Vl...
2019 Apr 01
3
Today is the last day of mediocre library call optimizations
...rastructure already in place, e.g., SimplifyLibCalls.cpp, it seems odd that we still miss so many optimization opportunities. To show how easy it is, and how much impact it can have, I crafted a very simple, yet very effective patch which will hopefully only be the first of its kind. The attached twelve line addition to SimplifyLibCalls.cpp provides subsequent passes with a better understanding of the "getenv" function. This function was chosen to showcase the enormous impact well placed information can have on real world software, including LLVM itself. While you could take my word fo...
2016 Sep 21
2
error handling in strcapture
...e pattern matches then the subpatterns without matches would be shown as matches at position 0 with length 0. Hence either the pattern is compatible with the prototype or it isn't, it does not depend on the text input. E.g., > regexec("^(([[:alpha:]]+)|([[:digit:]]+))$", c("Twelve", "12", "Z280")) [[1]] [1] 1 1 1 0 attr(,"match.length") [1] 6 6 6 0 attr(,"useBytes") [1] TRUE [[2]] [1] 1 1 0 1 attr(,"match.length") [1] 2 2 0 2 attr(,"useBytes") [1] TRUE [[3]] [1] -1 attr(,"match.length") [1] -1 attr(...
2003 Dec 03
6
Zone Scalability
I''m happily running two four zone/four nic shorewall firewall configuratoins. Great software, works as expected everytime! We are conteplating a larger and more complex firewall configuration that may include as many as twelve zones with trying to cram as many as 8+ interfaces into a single machine. Are there any draw backs to this amount of zones and interfaces into a single shorewall configuration? Thanks! -- Matt Burleigh Enterprise Integration, Inc. Senior Systems Engineer http://www.eiisolutions.com
2004 Dec 07
3
Asterisk / VOIP Employment Opportunity
...and notify Mindworx Pty Ltd immediately by return email or by telephoning 3233 9000. The views expressed in this email are those of the individual sender and do not necessarily reflect the views of Mindworx Pty Ltd. A candidate referred by Mindworx remains a candidate of Mindworx for a period of twelve months after the initial referral. Should a candidate subsequently be appointed in any position, a Fee will be payable in accordance with Mindworx standard terms of business. If the details of a candidate or potential candidate, referred by Mindworx, are passed on to a third party who subsequently...
2016 Feb 17
2
1000 analogue lines with asterisk
...; can do 48 channels per adit 600, with 2 T1 interfaces. Having onsite > spares would not be an issue (cost is low). You can put two next to each > other in a rack, taking up about 2U of space per 2 channel banks. > > You could service this with six eight port T1 cards, or with eleven/twelve > quad T1 cards. I would distribute across two, three, or even four servers > for redundancy/resiliency and load balancing. > > -Harry > > > On 02/17/2016 12:16 AM, Goke Aruna wrote: > > > On Wed, Feb 17, 2016 at 8:14 AM, Mitul Limbani <mitul at enterux.in> wrot...
2006 Dec 15
6
RMagick=bad, ???=good
...at Zed has made mention of the fact that using RMagick with mongrel and rails is a bad thing. I''m currently using FlexImage (which in turn uses RMagick) on my application and really haven''t had too many problems. We get a restart for memory usage every 8-10 hours on one mongrel of twelve running, but I''m not sure if that''s an RMagick issue. Either way, I''d like to make my system better if I can. Right now I''ve got controllers that are using both send_data (sending image stored in the db, using RMagick to crop/resize before sending) and send_file...
2007 Jan 16
1
Re: [Vorbis-dev] Proposal: An extension to rules all others
...;s me being very flippant, I'm talking about Vista. Lots of talk about rewritten codebases, NTFS and this new database thing replacing FAT, but if it still uses .ext style extensions to tell it and the user what's in a file then there's an important legacy aspect still stuck there[1]. Twelve years after Windows 95. Anyhow, best not start ranting off on a tangent. [1] Yes things have been improved, but how long has the Mac had (and used) resource forks? -- imalone
2013 Sep 29
0
[SoftwareBbc] Once Hourly Digest Email
SoftwareBbc has posted a new Software, '' Corel Draw 12 Full Free Download http://softwarebbc.com/corel-draw-12-full-free-download/ Corel these days proclaimed that it's at the same time shipped CorelDRAW? Graphics Suite twelve in eight languages to customers round the world. offered these days in English, German, French, Italian, Dutch, Spanish, Brazilian Portuguese and Japanese, CorelDRAW Graphics Suite twelve permits users to perform several style tasks doubly as quick as ever before. New options [...] Fotor for Wind...