summary.accrued {accrued} | R Documentation |
accrued
class.Functions to display and summarize (as text or as a plot) partially accruing data objects of the accrued
class.
## S3 method for class 'accrued' summary(object, ...)
object |
Object of the |
... |
Parameters to pass to |
summary.accrued
creates a summary object (of class summary.accrued
) of the counts consisting of the percentage of days on
which an upload was recevied for each lag, the mean proportion of counts received by each lag,
and the mean counts received by each lag.
summary.accrued
invisibly returns an object of the summary.accrued
class, consisting of a list with the following components:
upload.prop |
Vector containing the percentage of days on which an upload was recevied for each lag |
mean.prop |
Vector containing the mean proportion of counts received by each lag |
mean.total |
Vector containing the mean counts received by each lag |
q1.prop |
Vector containing the 1st quartile of the proportion of counts received by each lag |
q2.prop |
Vector containing the 2nd quartile of the proportion of counts received by each lag |
q3.prop |
Vector containing the 3rd quartile of the proportion of counts received by each lag |
Ian Painter and Julie Eaton
data(accruedDataExample) testData <- data.accrued(accruedDataExample) summ_dat = summary(testData) # summary.accrued object