使用 ggplot2 绘图。错误
我正在尝试使用 ggplot2 包绘制数据,但出现错误: 数据是一组列,代表每天的值(值随海拔高度变化)
V1 V2.... V500
2E-15.....3E-14
3e-14.....3E-21
1.3E-15....NA
我想在两个轴上绘制所有数据并填充值。
代码;
a<-data.frame("/../vertical_value.csv",sep=",",header=F)
am<-melt(t(a))
dataset<-expand.grid(X = 1:500, H = seq(1,25,by=1))
dataset$axp<-am$value
g<-ggplot(dataset, aes(x = X, y = H, fill = axp)) + geom_tile()
错误:
Error: Casting formula contains variables not found in molten data: XHaxp
I am trying to plot the data using the ggplot2 package, but I am crossing with an error:
the data are set of columns which represents every day values (the values change in altitude)
V1 V2.... V500
2E-15.....3E-14
3e-14.....3E-21
1.3E-15....NA
I want to plot all the data in two axis with a fill of the values.
Code;
a<-data.frame("/../vertical_value.csv",sep=",",header=F)
am<-melt(t(a))
dataset<-expand.grid(X = 1:500, H = seq(1,25,by=1))
dataset$axp<-am$value
g<-ggplot(dataset, aes(x = X, y = H, fill = axp)) + geom_tile()
error:
Error: Casting formula contains variables not found in molten data: XHaxp
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
再看一遍,我认为您应该能够通过在融化后删除 NA 行来绕过这个问题。
Looking at this again, I think that you should be able to bypass this just by dropping NA rows after you melt.