作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题是opinion-based .它目前不接受答案。
想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它.
5年前关闭。
Improve this question
是否有任何 ggplot2 向导知道如何制作 看起来更直观?具体来说,我正在考虑在每个时间段的开始和结束时使用确切的日期进行注释(即,对于真腊来说,条形图将以公元 550 年的注释开始,以公元 802 年的注释结束)。
顺便说一句,我查看了注释文档并没有发现任何视觉上吸引人的东西。但是,像我一样了解 ggplot2 及其软件包系列,我确信那里有一个有吸引力的选择。
我也很好奇你们可能提出的任何其他关于使这更美观的建议。
这是数据:
cambodia = data.frame(Period = c("Funan", "Chenla/Zhenla","Khmer Empire","Dark Ages of Cambodia"),StartDate = c(-500,550,802,1431), EndDate = c(550,802,1431,1863), Color = c("lightblue","lightgreen","lightyellow","pink"))
g2 <- ggplot() +
geom_segment(data=cambodia, aes(x=StartDate, xend=EndDate, y=Period, yend=Period, color=Color), linetype=1, size=2) +
scale_colour_brewer(palette = "Pastel1")+
xlab("Time")+
ylab("Periods of History")+
theme_bw() + theme(panel.grid.minor = element_blank(), panel.grid.major = element_blank()) + theme(aspect.ratio = .2)
g2 + theme(legend.position="none")
最佳答案
这不是一个真正的编程问题,但我认为它仍然很有趣,因为它展示了如何使用 ggplot 的可能性。我会将所有段放在同一高度,并使用 x 轴显示您感兴趣的主要日期(不过,我不确定将文本放在哪里):
ggplot(data=cambodia) +
geom_segment(aes(x=StartDate, xend=EndDate, y=0., yend=0., color=Period) , linetype=1, size=4) +
scale_colour_brewer(palette = "Pastel1")+
scale_y_continuous(limits=c(0,0.5))+
scale_x_continuous(limits=c(-500,2000), breaks= c(seq(0,2000,by=1000), cambodia$StartDate, cambodia$EndDate[4]))+
xlab("Time")+
ylab("Periods of History")+
theme_bw() + theme(panel.grid.minor = element_blank(), panel.grid.major = element_blank(), axis.title.y=element_blank(),axis.text.y=element_blank(), axis.ticks.y=element_blank()) +
theme(aspect.ratio = .2)+
theme(legend.position="none") +
geom_text(aes(x=StartDate-100 + (EndDate- StartDate)/2,y=0.05,label=Period,angle=25,hjust=0))
关于r - ggplot2:在 R 中创建视觉直观的时间线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43213090/
我是一名优秀的程序员,十分优秀!