get_report | R Documentation |
Save a pdf file with a report of a discharge rating curve object or tournament.
get_report(x, path = NULL, type = 1, ...)
## S3 method for class 'plm0'
get_report(x, path = NULL, type = 1, ...)
## S3 method for class 'plm'
get_report(x, path = NULL, type = 1, ...)
## S3 method for class 'gplm0'
get_report(x, path = NULL, type = 1, ...)
## S3 method for class 'gplm'
get_report(x, path = NULL, type = 1, ...)
## S3 method for class 'tournament'
get_report(x, path = NULL, type = 1, ...)
x |
An object of class "tournament", "plm0", "plm", "gplm0" or "gplm". |
path |
A file path to which the pdf file of the report is saved. If NULL, the current working directory is used. |
type |
An integer denoting what type of report is to be produced. Defaults to type 1. Only type 1 is permissible for an object of class "plm0", "plm", "gplm0" or "gplm". Possible types are:
|
... |
Further arguments passed to other methods (currently unused). |
This function can only be used in an interactive R session as it asks permission from the user to write to their file system.
No return value, called for side effects.
get_report(plm0)
: Get report for plm0 model object
get_report(plm)
: Get report for plm model object
get_report(gplm0)
: Get report for gplm0 model object
get_report(gplm)
: Get report for gplm
get_report(tournament)
: Get report for discharge rating curve tournament
get_report
for generating and saving a report.
data(krokfors)
set.seed(1)
plm0.fit <- plm0(formula=Q~W,data=krokfors,num_cores=2)
## Not run:
get_report(plm0.fit)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.