7

gWidgetsRGtk2 を使用して GUI を構築していますが、gbutton のクリックで ggplot を表示するのに問題があります。プロット関数はそれ自体で (つまり、"plotData()" と入力すると) 機能しますが、gWidgets では機能しません。gWidgets と ggplot2 に互換性の問題がありますか、それとも関数を正しく呼び出していませんか? コードを短くシンプルにするために、GUI から他のすべてを削除しました。プロットは次のようになります。

偽の同位体データ

library(ggplot2)
library(gWidgets)
library(gWidgetsRGtk2)

require(gWidgets)
options("guiToolkit"="RGtk2")

X<-cbind(runif(120,min=-22,max=-17),runif(120,min=6,max=12))
MU<-matrix(c(-18.96,-15.86,-24.67,4.04,13.57,9.69),nrow=3,ncol=2)
SIG<-matrix(c(0.6,0.77,0.85,0.85,0.55,0.90),nrow=3,ncol=2)

plotData = function(h,...)
{
C_err <- 0.3
N_err <- 1.0
df <- data.frame(x = X[,1],
    y = X[,2],
    ymin = X[,2] - N_err,
    ymax = X[,2] + N_err,
    xmin = X[,1] - C_err,
    xmax = X[,1] + C_err)

df_MU <- data.frame(x=MU[,1], y=MU[,2], 
    ymin = MU[,2] - SIG[,2],
    ymax = MU[,2] + SIG[,2],
    xmin = MU[,1] - SIG[,1],
    xmax = MU[,1] + SIG[,1])

ggplot(data = df,aes(x = x,y = y)) + 
  geom_point() + 
  geom_errorbar(aes(ymin = ymin,ymax = ymax)) + 
  geom_errorbarh(aes(xmin = xmin,xmax = xmax)) +
  geom_pointrange(data=df_MU,aes(ymin=ymin,ymax=ymax),colour=c('red','blue','green'),size=1) +
  geom_errorbarh(data=df_MU,aes(xmin=xmin,xmax=xmax),colour=c('red','blue','green'),size=1,height=0) +
  ggtitle("Isotope Data") +
  ylab("d15N (%)") +
  xlab("d13C (%)") +
  theme_bw()
}

win<-gwindow()
grp_all <- ggroup(container=win, horizontal=F)
plot_button <- gbutton(
  text = "Plot data",
  container = grp_all,
  expand = TRUE,
  handler = plotData
)
4

1 に答える 1

0

RGuiを使用する場合は、関数でに変更する必要がありggplot(...)ます。ただし、R Studioを使用する場合はこれだけでは不十分であり、空白行も入力する必要があります。つまり、[データのプロット]ボタンをクリックした後、コンソールで[Enter]キーを押します。print(ggplot(...))plotData

于 2012-12-15T19:34:29.937 に答える