gpt4 book ai didi

r - 更改点阵图中 strip 上的文本

转载 作者:行者123 更新时间:2023-12-03 23:27:00 24 4
gpt4 key购买 nike

如何更改点阵图条中显示的文本?
例子:
假设我有一个由 3 列组成的数据框测试

x
[1] 1 2 3 4 5 6 7 8 9 10

y
[1] "A" "A" "A" "A" "A" "B" "B" "B" "B" "B"

a
[1] -1.9952066 -1.7292978 -0.8789127 -0.1322849 -0.1046782 0.4872866
[7] 0.5199228 0.5626998 0.6392686 1.6604549

对格图的正常调用
xyplot(a~x | y,data=test)

将在 strip 上给出带有文本“A”和“B”的情节

我怎样才能在 strip 上写不同的文字?

尝试使用另一个字符向量
z
[1] "a" "a" "a" "a" "a" "b" "b" "b" "b" "b"

并调用 strip.custom()
xyplot(a~x | y,data=test,strip=strip.custom(var.name=z))

没有给出想要的结果。

实际上,这是一个国际化问题。

最佳答案

我认为您想要的可以通过以下方式获得:

z <-c( "a" , "b" ) # Same number of values as there are panels
xyplot(a~x | y,data=test,strip=strip.custom(factor.levels=z))

关于r - 更改点阵图中 strip 上的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7373487/

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