print.summary.cpue: Print method for summary.cpue

Description Usage Arguments Value Examples

View source: R/cpue-class.R

Description

Shows main information from summary.cpue objects.

Usage

1
2
## S3 method for class 'summary.cpue'
print(x, language = "spanish")

Arguments

x

Object of summary.cpue class.

language

The select language to print the summary of cpue objects. It could be "spanish" by default or "english".

Value

Each element of summary.cpue method.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
# Read a example of a data base
fisheryData = system.file("extdata", "fisheryData.csv", package = "imarpe")

# Produce a object of cpue class
cpue  = getFishingData(file = fisheryData, type = "cpue", varType = "cpue", sp = "caballa", efforType = "capacidad_bodega")
class(cpue)

# Print the summary of the cpue class object
sumCpue = summary(effort)
print(sumCpue)

sumCpue = summary(effort, language = "english")
print(sumCpue, language = "english")

imarpe/imarpe documentation built on Aug. 8, 2020, 8:40 p.m.