gpt4 book ai didi

r - 更改/减少 GGally 和 ggpairs 中的点大小

转载 作者:行者123 更新时间:2023-12-04 01:46:31 31 4
gpt4 key购买 nike

ggpairs 中的点太大了。我如何使它们变小?

最佳答案

这基本上需要阅读帮助页面并完成示例。事实证明,有(至少)两组不同的属性可能会影响点的大小。下面你会看到我找到的两个。

require(ggplot2)
require(GGally)
data(diamonds, package="ggplot2")
diamonds.samp <- diamonds[sample(1:dim(diamonds)[1], 200), ]

# Custom Example ( almost directly from help page)
pm <- ggpairs(
diamonds.samp[, 1:5],
mapping = ggplot2::aes(color = cut),
upper = list(continuous = wrap("density", alpha = 0.5), combo = "box"),
lower = list(continuous = wrap("points", alpha = 0.3, size=0.1),
combo = wrap("dot", alpha = 0.4, size=0.2) ),
title = "Diamonds"
)
pm

关于r - 更改/减少 GGally 和 ggpairs 中的点大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36531906/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com