放大并缩小R图

我知道问题已经被问到,但我无法解决我的问题.

当我为我的图形选择文本参数时,我得到一个图形未读取,当我选择识别参数时,它并不是更好.

这是我得到的这个脚本:

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,所以我不知道它是否可以解决我的问题.

谢谢你的帮助.

最佳答案 可能有用的工具是
ggforce包中的facet_zoom.

我无法访问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))

《放大并缩小R图》

点赞