Learn R Programming

accrualPlot (version 1.0.7)

print.accrual_df: Print methods for accrual objects

Description

Print methods for accrual objects

Usage

# S3 method for accrual_df
print(x, head = TRUE, ...)

# S3 method for accrual_list print(x, ...)

Value

No return value

Arguments

x

object of class 'accrual_df' or 'accrual_list' produced by accrual_create_df.

head

show header of the accrual data?

...

arguments passed to head

Examples

Run this code
data(accrualdemo)
accrual_df<-accrual_create_df(accrualdemo$date)
print(accrual_df)
# only show text
print(accrual_df, head = FALSE)
# show first 15 days
print(accrual_df, n = 15)

Run the code above in your browser using DataLab