ud.set.encoding(udunits2)
ud.set.encoding()所属R语言包:udunits2
Set the udunits package level encoding type
设置的udunits的包级别编码类型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function sets the encoding type parameter which is global to the R udunits2 package.
该功能设置的编码类型参数,它是全局性的的R udunits2包。
用法----------Usage----------
ud.set.encoding(enc.string)
参数----------Arguments----------
参数:enc.string
A character string representing the encoding type. Valid strings are utf8,ascii,iso-8859-1,and latin1 (an alias for ISO-8859-1).
一个字符串的编码类型。有效的字符串是utf8,ascii,iso-8859-1和latin1 ISO-8859-1(化名)。
Details
详细信息----------Details----------
Encoding type is a parameter to nearly all of the functions in the udunits library. By default, the R udunits2 pacakge sets the encoding type to UTF-8, however this package allows the user to set other encoding types which are supported by the udunits library. It presently suports UTF-8, ASCII, and ISO-8859-1
编码类型是一个参数,几乎所有功能在udunits库。默认情况下,在R udunits2线路咨询设置为UTF-8的编码类型,但是这个包允许用户设置所支持的其他编码类型的udunits库。目前suports UTF-8,ASCII,ISO-8859-1
值----------Value----------
Returns no value. Raises an error if it is not given a valid encoding string.
没有返回值。引发一个错误,如果它没有给出一个有效的编码字符串。
(作者)----------Author(s)----------
James Hiebert <a href="mailto:hiebert@uvic.ca">hiebert@uvic.ca</a>
参考文献----------References----------
http://www.unidata.ucar.edu/software/udunits/ API guide chapter on data types: http://www.unidata.ucar.edu/software/udunits/udunits-2/udunits2lib.html#Types
实例----------Examples----------
valid.enc.strings <- c('utf8', 'ascii', 'iso-8859-1', 'latin1')
lapply(valid.enc.strings, ud.set.encoding)
err <- try(ud.set.encoding("This will fail"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|