animals_plot 发现由于数据在左上角和右下角都有个别分布,导致在坐标轴原点附件数据大量集中。 二、方法1:使用对数坐标轴 animals_plot + scale_x_log10() + scale_y_log10() 坐标轴进行变换后,相同的距离不在表示相同的差值。 三、方法二:数据提前进行对数转换 ggplot(Animals, aes(x = log10(body), y...
animals_plot <- ggplot(Animals, aes(x = body, y = brain, label = rownames(Animals))) + geom_text(size = 3)animals_plot 发现由于数据在左上角和右下角都有个别分布,导致在坐标轴原点附近数据大量集中。二、方法1:使用对数坐标轴 animals_plot + scale_x_log10() + scale_y_log1...