我正在学习R,这可能是一个非常简单的问题,但是由于某种原因,我无法找到适用于我的案例的先前文章。
我在R中使用函数来创建一个输出表,该输出表具有一个没有标题的单列:
{
$graphLookup: {
"from" : "categories",
"startWith" : "$_id",
"connectFromField": "parentId",
"connectToField" :"_id",
"as" : "parents"
}
}
并想向此单列表添加标题> resp41365_pred413561 = predict(xtree,resp41365,type="class")
> head(resp41365_pred413561)
1 2 3 4 5 6
Feeding/Moving Feeding/Moving Moving/Feeding Feeding/Moving Moving/Feeding Moving/Feeding
Levels: Feeding/Moving Moving/Feeding Standing
。
我尝试过类似的事情:
predicted
我在做什么错?任何帮助表示赞赏!
更新:
我的桌子碰巧是一个向量。通过使用以下方法解决了问题:
> colnames(resp41365_pred413561) <- c("predicted")
Error in `colnames<-`(`*tmp*`, value = "predicted") :
attempt to set 'colnames' on an object with less than two dimensions