gpt4 book ai didi

r - 在 grImport 的图片类中更改颜色

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

我找到了一个很棒的包 grImport 用于读取 .ps 文件(矢量与光栅)。它工作得很好,读者可以在这里找到包信息:

http://cran.r-project.org/web/packages/grImport/grImport.pdf

这里有一个演示:

https://www.stat.auckland.ac.nz/~paul/R/grImport/import.pdf

我希望能够更改 Picture 类对象中插槽的颜色,但不知道如何更改。所以使用这段代码:

library(grImport); library(grid)
## Create a generic .ps file to read in
postscript("foo.ps")
plot.new()
text(.5, 0.5, "A", cex = 45)
dev.off()

## read in the .ps object
PostScriptTrace("foo.ps")
foo <- readPicture("foo.ps.xml")
grid.picture(foo)

如何更改对象 foo 以使 A 绘图为浅灰色,比如 #D0D0D0

我试过:

class(foo)
foo
foo@rgb

我认为这是一个 S4 对象,这可能就是我苦苦挣扎的原因(我对 s4 不熟悉)。

最佳答案

使用str探索S4对象的结构:

R> str(foo)
Formal class 'Picture' [package "grImport"] with 2 slots
..@ paths :List of 1
.. ..$ text:Formal class 'PictureText' [package "grImport"] with 14 slots
.. .. .. ..@ string : Named chr "A"
.. .. .. .. ..- attr(*, "names")= chr "string"
.. .. .. ..@ w : num 3602
.. .. .. ..@ h : num 5400
.. .. .. ..@ bbox : num [1:4] 904 2644 4840 6154
.. .. .. ..@ angle : num 90
.. .. .. ..@ letters :List of 1

...

可以通过以下方式改变颜色:

foo@paths$text@letters$path@rgb <- "#D0D0D0"

关于r - 在 grImport 的图片类中更改颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23002825/

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