Displaying 1 result from an estimated 1 matches for "userabs".
Did you mean:
userabc
2006 Aug 25
1
How to get back POSIXct format after calculating with hist() results
...ds : num [1:336] 1.15e+09 1.15e+09 1.15e+09 1.15e+09 1.15e+09
...
$ xname : chr "logins$DateTime"
$ equidist : logi TRUE
- attr(*, "class")= chr "histogram"
... Then I do some calculations with the login_bins$counts, resulting in
a new vector:
>str(userabs)
int [1:336] 1 -3 34 39 68 127 347 641 844 943 ...
When I now plot this y over the x-axis coming from the previous
histogram x-axis with
>plot(login_bins$mids, userabs)
I get the x-axis of labelled with the nums 1154400000, 1154800000...
(number of seconds since 1970 ?)
Trying to convert t...