> > I want a script of mine to run identify(), and possibly switch to > > interactive mode at some point. Is it possible? in case you're interested, I found myself a solution for my problem. create a file (test.R) containing x=rnorm(100) y=rnorm(100) x11() plot( x,y ) identify(x,y,1:100) then $ R < test.R will do the trick