library(RDBESvisualise)
library(RDBEScore)
testData <- RDBEScore::createRDBESDataObject(input = "data-raw/exampleData/H1_POL.zip")
myPlots <- coverageBySpecies(
dataToPlot = testData,
year = 2024,
vesselFlag = 'PL',
landingsVariable =
"CLsciWeight",
samplingVariable ="SAsampWtMes",
catchCat = "Lan",
includeLandings = TRUE,
includeSamples = TRUE,
topN = 10,
plotQuarters = FALSE,
verbose = FALSE
)
utils functions are not exported. Have to be run manually. The fix is to add RDBESvisualise::: in all places where the internal functions are being called
library(RDBESvisualise)
library(RDBEScore)
testData <- RDBEScore::createRDBESDataObject(input = "data-raw/exampleData/H1_POL.zip")
myPlots <- coverageBySpecies(
dataToPlot = testData,
year = 2024,
vesselFlag = 'PL',
landingsVariable =
"CLsciWeight",
samplingVariable ="SAsampWtMes",
catchCat = "Lan",
includeLandings = TRUE,
includeSamples = TRUE,
topN = 10,
plotQuarters = FALSE,
verbose = FALSE
)
utils functions are not exported. Have to be run manually. The fix is to add RDBESvisualise::: in all places where the internal functions are being called