Displaying 20 results from an estimated 5000 matches similar to: "Data Manipulation Question"
2011 Feb 02
1
Help with Help
I have recently been reading several books on data mining which contain a
few data sets. The books offer some perspective on model choices, tuning
decisions, result interpretation. Are there any good resources that can walk me
through the thought process of an experienced data miner with the datasets that
are included for packages such as "rpart" & "kmeans".
I
2011 Feb 11
2
Large Datasets
I have recently been using R - more speciifcally the GUI packages Rattle
and Rcmdr.
I like these products a lot and want to use them for some projects - the problem
that I run into is when I start to try and run large datasets through them. The
data sets are 10-15 million in record quantity and usually have 15-30 fields
(both numerical and categorical).
I saw that there were some packages
2007 Jun 26
1
A really simple data manipulation example
In response to those who asked for a better explanation of what the
Vilno software does, here's a simple example that gives some idea of
what it does.
LABRESULTS is a dataset with multiple rows per patient , with lab
sodium measurements. It has columns: PATIENT_ID, VISIT_NUM, and
SODIUM.
DEMO is a dataset with one row per patient, with demographic data.
It has columns: PATIENT_ID, GENDER.
2008 Dec 19
3
Pre-routing manipulation of calls
This is concerning an Asterisk 1.4.18 server.
We have approximately 70 DID numbers. Incoming calls are placed into
the "incoming" context (by zapata.conf) and are routed based on the
dialed number.
I want to do some manipulation (CallerID name override) to all incoming
calls before they are routed. I would prefer to avoid duplicating the
necessary code in each DID extension stanza,
2018 Dec 10
4
PJSIP_HEADER - Diversion header manipulation
Hi all,
I’m trying to rewrite Diversion header when call forwarding is done on
the phone. The phone sends "302 Moved Temporarily" response and sets
Diversion header to a local number, but before Asterisk sends this call
towards TSP provider I need to change Diversion header to a full PSTN
number. I am using PJSIP_HEADER in a pre-dial handler (configuration is
below). On the same
2008 Oct 06
1
AEL and swap from macros to contexts
Hi, according to discussion on asterisk IRC, where people said, that
macros will be depracated, I tried to migrate from macros to contexts
and Gosub
but if I try to use gosub in extensions.ael, ael compiler complains,
that I shouln't use Gosub app,
but I can't find ael keyword, that will be Gosub equivalent, or can I
ignore this ael warnings? thanks
PJ
LOG: lev:3 file:pval.c
2009 Feb 24
3
Gosub behavior change <=1.6.0.5 to 1.6.0.6
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Here's one that may be of interest to any upgraders. If you rely on the
behavior of gosub you may want to make note of this change.
I have an incoming call context:
exten => _XXXX,n,GoSub(incoming,${EXTEN},1(${EXTEN}));
that is supposed to gosub into the incoming extension at priority 1.
Versions before 1.6.0.6 would drop into the
2009 Apr 29
1
Replacement of Macro() with Gosub()
Hi,
Is there some more thorough documentation of this change that has
happened in 1.6? The upgrade.txt and changes.txt files mention it, but
I have already seen details of this change that do not appear to be
documented except in conversations on the mailing list...
1) It appears that it is no longer legal to have:
[macro-contaxtA]
...stuff...
[contextA]
...stuff...
Is this true? Or have I
2019 Oct 11
3
clarification on gosub, macros and AEL
I'm trying to clarify my understand of gosub, macros and AEL.
My understanding is that macros using the Macro() application, which is
defined in extensions.conf by:
[macro-foo]
...
and called in extensions.conf with
exten => _9NXXNXXXXXX.,n,Macro(fastbusy)
is deprecated in favour of Gosub(). True so far?
But then there are "macro"s defined in extensions.ael:
macro foo() {
2011 Aug 15
3
Queue Breakout Input being Ignored
Hello,
Raw stats:
Version:1.8.3.2
OS:Centos 5.6
Special setup: postgre database
I am having a few queue issues with Asterisk specifically relating to
breaking out from queues while on hold.
The intent is that while someone is on hold they can press a key (lets
say *) to break from the queue and go elsewhere (in this case to leave a
message).
However In all of my testing I am unable to get
2010 May 18
3
About option U in Dial Ast version 1.6.2
Has any one used this?
U(x[^arg[^...]]):
x - Name of the subroutine to execute via Gosub
arg - Arguments for the Gosub routine
Execute via Gosub the routine <x> for the *called* channel before
connecting to the calling channel. Arguments can be specified to
the Gosub
using '^' as a delimiter. The Gosub routine can set the variable ${GO
2019 Oct 15
4
clarification on gosub, macros and AEL
>>> Nobody has any information or opinions on any of this?
Personally, I don't think MACROS are going anywhere any time soon, so I have not bothered looking into a substitution.
As for ael; I've never used it.
Doug
2012 Nov 13
1
Proc Nnpar1way with D option - equivalent in R
I am trying to match SAS output with R.
I am using Proc Npar1way with D option to get KS test statistic.
?
Here X is a binary dependent variable and Y is the predicted probabilities;
proc npar1way data = mydata D; class x; var y; run;
When i try this in R
ks.test(x, fitted(y),alternative = c("two.sided"),exact = NULL) I get very
different result compared to SAS.
I am new to R.
2011 Mar 04
3
Gosub and 'h' (again?)
Problem as follows:
[default]
exten => 777,1,Gosub(sub,1,1)
exten => 777,n,Hangup()
exten => h,1,NoOp(hung up in 'default' context)
[sub]
exten => 1,1,NoOp(in sub)
exten => 1,n,Playback(tt-monkeys)
exten => 1,n,Return()
exten => h,1,NoOp(hung up in 'sub' context)
This works fine if the caller listens to all the 'tt-monkeys' and let's
the system
2016 Mar 03
2
Asterisk Call Forwarding
Hi
I have to setup call forwarding. How do we setup Call forwarding in
asterisk?. Eg. user dials a number and insert some mobile number for
forwarding and dial another number to cancel the forwarding. thanks a lot.
Best Regards,
Madushan?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2010 Jul 23
2
application call to Gosub affects flow of control, and needs to be re-written using AEL
Hi,
For some reason (outbound call tracking) I've got a few different
outbound call process (using a macro for queuemetrics logging, or direct
call)
i wanted to factorise the routing process so i came up with something
like the following. All in one it's working like expected, however
every "ael reload" command trigger a lot of warning like that
"application call
2009 Mar 06
1
GoSub & Queue
I have a caller screen queue setup. Basically a caller calls in, goes
through a IVR, and before that caller is put into the queue, they get a sub
ran on them first asking for them to say there name. That gets saved and
they are entered into the queue using Queue(mainqueue,,,,300).
In the queues.conf i have a list of members these are
local/extension at external-default, there are two
2009 Jun 13
1
1.6.0.10: core restart on ReceiveFax()
For our internal fax machines, I'm checking if the faxes are going to
branch offices. If they are, I want to capture and email them to the
branches. I've set up extension 8447 to test this.
A fax machines is connected via an SPA 2102 on 173. Any calls from 173
are sent to:
[outbound-fax]
exten => 8447,1,Answer()
exten => 8447,n,GoSub(Capture-Fax,s,1)
exten
2019 Dec 13
3
Block Spam Calls
Hello Doug,
Friday, December 13, 2019, 11:03:37 AM, you wrote:
>> This is exactly what I do - “press 1 for a human”
>> Works great
> I do this as well, but I also do a database lookup to see if the number
> is on our speeddial list and if so, pass the call directly on without
> the IVR prompts.
I do something similar for calls without caller ID, but I was still
getting
2013 Aug 08
1
queue member ackcall - cpuspikes
hi!,
Asterisk Version:1.6.1.20
OS: CentOS release 5.3 (Final)
uname: 2.6.18-128.el5PAE #1 SMP Wed Jan 21 11:19:46 EST 2009 i686 i686 i386
GNU/Linux
Application: Queue
Specific Details: Obtain Acknowledgement from queue member before bridging
the caller.
Language: AEL
Similar Example:http://www.voip-info.org/wiki/view/Asterisk+tips+Queue+Member+ackcall
Scenario:
1. User calls in a General Number