Hi members,

I have rpanel with one rp.slider (package rpanel), and this call the
function draw (See bellow) .
This function draw plot one graph and one image.

##########################
# EXAMPLE
draw<- function(panel)
  {
      par(mfrow=c(1,2))
      plot(1:panel$Col, type = "o")
      image(as.matrix(1:panel$Col))
  }

rpplot <- rp.control()

rp.slider(rpplot, Col,from = 5, to =  10, action = draw) # slider button

########################

First question:is it possible to plot the graph and the image in separate
windows?
Second Question: When use the slider button the function draw will upgrade
the plot in each windows, in other words, upgrade graphs without opening
new windows?

Thanks,
Julio

        [[alternative HTML version deleted]]

_______________________________________________
R-sig-Geo mailing list
R-sig-Geo@r-project.org
https://stat.ethz.ch/mailman/listinfo/r-sig-geo

Reply via email to