From 9bd757b7b59e516cabac5db8024af6360d5ae241 Mon Sep 17 00:00:00 2001 From: rebeccathomas-NOAA <79660143+rebeccathomas-NOAA@users.noreply.github.com> Date: Mon, 2 Oct 2023 15:05:20 -0700 Subject: [PATCH] man page for read_EV_exports_v2 --- man/read_EV_exports_v2.Rd | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 man/read_EV_exports_v2.Rd diff --git a/man/read_EV_exports_v2.Rd b/man/read_EV_exports_v2.Rd new file mode 100644 index 0000000..902fb2b --- /dev/null +++ b/man/read_EV_exports_v2.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/read_EV_exports_v2.R +\name{read_EV_exports_v2} +\alias{read_EV_exports_v2} +\title{read_EV_exports_v2: Read in a directory of .csv files exported from Echoview} +\usage{ +read_EV_exports_v2(SurveyName, DirNameFile, database = 1, exportloc = 1, ...) +} +\arguments{ +\item{SurveyName}{- name of survey} + +\item{DirNameFile}{excel file - contains paths and locations of files} + +\item{database}{is an optional argument for format of the .csv files to. Default is database (1). Spreadsheet =0} + +\item{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} +} +\description{ +Read in a directory of .csv files +exported from Echoview. The function preserves the cells by depth. +Uses packages readxl, readr, purrr, and dplyr. This version (unlike read_EV_exports) does +not need to have the directory variable +} +\examples{ +temp<-read_EV_exports_v2(SurveyName, DirNameFile,database=1,exportloc=1) + +}