gpt4 book ai didi

r - 放大和缩小 R 图形

转载 作者:行者123 更新时间:2023-12-04 12:01:54 27 4
gpt4 key购买 nike

我知道这个问题已经有人问过了,但我无法解决我的问题。
当我为我的图表选择文本参数时,我得到一个未读取的图表,当我选择识别参数时,它并不是更好。 enter image description here

这就是我从这个脚本中得到的:

VehiculeFunction <- function(data, gamme, absciss, ordinate, label, xlim, ylim){
my.data <- data[data$GAMME == gamme,]
ma.col = rgb(red = 0.1,blue = 1,green = 0.1, alpha = 0.2)
X <- my.data[[absciss]]
Y <- my.data[[ordinate]]
Z <- my.data[[label]]
X11()
plot(X, Y, pch=20, las = 1, col = ma.col, xlab = absciss, ylab = ordinate, xlim = xlim, ylim = ylim)
text(X, Y, labels = Z, pos=3, cex = 0.7, col = ma.col)
#identify(X, Y, labels = Z, cex = 0.7)
}

VehiculeFunction(data.vehicule, "I", "GMF.24", "Cout.24", "NITG", c(0,0.2), c(0,0.2))

我使用了 iplot,但我无法添加识别和文本参数...
我从未使用过 ggplot,所以我不知道它是否可以解决我的问题。

谢谢你的帮助。

最佳答案

一个可能有帮助的工具是 facet_zoom来自 ggforce 包裹。

我无权访问 data.vehicule对象,所以我将使用 mtcars data.frame有关放大图形区域的示例。

library(ggplot2)
library(ggforce)
library(dplyr)

mtcars2 <- mtcars %>% mutate(nm = rownames(mtcars))

ggplot(mtcars2) +
aes(x = wt, y = mpg, label = nm) +
geom_text()

last_plot() +
theme_bw() +
facet_zoom(x = dplyr::between(wt, 3, 4),
y = dplyr::between(mpg, 12, 17))

enter image description here

关于r - 放大和缩小 R 图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24017170/

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