get_report_pages {bdrc} | R Documentation |
Report pages for a discharge rating curve or tournament
Description
Get a list of the pages of a report on a discharge rating curve model or tournament
Usage
get_report_pages(x, type = 1, ...)
## S3 method for class 'plm0'
get_report_pages(x, type = 1, ...)
## S3 method for class 'plm'
get_report_pages(x, type = 1, ...)
## S3 method for class 'gplm0'
get_report_pages(x, type = 1, ...)
## S3 method for class 'gplm'
get_report_pages(x, type = 1, ...)
## S3 method for class 'tournament'
get_report_pages(x, type = 1, ...)
Arguments
x |
an object of class "tournament", "plm0", "plm", "gplm0" or "gplm". |
type |
an integer denoting what type of report is to be produced. Defaults to type 1. Possible types are
|
... |
further arguments passed to other methods (currently unused). |
Value
A list of objects of type "grob" that correspond to the pages in a rating curve report.
Methods (by class)
-
get_report_pages(plm0)
: Get report pages for plm0 model object -
get_report_pages(plm)
: Get report pages for plm model object -
get_report_pages(gplm0)
: Get report pages for gplm0 model object -
get_report_pages(gplm)
: Get report pages for gplm model object -
get_report_pages(tournament)
: Get report pages for discharge rating curve tournament model object
See Also
tournament
for running a tournament,summary.tournament
for summaries and get_report
for generating and saving a report of a tournament object.
Examples
data(krokfors)
set.seed(1)
plm0.fit <- plm0(formula=Q~W,data=krokfors,num_cores=2)
plm0_pages <- get_report_pages(plm0.fit)