gpt4 book ai didi

R:格函数中的图例

转载 作者:行者123 更新时间:2023-12-02 07:24:34 25 4
gpt4 key购买 nike

我使用 R 的点阵包可视化了一个矩阵,以获得 10x10 的网格。

不幸的是,我在微调方面确实遇到了一些问题。

颜色栏需要一个解释性标题(垂直写在它旁边)。

这里是一个示例代码,可以看看它现在的样子以及一张图片。

library(lattice)

#Build the horizontal and vertical axis information

hor=c("0.0005", "0.001", "0.005", "0.01", "0.05", "0.1", "0.5", "1", "5", "10")
ver=c("1000","2000","3000","4000","5000","6000","7000","8000","9000","10000")

nrowcol=length(ver)
cor = matrix(runif(nrowcol*nrowcol, min=0.4), nrow=nrowcol, ncol=nrowcol, dimnames = list(hor, ver))
for (i in 1:nrowcol) cor[i,i] = 1

rgb.palette <- colorRampPalette(c("blue", "yellow"), space = "rgb")
levelplot(cor, col.regions=rgb.palette(120), cuts=100, at=seq(0,1,0.01),
xlab=expression("DAG depletion rate k"[B49] *" [ s"^"-1"*" ]"),
ylab=expression("PKC activation rate k"[D5] *" [ l / (mol*s) ]"))

你猜我该如何解决这些小问题吗?

最好,非常感谢!

enter image description here

最佳答案

添加这些行,根据需要调整 x 和 y 位置:

library(grid)
grid.text("Here is some text explaining the legend", .77, .5, rot = 270)

screenshot

关于R:格函数中的图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34256194/

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