Displaying 2 results from an estimated 2 matches for "avrg".
Did you mean:
arg
2012 Sep 18
1
Cochran-Mantel-Haenszel test
..., binned over 6-hour
intervals. I categorized each row of data corresponding to a date and
time into summer vs. winter, and day vs. night, and then summed and
averaged the given % for each depth bin. My data looks like this (for
one individual, HG03):
HG03.dat
Season Time Depth Sum Avrg
1 summ day 0 17.2 0.1702970
2 summ day 1 23.9 0.2366337
3 summ day 10 868.5 8.5990099
4 summ day 50 2698.2 26.7148515
5 summ day 100 419.7 4.1554455
6 summ day 200 266.1 2.6346535
7 summ day 300 1668.6 16.5207921
8 summ day 5...
2009 Mar 20
1
suspicious dtrace results
...ption flowindent
syscall::pread:entry
{
self->trace = 1;
self->size = arg2;
}
syscall::pwrite:entry
{
self->trace = 1;
self->size = arg2;
}
fbt:ssd:ssdread:entry
/self->trace/
{
self->start = timestamp;
self->minor = getminor(arg0);
}
fbt:ssd:ssdread:return
/self->start/
{
@avrg[pid,probefunc,self->minor,self->size] = avg((timestamp - self->start) / 1000);
@numbers[pid,probefunc,self->minor,self->size] = count();
self->start = 0;
}
fbt:ssd:ssdwrite:entry
/self->trace/
{
self->start = timestamp;
self->minor = getminor(arg0);
}
fbt:ssd:ssdwrite:ret...