add documentation to read_from_csv and write_to_csv

This commit is contained in:
2021-08-07 00:37:23 +02:00
parent 5e9f70627d
commit bf30511678
3 changed files with 50 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/parse.R
\name{write_to_csv}
\alias{write_to_csv}
\title{Write the parsed and repaired results into a csv file to make loading and developing faster and easier}
\usage{
write_to_csv(tables, path = "csv/", create = F)
}
\arguments{
\item{tables}{tibble list}
\item{path}{char}
\item{create}{bool
if create is set to TRUE, the directory given in path is created}
}
\description{
Write the parsed and repaired results into a csv file to make loading and developing faster and easier
}