我有一个像这样的数据框;
yr.class t2 Height_increment
1983 1 12.139344
1984 1 11.621212
1985 1 17.324176
1986 1 16.515504
1987 1 16.359195
1988 1 15.223077
1989 1 15.522972
1990 1 19.207658
1991 1 20.142740
1992 1 19.143021
1993 1 17.280922
1994 1 17.381966
1995 1 16.893162
我制作了以下气泡图,很好;
radius <- sqrt( df$Height_increment/ pi )
symbols(df$yr.class, df$t2, circles=radius, inches=0.25, fg="black", bg="red", xlab="Year class", ylab="Age")
但是我想知道是否有一种拉伸x轴的方法,以便气泡只是垂直重叠。我知道它必须是可能的,因为我在出版物中看到很多这样的布局。我试过改变“英寸”的大小。但这只会让它们太小而不能明显看出差异。
由于 海伦