Hi everybody,
what I'm asking is maybe best explained by example, see the script
below, which calls R. Is something like that possible with gnuplot (and
hence more directly linkable to gretl) ?
thanks
sven
<hansl>
# The following produces a dynamic browser-based plot
# with a slider at the bottom to choose the range
open denmark
foreign language=R --send-data
library(dygraphs) # in turn depends on "magrittr"
moneyincome <- cbind(gretldata[,"LRM"], gretldata[,"LRY"])
dygraph(moneyincome) %>% dyRangeSelector()
end foreign
</hansl>