From 5dbc8bc137423d49e379da2ddc7095894191a96a Mon Sep 17 00:00:00 2001 From: Jan Marvin Garbuszus Date: Sat, 2 Dec 2023 17:39:04 +0100 Subject: [PATCH] update roxygen --- R/RcppExports.R | 2 ++ R/writesas.R | 2 ++ man/write.sas.Rd | 4 ++++ src/writesas.cpp | 2 ++ 4 files changed, 10 insertions(+) diff --git a/R/RcppExports.R b/R/RcppExports.R index c43775d..4667512 100644 --- a/R/RcppExports.R +++ b/R/RcppExports.R @@ -23,6 +23,8 @@ readsas <- function(filePath, debug, selectrows_, selectcols_, empty_to_na, temp #' @param compress the file #' @param debug print debug information #' @param bit32 write smaller 32 bit file +#' @param headersize,pagesize size parameters 512 / 1024 times x +#' @param dateval timestamp #' @keywords internal #' @noRd writesas <- function(filePath, dat, compress, debug, bit32, headersize, pagesize, dateval) { diff --git a/R/writesas.R b/R/writesas.R index dc87979..c028981 100644 --- a/R/writesas.R +++ b/R/writesas.R @@ -7,6 +7,8 @@ #'@param compress option to compress file #'@param debug print debug information #'@param bit32 write 32bit file +#'@param varlabels optional variable labels +#'@param size optional header/pagesize #' #'@useDynLib readsas, .registration=TRUE #' diff --git a/man/write.sas.Rd b/man/write.sas.Rd index 4a2ed38..e4ab0dc 100644 --- a/man/write.sas.Rd +++ b/man/write.sas.Rd @@ -24,6 +24,10 @@ write.sas( \item{debug}{print debug information} \item{bit32}{write 32bit file} + +\item{varlabels}{optional variable labels} + +\item{size}{optional header/pagesize} } \description{ write.sas diff --git a/src/writesas.cpp b/src/writesas.cpp index d3b6181..fc0a821 100644 --- a/src/writesas.cpp +++ b/src/writesas.cpp @@ -34,6 +34,8 @@ using namespace Rcpp; //' @param compress the file //' @param debug print debug information //' @param bit32 write smaller 32 bit file +//' @param headersize,pagesize size parameters 512 / 1024 times x +//' @param dateval timestamp //' @keywords internal //' @noRd // [[Rcpp::export]]