放大并缩小R图

时间:2014-06-03 13:59:20

标签: r plot ggplot2 iplots

我知道问题已经被问到,但我无法解决我的问题。 当我为我的图形选择文本参数时,我得到一个图形未读取,当我选择识别参数时,它不是更好。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,所以我不知道它是否可以解决我的问题。

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

可能有用的工具是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))

enter image description here