|
如何调整所绘图形的大小?
Windows 平台下,正常情况打开绘图窗口,调整窗口大小,点击菜单直接保存,或使用 savePlot()
函数保存;当然也可以事先用
windows(width = , height = )
打开一个定义好大小的窗口,然后绘图;还可以使用 pdf() ,postscript() , png() ,jpeg() ,pictex() 等
“后台生成” 函数,
## s t a r t a PDF f i l e
pdf("picture.pdf",height=4,width=6)
## your d r a w i n g commands h e r e
dev. off () ### c l o s e the PDF f i l e
这些函数都有设置图形大小的参数;还可以使用
dev.copy(device , file="", height , width)
命令。 |
|