GGally::ggpairs
函数提供对数值和分类数据类型的支持,从而可以在一个地方通过几行代码查看所有变量之间的交互,但具有很高的灵活性。
这是一个例子:
cols = c("#4c86ad", "#f5dfb3")
insurance_data %>%
dplyr::select(age, bmi, smoker, charges) %>%
GGally::ggpairs(
lower = list(
continuous = GGally::wrap("points", col = cols[1],alpha=0.6),
combo = GGally::wrap("box", fill = "white", col ="black")
),
upper = list(
continuous = GGally::wrap("cor", col = cols[1]),
combo = GGally::wrap("facetdensity", col = "black")
),
diag = list(
continuous = GGally::wrap("barDiag", fill = cols[2], col ="black", bins = 18),
discrete = GGally::wrap("barDiag", fill = cols[2], col ="black"))
)
有没有办法在 python 中重现这个?