我的数据如下所示:
height <- c(1,2,3,4,2,4,6,8)
weight <- c(12,13,14,15,22,23,24,25)
person <- c("Jack","Jim","Jill","Tess","Jack","Jim","Jill","Tess")
set <- c(1,1,1,1,2,2,2,2)
dat <- data.frame(set,person,height,weight)
twoord.plot
我正在尝试使用包中的函数绘制具有相同 x 轴(人)和 2 个不同 y 轴(体重和身高)的图形plotrix
。但是,我不知道如何像 ggplot2 中那样刻面地块。
例如,如果我的绘图可以覆盖在 ggplot2 中,我的代码将如下所示:
ggplot(data = dat, aes(x = person, y = weight)) +
geom_point(color = "red") + facet_wrap(~set, scales="free")
#And similarly have the height on the other axis.
关于如何在 twoord.plot() 中实现这一点的任何想法?