bright.stars(UsingR)
bright.stars()所属R语言包:UsingR
List of bright stars with Hipparcos catalog number
Hipparcos星表编号明亮的星星
译者:生物统计家园网 机器人LoveR
描述----------Description----------
List of bright stars with Hipparcos catalog number.
明亮的恒星的Hipparcos星表编号的列表。
用法----------Usage----------
data(bright.stars)
格式----------Format----------
A data frame with 96 observations on the following 2 variables.
96个观察以下2个变量的数据框。
name Common name of star
命名的通用名称,明星
hip HIP number for identification
HIP HIP识别号
Details
详细信息----------Details----------
The source of star names goes back to the Greeks and Arabs. Few are modern. This is a list of 96 common stars.
明星的名字的来源可以追溯到古希腊人和阿拉伯人。很少是现代的。 96个常见的星星,这是一个列表。
源----------Source----------
Form the Hipparcos website http://astro.estec.esa.nl/Hipparcos/ident6.html.
依巴谷网站http://astro.estec.esa.nl/Hipparcos/ident6.html。
实例----------Examples----------
data(bright.stars)
all.names = paste(bright.stars$name, sep="", collapse="")
x = unlist(strsplit(tolower(all.names), ""))
letter.dist = sapply(letters, function(i) sum(x == i))
data(scrabble) # for frequency info[频率信息]
p = scrabble$frequency[1:26];p=p/sum(p)
chisq.test(letter.dist, p=p) # compare with English[与英语]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|