Skip to content

Commit 356c02d

Browse files
committed
Update doc fix #203
1 parent f241f63 commit 356c02d

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Suggests:
4343
withr,
4444
readr (>= 1.2.1)
4545
License: GPL-3
46-
RoxygenNote: 7.3.1
46+
RoxygenNote: 7.3.2
4747
Roxygen: list(markdown = TRUE)
4848
Encoding: UTF-8
4949
VignetteBuilder: knitr

NEWS.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
## Bug fixes
66

77
* Fix #190 a potential GC issue in the vendored cpp11 code, detected by rchk
8+
* Fix #203 documentation issues
89

910
# readODS 2.3.0
1011

R/read_ods.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@
293293
#' NULL, so that empty cells are treated as NA.
294294
#' @param skip the number of lines of the data file to skip before beginning to read data. If this parameter is larger than the total number of lines in the ods file, an empty data frame is returned.
295295
#' @param formula_as_formula logical, a switch to display formulas as formulas "SUM(A1:A3)" or as the resulting value "3"... or "8".. . Default is FALSE.
296-
#' @param range selection of rectangle using Excel-like cell range, such as \code{range = "D12:F15"} or \code{range = "R1C12:R6C15"}. Cell range processing is handled by the \code{\link[=cellranger]{cellranger}} package. If sheet name is in the range, such as \code{range = "Sheet2!A2:B7"}, this sheet name is used instead of the provided `sheet`. If `sheet` is not the default value (1), a warning is given.
296+
#' @param range selection of rectangle using Excel-like cell range, such as \code{range = "D12:F15"} or \code{range = "R1C12:R6C15"}. Cell range processing is handled by the [cellranger::as.cell_limits()]. If sheet name is in the range, such as \code{range = "Sheet2!A2:B7"}, this sheet name is used instead of the provided `sheet`. If `sheet` is not the default value (1), a warning is given.
297297
#' @param row_names logical, indicating whether the file contains the names of the rows as its first column. Default is FALSE.
298298
#' @param strings_as_factors logical, if character columns to be converted to factors. Default is FALSE.
299299
#' @param verbose logical, if messages should be displayed. Default is FALSE.

R/write_ods.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
#' @param na_as_string logical, TRUE indicates that NAs are written as string; FALSE indicates that NAs are written as empty cells
142142
#' @param padding logical, TRUE indicates that the sheet is padded with repeated empty cells to the maximum size, either 2^20 x 1024 (if the number of columns of `x` is less than or equal 1024) or 2^20 x 16,384 (otherwise). This is the default behaviour of Microsoft Excel. Default is FALSE
143143
#' @return A (F)ODS file written to the file path location specified by the user. The value of \code{path} is also returned invisibly
144-
#' @details This function emulates [writexl::write_xlsx()] and [openxlsx::write.xlsx()] except in the handling of list columns. The expected behaviour for this is undefined and the two functions behave differently. This function handles list columns by converting them to character vectors of R code (similar to the output of [dput()]), which is probably not ideal.
144+
#' @details This function emulates [writexl::write_xlsx()] except in the handling of list columns. The expected behaviour for this is undefined and the two functions behave differently. This function handles list columns by converting them to character vectors of R code (similar to the output of [dput()]), which is probably not ideal.
145145
#' @author Detlef Steuer <steuer@@hsu-hh.de>, Thomas J. Leeper <thosjleeper@@gmail.com>, John Foster <john.x.foster@@nab.com.au>, Chung-hong Chan <chainsawtiney@@gmail.com>
146146
#' @examples
147147
#' \dontrun{

man/read_ods.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/write_ods.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)