Tivy is an R package for processing and analyzing fisheries data from Peru. It provides tools for:
# Process fishing hauls
processed_hauls <- process_hauls(
data_hauls = your_hauls_data,
verbose = TRUE
)
# Process fishing trips
processed_trips <- process_fishing_trips(
data_fishing_trips = your_trips_data,
verbose = TRUE
)
# Process length frequency data
processed_lengths <- process_length(
data_length = your_length_data,
verbose = TRUE
)
The package expects data with specific column patterns:
codigo_faena
,
numero_cala
, latitud_inicial
,
longitud_inicial
, especie
,
captura
codigo_faena
,
embarcacion
, fecha_inicio
,
fecha_fin
codigo_faena
,
numero_cala
, especie
, talla
,
frecuencia
Column names are automatically detected using pattern matching.
The package includes Peru coastline data:
For more detailed examples, see the function documentation.
This package implements standard methods from:
For complete citations, see individual function documentation and topic-specific vignettes.