Here are many half answers:
- RStudio supports scaling for existing graphics
- You can set xlim and ylim to a plot that has already been made (it is assumed that the graph did not take much time to generate), for example.
plot(1:10, xlim = c(3,5), ylim = c(4,6)) - You can save your schedule on a scalable device and enlarge another program, ala
pdf() . - See the
getGraphicsEvent() man page. It may be platform dependent, but the code there describes it to some extent.
Probably, some new things in works based on Qt and / or RGGobi may be possible.
Chase source share