similar to: Re: Two companies - One Asterisk

Displaying 20 results from an estimated 10000 matches similar to: "Re: Two companies - One Asterisk"

2005 Mar 25
2
Re: Two companies - One Asterisk
Dean - > if you are having these troubles and everyone keeps advising you to use > asterisk@home why aren't you doing this? Not to be rude, but I believe you are the only one who suggested he use asterisk@home. asterisk@home is a great (actually stupendous) product for those that want to have a PBX with a GUI up and running within a few minutes. It does not, however, force users
2005 Mar 25
0
Re: Two companies - One Asterisk
I've made a lot of changes to the AMP dial plan including implementing the asterisk weather script. asterisk@home is a great building block to start from but it's not restricting anything you want to implement later. Cheers, Dean -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Kerry Garrison Sent:
2005 Mar 25
5
Two companies - One Asterisk???
We have two small business that run out of our office. One business has 3 phone lines, and the other has only one. In a perfect world, Asterisk would indicate WHICH line (or group) the outsider caller called, so that we would know which way to answer the phone. The incoming calls would go through a voice mail menu first - different for each company. (Press one for sales, two for
2005 Mar 23
1
FW: polycom 500 help!!
Dean, I appreciate the suggestion. Is it really necessary. I've got slackware already installed on the box. (I consider myself a bit of a Linux guru.), all the drivers, and Asterisk. Everything seems to work fine, EXCEPT getting it to talk to the extension. wouldn't it be easier/faster to just adjust a few settings than to re-initialize my entire box. dean collins wrote: >If
2011 Oct 16
2
Use of ICA for sound
Hi, I'm looking at the "cocktail party" classic problem. I can see how to use ICA to separate the components. But, How do I then create new wav files of the separated sounds so that they can be played? Thanks -- Noah Silverman UCLA Department of Statistics 8208 Math Sciences Building Los Angeles, CA 90095 [[alternative HTML version deleted]]
2012 May 18
4
Menus - best practices?
Hello, I need to design a fairly simple front-end for someone to use an R script system that I've built. My thought was to just use the text based menus available in the base R package, perhaps in some kind of loop. How have other people done this? Any "best practices" that you can recommend? Thanks! -- Noah Silverman UCLA Department of Statistics 8117 Math Sciences Building
2011 Mar 31
3
Create Variable names dynamically
Hi, I want to create variable names from within my code, but can't find any documentation for this. An example is probably the best way to illustrate. I am reading data in from a file, doing a bunch of stuff, and want to generate variables with my output. (I could make a "list of lists" and name all the elements, but I really want separate variables.) ################# #This is
2011 Sep 02
2
Avoiding for Loop for moving average
Hello, I need to calculate a moving average and an exponentially weighted moving average over a fairly large data set (500K rows). Doing this in a for loop works nicely, but is slow. ewma <- data$col[1] N <- dim(data)[1] for(i in 2:N){ data$ewma <- alpha * data$ewma[i-1] + (1-alpha) * data$value[i] } Since the moving average "accumulates" as we move through the data,
2012 Jun 11
3
Decision Trees or Markov Models for Cost Effectiveness
Hello, I was just assigned to perform a cost effectiveness study in healthcare. We are studying the cost effectiveness of a proposed diagnostic vs. current screening procedures. One of the team members suggest a commercial software package called "TreeAge Pro". Looking at the description, it appears to be a nice GUI to some very simple models that could be easily constructed in R.
2012 Feb 13
1
Warnings from script - where?
Hi, Next challenge today. I have a script that I call within R: source("foo.R") When it finishes, I get the dreaded output: "There were 50 or more warnings (use warnings() to see the first 50)" So, I type warnings() and get a nice list. (Same error repeatedly, so probably something I'm using in a loop.) The difficult part is I have no idea *where* the warning is
2011 Aug 23
2
dummy variables from factors
Hi, Looking at a large data set with many factors. I would like to expand each factor variable into multiple new variables for each level. (0,1) coding. My first though was just to code a big nasty loop, to take each level and cbind a column onto my data set. But, that seems painful. There must be a better way. Is there an "easy" way to do this in R? (Note, I don't want to
2005 Mar 03
4
Getting phpconfig to work?
No, I have apache 1.3.33 and mod_ssl 2.8.22 installed. Do I need to have apache2-mod_php installed? Rgds, Julius. > DO you have apache2-mod_php installed ? > > Which distro are you using ? > >> -----Original Message----- >> From: asterisk-users-bounces@lists.digium.com >> [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of >> Julius Kidubuka >>
2012 Oct 14
4
Date Math
Hello, I have a time series object (xts) that I iterate over in a loop. Works fine. My challenge is that I want to be able to reference other entries in the series by math. i.e. For today's observation, what were the last 5 observations? If indexed numerically, it is trivial, but I can figure out how to do this with dates. This is slightly more difficult as there may not be an
2011 Aug 20
1
Raw epoch time from XTS
Hi, I have a very large data set stored as an xts object. xts is very nice about showing row labels as "human readable" dates and times. I want the actual epoch values that are stored internally. The only way I can find to access them is one-at-a-time using the internal function: xcoredata() Calling this in an entire column, the "R" way doesn't work. It will only
2012 Oct 09
4
Convert COLON separated format
I have a bunch of data sets that were created for the libsvm tool. They are in "colon separated sparse format". i.e. 1 5:1 27:3 345:10 Is a row with the label of "1" and only has values in columns 5, 27, and 345. I want to read these into a data.frame in R. Is there a simple way to do this? -- Noah Silverman, M.S. UCLA Department of Statistics 8117 Math Sciences
2005 Mar 03
1
RE: Getting phpconfig to work?
Hi, When I do click on the phpconfig.php link from http://ip-of-machine/phpconfig/, it returns a page with the actual contents of that file (phpconfig.php) and doesn't load the page. See some of the output below; <?PHP /** * * Asterisk configuration file interface script * * * * * * phpconfig:,v 1.0 2003/07/03 17:19:37 * Authors: Dave Packham <dave.packham@utah.edu> *
2012 May 18
2
Failure building any package
Hello, I'm attempting to build a package using R 2.15.0 on OS X I am getting a generic failure when performing a cran type check on the package. Even with a very simple test package, it still fails int he same place. Example: In R: rm(list=ls()) foo <- function(x){print(x)} package.skeleton(name="foo") Then, at the command line: R CMD build foo R CMD check --as-cran
2011 Jul 24
3
Variable scope in functions - best practices
Hi, I'm working on coding some more complex things in R and have need to break much of the logic into functions. I have several "global" variables that I want to change with a given function. (The variable has a different value after the function is called.) In other languages like C, this is simple. However, in R, if a function changes a variable, that change only occurs in the
2003 Sep 11
10
phpconfig is out in CVS
I have put my phpconfig stuff out into the Digium CVS tree. Project name is phpconfig. see it at http://rads.netcom.utah.edu/phpconfig/phpconfig.php Lemme know if you have any patches or add on's are welcome Dave Packham aka p0lar
2011 Jun 20
1
access objects by name
Hi, I have several data structures (xts structures). I then have a list of the names of those objects. I'd like to access the object by name. For example: foo1 <- as.xts(....) foo2 <- as.xts(...) foo3 <- as.xts(...) structs <- c("foo1", "foo2", "foo3") for (thisOne in structs){ print(thisOne$colA) } The above fails. Clearly I'm missing a