R编程。为什么观星者不能?
让我们这样做:
oss<- data.frame('ESE' = c('CZZZZ', 'DDZZ', 'DFZZZ', 'FGDZZZZZ'), 'count' = c('1(~0%)', '1(~0%)', '1(~0%)', '1(~0%)'))
如果我们盯着它,我们就会得到
stargazer(oss, rownames = FALSE, summary=FALSE, type = 'text')
==============
ESE count
--------------
CZZZZ 1(
DDZZ 1(
DFZZZ 1(
FGDZZZZZ 1(
--------------
这不好。然后继续。让我们折叠数据帧:
oss1<- cbind(oss[1:2, 1:2], oss[3:4,1:2])
oss1
ESE count ESE count
<fctr> <fctr> <fctr> <fctr>
1 CZZZZ 1(~0%) DFZZZ 1(~0%)
2 DDZZ 1(~0%) FGDZZZZZ 1(~0%)
然后,在观星后:
stargazer(oss1, rownames = FALSE, summary=FALSE, type = 'text')
我们收到一条消息:
if(nchar(text.matrix [r,c])&gt; max.length [real.c]){:缺少值需要TRUE / FALSE
时出错
拜托,谁知道发生了什么以及如何使用stargazer(或nor)来克服它