R模型创建无效

时间:2018-07-05 13:56:35

标签: r prediction decision-tree

我正在尝试在R中构建预测模型,但是没有方法有效。 我从csv文件读取数据以建立列表:

$j=0;

然后,我过滤数据进行训练:

//...
$detailing = $data->details; //this is an array
$i=0; //changed this

foreach ($detailing as  $value) {
//...

然后我使用软件包rpart来创建决策树

data <- read.table("data.csv",header=T,sep=";")

接下来是对训练数据进行预测以对其进行评估

trainings <- data [!is.na(data$isWorking),]

不幸的是,我的预测结果没有得到0和1。其他过程(例如knn,randomforest等)也不起作用。

这是如果我绘制预测的结果。通常,它应该是0和1。

Plot of prediction

0 个答案:

没有答案