knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

dfo

R-CMD-check codecov

The goal of dfo is to facilitate the reading of several file formats used by the Department of Fisheries and Oceans (DFO), Canada.

Installation

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("dankelley/dfo")

Example

The following reads, summarizes, and plots an IOS-formatted CTD file that is provided with the package. (Type ?read.ctd.ios in an R console for more details.)

library(dfo)
file <- system.file("extdata", "2007-019-055.ctd", package="dfo")
ctd <- read.ctd.ios(file)
summary(ctd)
plot(ctd)


dankelley/dfo documentation built on Nov. 21, 2022, 2:35 a.m.