view {TeXmacs} | R Documentation |
Once a graph is plotted and ready to go into the TeXmacs buffer, you insert it into the buffer using the v() function. The plotv, linev, and pointsv are just shortcuts for plot and then v.
v(width = 4, height = 4, ...) plotv(...) pointsv(...) linev(...)
width |
Width of graph in inches. |
height |
Height of graph in inches. |
... |
Additional arguments for postscript. |
Michael Lachmann Tamarlin
See Also TeXmacs
,
x<-(0:600)/100; plot(x,sin(x),type="l"); lines(x,cos(x),col=2); legend(0,-0.5,c("sin(x)","cos(x)"),lty=1,col=c(1:2)); v(); plotv(x,sin(60/x),type="l");