找回密码
 注册
查看: 2993|回复: 0

R语言:make.unique()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-16 17:32:35 | 显示全部楼层 |阅读模式
make.unique(base)
make.unique()所属R语言包:base

                                        Make Character Strings Unique
                                         字符串独特

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Makes the elements of a character vector unique by appending sequence numbers to duplicates.
使一个独特的特征向量追加序列号重复的元素。


用法----------Usage----------


make.unique(names, sep = ".")



参数----------Arguments----------

参数:names
a character vector
字符向量


参数:sep
a character string used to separate a duplicate name from its sequence number.
一个字符串,用来分隔从它的序列号重复的名称。


Details

详情----------Details----------

The algorithm used by make.unique has the property that make.unique(c(A, B)) == make.unique(c(make.unique(A), B)).
make.unique所使用的算法属性make.unique(c(A, B)) == make.unique(c(make.unique(A), B))。

In other words, you can append one string at a time to a vector, making it unique each time, and get the same result as applying make.unique to all of the strings at once.
换句话说,你可以追加一个字符串,在一个时间向量,使得它独特的每一次,并获得相同的结果作为申请make.unique的所有字符串一次。

If character vector A is already unique, then make.unique(c(A, B)) preserves A.
如果字符向量A已经是独特的,那么make.unique(c(A, B))保留A。


值----------Value----------

A character vector of same length as names with duplicates changed, in the current locale's encoding.
特征向量的长度相同names重复改变,在当前语言环境的编码。


作者(S)----------Author(s)----------


Thomas P. Minka



参见----------See Also----------

make.names
make.names


举例----------Examples----------


make.unique(c("a", "a", "a"))
make.unique(c(make.unique(c("a", "a")), "a"))

make.unique(c("a", "a", "a.2", "a"))
make.unique(c(make.unique(c("a", "a")), "a.2", "a"))

rbind(data.frame(x=1), data.frame(x=2), data.frame(x=3))
rbind(rbind(data.frame(x=1), data.frame(x=2)), data.frame(x=3))

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-23 03:52 , Processed in 0.021605 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表