setMissingValue-methods | R Documentation |
Defines the set of missing values (character or numeric) used when reading and writing data.
## S4 method for signature 'workbook,ANY'
setMissingValue(object,value)
object |
The |
value |
|
If there are no specific missing value identifiers defined the default behavior is
to map missing values to blank (empty) cells. Otherwise, each string or numeric cell is
checked if it matches one of the defined missing value identifiers. In addition, the first
missing value identifier (i.e. the first element of the value
argument) is used to represent missing values when writing data.
Note that the missing value identifiers have to be either character
or numeric
.
Martin Studer
Mirai Solutions GmbH https://mirai-solutions.ch
workbook
, writeNamedRegion
,
writeWorksheet
## Not run:
# Load workbook (create if not existing)
wb <- loadWorkbook("missingValue.xlsx", create = TRUE)
# Create a worksheet named 'airquality'
createSheet(wb, name = "airquality")
# Create a named region called 'airquality' on the sheet called
# 'airquality'
createName(wb, name = "airquality", formula = "airquality!$A$1")
# Set the missing value string to 'missing'
setMissingValue(wb, value = "missing")
# Write built-in data set 'airquality' to the above defined named region
writeNamedRegion(wb, airquality, name = "airquality")
# Save workbook
saveWorkbook(wb)
# clean up
file.remove("missingValue.xlsx")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.