gpt4 book ai didi

r - 抑制点阵图中的轴

转载 作者:行者123 更新时间:2023-12-04 19:42:42 24 4
gpt4 key购买 nike

我正在使用插入符号的 featurePlot函数来创建一个点阵图。 X 轴和 Y 轴显示在对角框中(见图)。我想抑制这些轴——刻度线和标签。

enter image description here

以为我可以将 scales$draw 设置为 NULL,但这不起作用。这是我尝试过的:

trellisDefaultSettings = trellis.par.get()
trellis.par.set(theme=transparentTheme(trans = .4),
scales$draw=FALSE,
warn=FALSE)

featurePlot(x = features[, -1 * ncol(features)],
y = features$SpeciesName,
plot = "pairs",
auto.key = list(columns = 5))

最佳答案

您可以使用参数 pscales .

例子

library(caret)

featurePlot(x = iris[, -1 * ncol(iris)],
y = iris$Species,
plot = "pairs",
auto.key = list(columns = 3),
pscales=FALSE)

查看 featurePlot 的代码,你可以看到它叫 lattice::splompairs阴谋。此函数的帮助页面描述了要使用的参数(另见 ?panel.pairs)

关于r - 抑制点阵图中的轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37573654/

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