A Closer Look at Clustring in SPlus仔细看看在SPLUS聚类.ppt

A Closer Look at Clustring in SPlus仔细看看在SPLUS聚类.ppt

  1. 1、本文档共39页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
A Closer Look at Clustring in SPlus仔细看看在SPLUS聚类

A Closer Look at Clustering in S-Plus Getting Your Data Into S-PLUS mm - matrix( scan(mfile), ncol=5, byrow=TRUE) #read all rows from the file where there are 5 columns in each #row Reading In Tabular Data read.table(file, header=see below, sep, row.names, col.names,as.is=F, na.strings=NA, skip=0) header = T means that the first line of the file is used for the variable names in our data frame row.names = A variable that indicates the row names. It can be a vector of the same length as our table, or a number that points to a particular column where the variable names reside, or else the numbers from 1 to the length of our table are used. col.names = A variable that provides the column names in the absence of header = T. If nothing is provided then S-PLUS uses V concatenated with the field name. as.is = Logical that determines whether non-numeric variables are turned into character strings or not. Example 1 - Reading Tabular Data Price Floor Area Rooms Age Cent.heat 01 52.00 111.0 830 5 6.2 no 02 54.75 128.0 710 5 7.5 no floor-read.table(c:/floor.txt) attributes(floor) $names: [1] Price Floor Area Rooms [5] Age Cent.heat $class: [1] data.frame $row.names: [1] 1 2 Example 2 - Reading Tabular Data Price Floor Area Rooms Age Cent.heat 52.00 111.0 830 5 6.2 no 54.75 128.0 710 5 7.5 no floor-read.table(c:/floor.txt) attributes(floor) $names: [1] V2 V3 V4 V5 V6 $class: [1] data.frame $row.names: [1] Price 52.00 54.75 floor V2 V3 V4 V5 V6 Price Floor Area Rooms Age Cent.heat 52.00 111.0 830 5 6.2 no 54.75 128.0 710 5 7.5 no Example 3 - Reading Tabular Data Price Floor Area Rooms Age Cent.heat 52.00 111.0 830 5 6.2 no 54.75 128.0 710 5 7.5 no floor-read.table(c:/floor.txt,header=T,row.names=NULL) attributes(floor) $names: [1] Price Floor Area Rooms [5] Age Cent.heat $class: [1] data.frame $row.names: [1] 1 2 Example Da

文档评论(0)

erterye + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档