report_dc-class {stacomiR} | R Documentation |
Class "report_dc" report du fonctionnement du dispositif de comptage
Description
The counting device is not always working. It may me stopped either following a monitoring protocol, or due to malfunction of the device, this class allows to draw graphics allowing an overview of the device operation
Slots
data
A data frame
dc
An object of class
ref_dc-class
horodatedebut
An object of class
ref_horodate-class
horodatefin
An object of class
ref_horodate-class
Objects from the Class
Objects can be created by calls of the form
new("report_dc", ...)
.
Author(s)
Cedric Briand cedric.briand@eptb-vilaine.fr
See Also
Other report Objects:
report_annual-class
,
report_df-class
,
report_env-class
,
report_ge_weight-class
,
report_mig-class
,
report_mig_char-class
,
report_mig_env-class
,
report_mig_interannual-class
,
report_mig_mult-class
,
report_sample_char-class
,
report_sea_age-class
,
report_silver_eel-class
,
report_species-class
Examples
# An example that will work only if the database is present
# and the program installed and comprises the schema iav
# prompt for user and password but you can set appropriate options for host, port and dbname
## Not run:
if (interactive()){
if (!exists("user")){
user <- readline(prompt="Enter user: ")
password <- readline(prompt="Enter password: ")
}
options(
stacomiR.dbname = "bd_contmig_nat",
stacomiR.host ="localhost",
stacomiR.port = "5432",
stacomiR.user = user,
stacomiR.password = password
)
}
stacomi(TRUE,sch="iav")
r_dc=new("report_dc")
r_dc<-choice_c(r_dc,
5,
horodatedebut="2000-01-01",
horodatefin="2015-12-31",
silent=TRUE)
r_dc<-connect(r_dc)
##
# this dataset has been loaded by the previous lines
###########################################################
# Without connexion to the database (use dataset r_dc)
##########################################################
# this option allows to launch the program without the interface to display
# some of the program features.
stacomi(database_expected=FALSE)
data("r_dc")
plot(r_dc,plot.type="1")
plot(r_dc,plot.type="2")
plot(r_dc,plot.type="3",main="trial title")
plot(r_dc,plot.type="4",main="trial title")
# the following will write in the datawd folder
summary(r_dc)
## End(Not run)