Displaying 2 results from an estimated 2 matches for "plot_name".
Did you mean:
slot_name
2010 Mar 25
0
Error in png concerning 'type = "cairo"'
Dear R-users,
though i have successfully installed Cairo_1.4-5 package on
my Ubuntu machine,
i become the following error message:
Error in png(plot_name, width = 1600, height = 1200) :
'type = "cairo"' requires cairo >= 1.2 : try 'type =
"cairo1"'
By using
png(plot_name, width = 1600, height = 1200,type = "cairo1")
i become
Warning message:
In png(plot_name, width = 1600, height = 1200, type =
&q...
2007 Apr 02
3
Device drivers - png()/jpeg()
Hallo R-experts,
I produced a R graphic with the help of the following commands:
plot(0:4,0:4, type = "n", xlab = "X-Werte", ylab = "Y-Werte")
points(rnorm(100), rnorm(100), col = "black") locator(2, type= "l")
locator(2, type = "l", col = "red")
I could display this graphic by using windows() before entering those
commands.