资源简介
使用weka.jar包,只有两个java文件,有一个是House类(定义一个样本及其属性),还有一个就是基于House类生成每一个样本的arff文件代码
代码片段和文件信息
package weka_hello;
public class House {
public int houseSize;
public int lotSize;
public int bedrooms;
public int granite;
public int bathroom;
public int sellingPrice;
public House(int houseSize int lotSize int bedrooms int granite int bathroom int sellingPrice) {
super();
this.houseSize = houseSize;
this.lotSize = lotSize;
this.bedrooms = bedrooms;
this.granite = granite;
this.bathroom = bathroom;
this.sellingPrice = sellingPrice;
}
public int getHouseSize() {
return houseSize;
}
public void setHouseSize(int houseSize) {
this.houseSize = houseSize;
}
public int getLotSize() {
return lotSize;
}
public void setLotSize(int lotSize) {
this.lotSize = lotSize;
}
public int getBedrooms() {
return bedrooms;
}
public void setBedrooms(int bedrooms) {
this.bedrooms = bedrooms;
}
public int getGranite() {
return granite;
}
public void setGranite(int granite) {
this.granite = granite;
}
public int getBathroom() {
return bathroom;
}
public void setBathroom(int bathroom) {
this.bathroom = bathroom;
}
public int getSellingPrice() {
return sellingPrice;
}
public void setSellingPrice(int sellingPrice) {
this.sellingPrice = sellingPrice;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-09-03 08:50 weka_hello\
文件 374 2017-07-20 22:09 weka_hello\.classpath
文件 386 2017-07-20 22:08 weka_hello\.project
目录 0 2017-07-20 22:08 weka_hello\.settings\
文件 598 2017-07-20 22:08 weka_hello\.settings\org.eclipse.jdt.core.prefs
目录 0 2017-08-28 14:44 weka_hello\bin\
目录 0 2017-08-28 14:44 weka_hello\bin\weka_hello\
文件 1585 2017-08-28 14:44 weka_hello\bin\weka_hello\House.class
文件 3117 2017-08-28 14:44 weka_hello\bin\weka_hello\Main.class
目录 0 2017-09-03 08:50 weka_hello\lib\
文件 11025147 2016-12-19 06:17 weka_hello\lib\weka.jar
目录 0 2017-07-20 22:09 weka_hello\src\
目录 0 2017-07-21 11:33 weka_hello\src\weka_hello\
文件 1283 2017-07-21 14:02 weka_hello\src\weka_hello\House.java
文件 2329 2017-07-21 14:10 weka_hello\src\weka_hello\Main.java
- 上一篇:公交查询系统工程文件
- 下一篇:MPChart源码
相关资源
- weka开发java版jar包和源码
- Weka同步课本-Data_Mining
- weka.jar和weka.zip源码 API
- weka 3-8全部源码
- weka 3.8 jar 包
- weka3.4.13
- weka.jar libsvm.jar wlsvm.jar
- Weka 3.7.9 windows操作系统
- weka3-8-3 64位安装包
- 基于WEKA的高校图书馆流通数据的数据
- 数据挖掘机器学习课程报告及weka源码
- weka软件安装包
- weka 稳定版3-6-13 (包括32位和64位)
- 机器学习工具weka
- weka jar包
- Weka 中文版 v0.3 发布 基于weka 3.7.12 x
- 一份绝对完整的weka数据集与配套教材
- WEKA快速入门含银行数据集bank-data及天
- 模糊C均值聚类weka
- 使用weka非常有用的libsvm.jar 和wlsvm.j
- 局部加权朴素贝叶斯
- WEKA运行libsvm的wlsvm.jar
- WEKA运行libsvm的libsvm.jar
- LIBSVM工具包可以在weka中使用并被JAV
评论
共有 条评论