R: How to solve Error in is.data.frame(x):object ' ' not found?

核能气质少年 提交于 2019-12-13 04:22:40

问题


I tried to save my tweets into .csv, but I faced this error message:

lina=twListToDF(maulina)
Called from: twListToDF(maulina)
write.csv(lina,file='D:/maulina.csv',row.names=F)
Error in is.data.frame(x) : object 'lina' not found

What should I do to solve it?


回答1:


It looks like you have debug set on twListToDF

undebug(twListToDF), then try again



来源:https://stackoverflow.com/questions/20298754/r-how-to-solve-error-in-is-data-framexobject-not-found

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!