setDataFormatForType-methods(XLConnect)
setDataFormatForType-methods()所属R语言包:XLConnect
Setting the data format for the DATA_FORMAT_ONLY style action
设置数据格式为DATA_FORMAT_ONLY风格的动作
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Sets the data format for a specific data type as used by the DATA_FORMAT_ONLY style action.
设置数据格式为一个特定的数据类型所使用的DATA_FORMAT_ONLY风格的动作。
用法----------Usage----------
## S4 method for signature 'workbook'
setDataFormatForType(object,type,format)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:type
The data type for which to set the format.
设置format的数据类型。
参数:format
A data format string
的数据格式字符串
Details
详细信息----------Details----------
Based on the (cell) data type the DATA_FORMAT_ONLY style action (see setStyleAction) sets the data format for the corresponding cells. The data type is normally specified via a corresponding data type constant from the XLC object. Data formats are specified the standard Excel way. Refer to the Excel help or to the link below for more information.
根据(手机)数据类型的DATA_FORMAT_ONLY风格的动作(见setStyleAction)设置相应的单元格的数据格式。通常是指通过相应的数据类型常数的type对象的数据XLC。指定的数据格式标准的Excel方式。请参阅Excel帮助或下面的链接获取更多信息。
(作者)----------Author(s)----------
Martin Studer<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参考文献----------References----------
http://www.ozgrid.com/Excel/CustomFormats.htm
参见----------See Also----------
workbook, setStyleAction
workbook,setStyleAction
实例----------Examples----------
# Copy existing Excel template to working directory[现有的Excel模板复制到工作目录]
file.copy(system.file("demoFiles/template2.xlsx",
package = "XLConnect"),
"dataformat.xlsx", overwrite = TRUE)
# Load workbook[负载工作簿]
wb <- loadWorkbook("dataformat.xlsx")
# Set the data format for numeric columns (cells)[设置数字列的数据格式(单元格)]
# (keeping the defaults for all other data types)[(保持所有其他数据类型的默认值)]
setDataFormatForType(wb, type = XLC$"DATA_TYPE.NUMERIC",
format = "0.00")
# Set style action to 'data format only'[风格的动作设置为“数据格式”]
setStyleAction(wb, XLC$"STYLE_ACTION.DATA_FORMAT_ONLY")
# Write built-in data set 'mtcars' to the named region [写内置的数据集“mtcars”,到指定的区域]
# 'mtcars' as defined by the Excel template.[“mtcars”所定义的Excel模板。]
writeNamedRegion(wb, mtcars, name = "mtcars")
# Save workbook[保存工作簿]
saveWorkbook(wb)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|