I'm trying to make very simple GUI for my script. In nutshell problem looks like that :
data is dataframe, each column is a time series. I want to plot one time series at time and to use simple GUI for moving to next or previous time series and to have possibility to put number of time series/column manually into interface.
Example with simple code :
data<-data.frame(rnorm(11),rnorm(11),rnorm(11))
i=1
fplot<-function(i,data=data){
plot(data[,i])
}
and now how to use tcltk for calling fplot with different i ( by default plot for i=1 ) and after pressing first button call 'fplot' for i decreased by 1 and second one for increased by 1 and to optionally put value of i manually into GUI interface.
This seems to be really easy, but after looking into tcltk documentation I'm still in point where I've started.