We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20800a8 + 55c9f19 commit 9ad5ca6Copy full SHA for 9ad5ca6
2 files changed
NAMESPACE
@@ -1,5 +1,6 @@
1
# Generated by roxygen2: do not edit by hand
2
3
+export(createCsv)
4
export(age)
5
export(ageDescriptives)
6
export(allStudies)
R/createCsv.R
@@ -0,0 +1,8 @@
+#' @title check data
+#' @description
+#' Helper function to check if the given dataset exists
+
+createCsv <- function(file) {
+ dataset <- read.csv(file)
7
+ return(dataset)
8
+}
0 commit comments