Displaying 2 results from an estimated 2 matches for "countervalu".
Did you mean:
countervalue
2006 Jul 08
1
Combining a list of similar dataframes into a single dataframe
...3.16e+13 3.16e+13 3.16e+13 3.16e+13 3.16e+13 ...
$ perffreq : num 6.99e+08 6.99e+08 6.99e+08 6.99e+08 6.99e+08 ...
$ perftime100nsec: num 1.28e+17 1.28e+17 1.28e+17 1.28e+17 1.28e+17 ...
$ countername : Factor w/ 4 levels "Bytes Received/sec",..: 1 3 2
4 1 3 2 4 1 3 ...
$ countervalue : num 6.08e+07 6.64e+07 5.58e+06 1.00e+08 6.09e+07 ...
>
What I am trying to do is subset this thing down by server, instance,
instanceno, countername and then apply a function to each subsetted
dataframe. The function performs a calculation on countervalue,
essentially "collapsing&qu...
2006 Jul 09
0
Combining a list of similar dataframes into a single data frame [Broadcast]
...1 1 1 1 1 1 ...
$ ts :'POSIXct', format: chr "2006-06-30 12:31:44"
"2006-06-30 12:32:58" "2006-06-30 12:34:46" "2006-06-30 12:36:55" ...
$ countername : Factor w/ 4 levels "Bytes Received/sec",..: 1 1 1 1 1
1 1 1 1 1 ...
$ countervalue: num NA 938 816 4213 906 ...
>
On 7/8/06, Mike Nielsen <mr.blacksheep at gmail.com> wrote:
> I would be very grateful to anyone who could point to the error of my
> ways in the following.
>
> I have a dataframe called net1, as such:
>
> > str(net1)
>...