Skip to contents

Read in a directory of .csv files (can be of several variables) exported from Echoview. The function preserves the cells by depth. Uses packages readxl, readr, purrr, and dplyr.

Usage

read_EVdir_exports(
  SurveyName,
  DirNameFile,
  database = 1,
  exportloc = 1,
  sheet = NULL,
  hakeflag = 2,
  ...
)

Arguments

SurveyName

- name of survey

DirNameFile

excel file - contains paths and locations of files. Uses Export_dir as the directory that the exported files are in.

database

is an optional argument for format of the .csv files to. Default is database (1). Spreadsheet =0

exportloc

is an optional argument for using the Export_Dir or the Region_Export_dir column entry in the DirNameFile spreadsheet. 1 is Export_Dir, and 0 is Region_Export_dir

sheet

is an optional argument to denote which sheet of the DirNameFile want to use. This defaults to the first sheet if not set.

hakeflag

sets whether specific "hake"-type classes are kept. hakeflag=0 keeps just age-0 hake, hakeflag=1 keeps just age-1 hake, hakeflag=2 keeps just regular age2+ hake, hakeflag=3 keeps everything that could possibly be hake. Any other numbers (including -1) will keep everything regardless of whether it is hake. The default is hakeflag=2, keeping just adult hake.

Examples

if (FALSE) { # \dontrun{
temp<-read_EV_exports(SurveyName, DirNameFile,database=1,exportloc=1)
} # }