在一个数据框中,所有列都包含缺失或相同的数据,如果没有colum具有所有值,我怎样才能获得包含所有数据且没有遗漏的向量。
这里的示例数据框架因为我在努力描述我的意思
x <-data.frame(c( "r", "t", "", "y"), c("", "t", "x", "y"), c("r","","x", ""))
期望的输出将是像c("r", "t", "x", "y")
一样的向量,或类似的列。
我尝试过使用duplicated
并且有所区别但尚未设法使用它。
答案 0 :(得分:2)
var timeLineView = $("#TimeLineView");
timeLineView.dataSource.fetch();
timeLineView.refresh();
答案 1 :(得分:0)
我的解决方案有点复杂,但就在这里。
apply(x, 1, function(y) names(table(y)[max(table(y))]))
[1] "r" "t" "x" "y"