Learn R Programming

stacomiR (version 0.6.0)

report_dc-class: 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

Arguments

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", ...).

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

Run this code
# NOT RUN {
# this option allows to launch the program without the interface to display 
# some of the program features.
stacomi(database_expected=FALSE)
# 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.user = password						
	)	
	
  r_dc=new("report_dc")
  r_dc<-choice_c(r_dc,
	  5,
	  horodatedebut="2000-01-01",
	  horodatefin="2015-12-31",
	  silent=TRUE)
  Sys.setenv(TZ='GMT')
  # This dataset format is GMT. If this option is not set
  # the dataset is tranformed from timestamp to date
  r_dc<-connect(r_dc)
  # this dataset has been loaded by the previous lines
  ###########################################################	
# Without connexion to the database (use dataset r_dc)
  ##########################################################
  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)
# }
# NOT RUN {
##




# }

Run the code above in your browser using DataLab