【R】ggplot 绘图报错「object 'viewsCount' not found」
histogram_plot <- function(varnames,binwidth,dataset){
graph <- ggplot(aes(x = varnames),data = dataset)+
geom_histogram(binwidth = binwidth)
return(graph)
}
histgram_plot(viewsCount,50,timeline)+
xlim(c(0,8000))
代码如上,新建函数 histogram_plot ,调用此函数时报错。已检查 timeline 数据框中存在变量 viewsCount。
如果传入的是 timeline$viewsCount 则可以正常绘制图形。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ggplot(aes(x = varnames),data = dataset)
修改为
ggplot(aes_string(x = varnames),data = dataset)
ref:What is the difference between aes and aes_string (ggplot2) in R - Stack Overflow