Displaying 20 results from an estimated 10000 matches similar to: "mean duration (persistence) of daily data"
2009 Jul 07
2
rle
Hallo,
I have an other problem, I have this vector signData with an alternation of
1 and -1 that corrispond to the duration of two different percepts. I
extracted the durations like this:
signData<- scan("dataTR10.txt")
dur<-rle(signData)$length
Now I would like to extract only the positive duration, e.g.
signData <- c(1,1,1,1,-1,-1,-1,1,1,-1,-1)
posduration <- c(4,2)
I
2008 Aug 15
1
Vectorization of duration of the game in the gambler ruin's problem
Hey fellas:
In the context of the gambler's ruin problem, the following R code obtains the mean duration of the game, in turns:
# total.capital is a constant, an arbitrary positive integer
# initial.capital is a constant, an arbitrary positive integer between, and not including
# 0 and total.capital
# p is the probability of winning 1$ on each turn
# 1-p is the probability of loosing 1$
# N
2006 Apr 26
1
help using tapply
Dear R-mates,
# Here's what I am trying to do. I have a dataset like this:
id = c(rep(1,8), rep(2,8))
dur1 <- c( 17,18,19,18,24,19,24,24 )
est1 <- c( rep(1,5), rep(2,3) )
dur2 <- c(1,1,3,4,8,12,13,14)
est2 <- rep(1,8)
mydata = data.frame(id,
estat=c(est1, est2),
durat=c(dur1, dur2))
# I want to one have this:
id = c(rep(1,8), rep(2,8))
2009 Jun 09
2
generating new data with for loop
I'm new at R ...
I've not done for loops in R - so this is very new to me.
One of our students has a data frame that contains two columns data
1. unixtime time of an event (in unix time - #of seconds)
2. duration of event in seconds.
We need to create new data - the unixtime (seconds) that these events
occurred.
We want to create a for loop (or nested for loops) that goes through the
2017 May 19
2
noinline changes between 3.8 and 4.0?
All,
I'm in the process of upgrading an LLVM client from using 3.8 to using 4.0
and am running into the following issue:
// compile with:
// clang++ -std=c++11 -Wno-c++14-extensions -S -emit-llvm
// ~/chrono.cpp -o chrono.ll
#include <chrono>
#include <ratio>
#include <thread>
using namespace std;
using namespace std::chrono;
using tick = ratio<1, 300>;
using
2009 Sep 01
1
Read multiple files into dataframe?
Hello,
I am fairly new to R programming and am stuck with the following problem.
I am trying to read in multiple files (see attached file or at end of
email), the files all have the same general header information and
different precipitation (avgppt) and area (areasqmi) values. Some times
the number of records are different in the files.
I want to read in all files (.stdsummary), and create
2011 Apr 25
1
Trouble Passing a for loop variable (iteration #) to a data frame
Greetings -
I am working on a piece of code to simulate vehicle times in and out in each
of a number of parking spaces. At this stage, my code basically does what
it is supposed to do but for the sequential number of each new parking event
for a given space (i.e., the index of the loop variable). Instead of
passing the index of the loop variable (iter) to the data frame, it passes
the value
2008 Jun 19
2
Capturing draggable revert
I''ve seen a few posts about this, but no answers.
I would like to be able to call a function when a draggable revert
occurs. What I''m trying to do is replace a photo with an icon on drag
(which I''ve accomplished), but I need to swap it back if the revert
fires.
I really, really wish there were an onRevert() option, but there
isn''t, so I guess I''ll
2011 Apr 29
1
importing and filtering time series data
Folks,
I'm new to R and would like to use it to analyze web server performance data.
I collect the data in this CSV format:
1304083104.41,Y,668.856249809
1304083104.41,Y,348.143193007
First column is a <seconds.microseconds> timestamp, rows with N instead of Y need to be skipped and the last column has the same format as the first column, except it's request duration (latency).
2009 Oct 31
1
Help me improving my code
Hi,
I am new to R. My problem is with the ordered logistic model. Here is my
question:
Generate an order discrete variable using the variable
wrwage1 = wages in first full calendar quarter after benefit application
in the following way:
*
wage*1*Ordered *=
1 *if*0 *· wrwage*1 *< *1000
2 *if*1000 *· wrwage*1 *< *2000
3 *if*2000 *· wrwage*1 *< *3000
4 *if*3000 *· wrwage*1 *<
2009 Apr 13
3
duration of rfc2833 generated dtmf
Hi. I have a SIP provider which wants RFC2833 for the dtmfmode,
however I would like to increase the duration of the tone, its pretty
short and some IVR's are unhappy or don't detect it. I did poke
around, but it looks like when RFC2833 is used, it actually generates
rtp packets of some sort, so I have no idea how to increase that
duration.
Any assistance would be appreciated.
--
Your
2012 Mar 29
1
Adding duration (hh:mm:ss)\Converting factor column into duration class
Hi All,
I have a data frame:
Time1 Time2
1 176:46:10 41:48:06
2 171:28:57 61:19:10
3 178:25:15 34:05:35
4 74:04:20 25:01:55
5 136:11:20 37:59:32
6 138:17:17 30:22:27
7 183:04:48 29:25:02
8 179:35:01 19:29:44
> str(df)
'data.frame': 8 obs. of 2 variables:
$ Time1: Factor w/ 583 levels
2006 Mar 10
4
difference between records in CDR and real duration of call
hi
i've made some test calls, i've notice that a call of the duration of
1:29 minutes is recorded in the cdr database as 1:45 minutes, is it
normal?
i think that 15 seconds are too many... how can i correct this?
thanks
2010 Jun 03
5
how to get call duration
Hello,
I want to ask how to get call duration.
--
Necati DEM?R
http://demir.web.tr
http://friendfeed.com/ndemir
ndemir ~ demir.web.tr
---------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100603/d4085dc6/attachment.htm
2008 Mar 18
2
Determining the duration of an ogg vorbis file
Hi all,
I've got a question on regarding how to find out the duration of an ogg vorbis file. Sorry if it should already be mentioned somewhere in the docs, but I couldn't find out how to do it the best way.
So, I can read the [bitrate_nominal] field from the identification header (if it is set), find out the size of the audio data (by subtracting the size of the three headers from the
2009 Nov 12
1
How to send DTMF on Zaptel with 50ms tone duration and 50ms gap between the digits?
Hi,
After some testing I've found out that my client's hardware recognizes DTMF
only if digits are sent 50ms apart with 50ms of tone duration. This was
tested using a test device which generates DTMF.
Now asterisk doesn't do it by default because digits going out from Asterisk
are not being recognized.
Using command sendDTMF, I can control inter-digit duration, and using
2008 Dec 19
1
Increase DTMF Tone Duration
Hi,
We are running 1.4.22 and have been experiencing problems with certain
IVRs and DTMF Tone duration. We would like to be able to increase DTMF
Tone duration by 50 to 100ms over what the user is pressing on his
phone. We have a PRI test circuit and an analyer in between to measure
tone duration.
We have tried setting chan_dahdi.conf parameter 'toneduration', but that
does not do
2009 Jan 21
2
CDR 0.00 duration
Hi
I am using Trixbox 2.4 and PRI lines..on the CDR i see many calls that have duration of 0 seconds, but they are still shown as ANSWERED . how come its possible when duration is 0.00 ? Are the callers billed for such calls ?
Rgds
Sriram
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 May 03
3
0 duration but non-zero billsec in mysql cdr
I was just going through my call records ( stored in mysql database
by cdr_MYSQL module ) and saw a record having duration = 0 and billsec
of more than 50 seconds . I did a query on cdr where duration <
billsec and saw that there were infact some 250 records with duration
less than billsecond ( table had around 4,00,000 records) . Did anyone
came across this ?
I also checked csv files and they
2009 Nov 11
1
How to control DTMF tone duration on Zap channels?
Hi,
I am using zap channels, and by using sendDTFM application, I can control
the duration between two DTMF digits, but I can't find a way to control the
duration of the digits themself. Did search on the Internet and found out
that I can change it in the asterisk source files and recompile asterisk.
Wiki also says that it can be controlled using toneduration option in
zapata.conf, but it