可以在R中映射这种情节吗?

时间:2015-11-06 15:11:07

标签: r

这是数据框的样子。

    time density
1    100    1.00
2    101    1.09
3    102    1.18
4    103    1.27
5    104    1.36
6    105    1.45
7    106    1.54
8    107    1.63
9    108    1.72
10   109    1.81

第一列是时间序列,第二列是相应的密度值。任何方法在R中绘制这种情节?水平方向代表时间序列,垂直颜色代表相应的密度。

在此处查看模型模板 enter image description here

1 个答案:

答案 0 :(得分:0)

这是你想要的任何方式吗?

library(ggplot2)

p1 <- ggplot(dat, aes(x=factor(time),y="something",fill=density)) +geom_tile() + coord_fixed()
p1

enter image description here