我只是尝试在包中使用naiveBayes
函数。e1071
这是过程:
>library(e1071)
>data(iris)
>head(iris, n=5)
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
1 5.1 3.5 1.4 0.2 setosa
2 4.9 3.0 1.4 0.2 setosa
3 4.7 3.2 1.3 0.2 setosa
4 4.6 3.1 1.5 0.2 setosa
5 5.0 3.6 1.4 0.2 setosa
>model <-naiveBayes(Species~., data = iris)
> pred <- predict(model, newdata = iris, type = 'raw')
> head(pred, n=5)
setosa versicolor virginica
[1,] 1.00000 2.981309e-18 2.152373e-25
[2,] 1.00000 3.169312e-17 6.938030e-25
[3,] 1.00000 2.367113e-18 7.240956e-26
[4,] 1.00000 3.069606e-17 8.690636e-25
[5,] 1.00000 1.017337e-18 8.885794e-26
到目前为止,一切都很好。在下一步中,我尝试创建一个新数据点并使用 naivebayes 模型 ( model
) 来预测类变量 ( Species
),然后我选择了一个训练数据点。
> test = c(5.1, 3.5, 1.4, 0.2)
> prob <- predict(model, newdata = test, type=('raw'))
结果如下:
> prob
setosa versicolor virginica
[1,] 0.3333333 0.3333333 0.3333333
[2,] 0.3333333 0.3333333 0.3333333
[3,] 0.3333333 0.3333333 0.3333333
[4,] 0.3333333 0.3333333 0.3333333
而且很奇怪。我使用的数据点test
是数据集的行iris
。根据实际数据,该数据点的类变量为setosa
:
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
1 5.1 3.5 1.4 0.2 setosa
并naiveBayes
正确预测:
setosa versicolor virginica
[1,] 1.00000 2.981309e-18 2.152373e-25
但是当我尝试预测test
数据点时,它会返回不正确的结果。当我只寻找一个数据点的预测时,为什么它会返回预测的四行?我做错了吗?