您好:我玩弄了``提示“”的数据为我教的课程设置。 我想产生具有尖的曲线为大小对打印设备(理想地在中心顶部,窗口的)的顶行功能的一个PNG文件和底行是调理情节尖端通过从包含在数据集中的total_bill变量重新编码分类变量分组大小的函数。 我更熟悉的环境GGPLOT2,虽然我不能完全弄清楚如何做到这一点那边。 谢谢!
library(reshape2)
library(grid)
library(lattice)
data(tips)
tips$bill2<-cut(tips$total_bill, breaks=3, labels=c('low', 'medium', 'high'))
#Create one plot window with this plot on the top row, ideally in the center
xyplot(tip~size, data=tips,type=c('r', 'p'))
#With this plot in the second row
xyplot(tip~size|bill2, data=tips, type=c('r', 'p'))