Displaying 6 results from an estimated 6 matches for "respresenting".
Did you mean:
representing
2010 Jun 01
3
lapply with functions with changing parameters
...-correlogram (by using ccf) . Obivously ccf only accepts two columns at once and then returms a list.
In fact, with a for loop i?d do the following
for (i in 1:6) {
x[[i]]=ccf(mydf[,i],mydf[,6])
}
Is there any chance to the same with lapply? e.g. lapply(mydf,"ccf", .... ) with ... respresenting the changing arguments for ccf functions (note only the first argument does actually change)
thx for any suggestions in advance
best
matt
2009 Aug 11
1
nested repeated measures MANOVA using adonis
I am trying to apply a permuation-based MANOVA (Anderson 2001) to a set of
morphological data from three ecomorphs of fish reared under two different
conditions and measured at two points during ontogeny. I will supply a
distance matrix based on Procrustes distances calculated outside of vegan.
I have not found an example of a design such as this for adonis. However, I
have designed my factors
2008 Jan 29
0
Asterisk and MRTG, a little help please...WORKING
On 1/28/08, JR Richardson <jmr.richardson at gmail.com> wrote:
> > You need to take a step back and first test the script without using
> > MRTG. Execute it like this:
> > # /opt/bin/asterisk-mrtg -h localhost -u XXX -p XXXX -1 SIP -2 Zap
> > 10
> > 10
> > 10
> > 10
> >
> > You should get 4 lines of numbers. That respresents your SIP
2007 Sep 18
1
Queue agents w/ DUNDi
All,
I'm trying to configure queue agents w/ a DUNDi setup so that an agent
can login to whatever server they please w/o any custom setup. In
general this seems to work, agents login w/ AgentCallbackLogin into the
incoming context (not a special queue context) and can receive queue
calls.
The problem is that since the incoming context is the same context as
the normal incoming call context,
2008 Jan 27
6
Asterisk and MRTG, a little help please...
Hi All,
After reading the sparse info and attempting to get this running, I'm
unsuccessful and could use some guidance.
I already have a MRTG server up and running serving hundreds of router
interface graphs. I would like to add SIP/IAX channel graphs for all
our asterisk servers. I'm running asterisk 1.2 and MRTG 2.4.17. I
tried the script from http://karlsbakk.net/asterisk/ but get
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused.
Here are the commands I have entered:
> data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",")
> NumberOfActionsByStatus = data$STATUS
> NumberOfActionsByUser = data$ETS_LOGIN
> NumberOfBidOffer = data$BID_OFFER
> NumberOfActionsByUser.freq = table(NumberOfActionsByUser)
>