search for: timea

Displaying 3 results from an estimated 3 matches for "timea".

Did you mean: time
2006 Nov 07
1
Help on processing an in-house apps timer file
Hi, Our in-house AS400 based application produce a timer file as follows: TranName,Date Time, TimeA,A+B, TimeB MAC00029,20061027 112500.030,703,703,0 MAC00029,20061027 112500.342,703,719,16 MAC00056,20061027 112500.920,484,500,16 MAC00029,20061027 112501.186,812,812,0 MAC00029,20061027 112502.092,672,672,0 MAC00029,20061027 112502.264,687,687,0 MAC00056,20061027 112503.264,453,453,0 MAC00029,2006...
2011 Aug 18
3
Coding question for behavioral data analysis
...ome details about what behaviors follow another specific behavior within a time window (say1000 milliseconds). I figured out how to determine if one specific behavior follows another specific behavior within that window with the following syntax. TimeG=mydata$Time[mydata$Behavior == "g"] TimeA=mydata$Time[mydata$Behavior == "a"] out=rep(NA, length(TimeG)) for (i in 1:length(TimeG)){tmp = TimeA-TimeG[i] out[i]=(sum(0 < tmp & tmp <=1000 )>0 ) } number_of_behaviors<-length(TimeG) number_of_affectmirroring<-sum(out) This generates 2 values: the number of times...
2013 Jan 22
6
plot two time series with different length and different starting point in one figure.
Hello, I do have two different time series A and B, they are different in length and starting point. A starts in Jan, 2012 and ends in Dec, 2012 and B starts in March, 2012 and ends in Nov, 2012. How can I plot those two series A and B in the same plot? I.E., from Jan. 2012 - Feb, 2012, it would have one data point from A and from Mar, 2012-Nov, 2012, it would have two data points from A and B,