Psych24(seriation)
Psych24()所属R语言包:seriation
Psych24 – 24 psychological tests
Psych24 - 24心理测试
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A data set collected by Holzinger and Swineford (1939) which consists of the results of 24 psychological tests given to 145 seventh and eighth grade students in a Chicago suburb. This data set contains the correlation matrix for the 24 test results.
收集的数据集Holzinger和的Swineford(1939年),其中包括145七,八年级学生在芝加哥郊区的24个心理测试的结果。该数据集包含24个测试结果的相关矩阵。
The data set was also used as an example for visualization of cluster analysis by Ling (1973).
也被用来作为数据集可视化聚类分析的一个例子凌(1973)。
用法----------Usage----------
data("Psych24")
格式----------Format----------
A 24 x 24 correlation matrix.
一个24×24的相关矩阵。
参考文献----------References----------
Holzinger, K. L., Swineford, F. (1939): A study in factor analysis: The stability of a bi-factor solution. Supplementary Educational Monograph, No. 48. Chicago: University of Chicago Press.
Ling, R. L. (1973): A computer generated aid for cluster analysis. Communications of the ACM, 16(6), pp. 355–361.
实例----------Examples----------
data("Psych24")
## create a dist object and also get rid of the one negative entry in the[#创建一个dist的对象,也摆脱的一个负项的]
## correlation matrix[#相关矩阵]
d <- as.dist(1 - abs(Psych24))
pimage(d)
## do hclust as in Ling (1973)[#做hclust,在灵(1973)]
hc <- hclust(d, method = "complete")
plot(hc)
pimage(d, hc)
## use seriation[#使用系列化]
order <- seriate(d, method = "tsp")
#order <- seriate(d, method = "tsp", control = list(method = "concorde"))[< - 系列化(D,方法=“TSP”,控制列表(方法=“协和”))]
pimage(d, order)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|