Displaying 3 results from an estimated 3 matches for "vcex".
Did you mean:
cex
2010 Mar 09
3
Fine Tuning Plotrix
...roPDF("matrix2D.pdf")
par( mar = c(4.5,5, 2, 1) + 0.1)
color2D.matplot(trivial_matrix,main="A trivial Plot",xlab =
expression(paste(k)),
ylab=expression(paste(R[g])),cex.axis=1.4,cex.lab=1.6, cex.main=1.6,
show.legend=TRUE, show.values=1,vcol="blue",
vcex=1, axes=TRUE)
dev.off()
2010 Jun 23
5
Plotrix Trick
...ng figure
pdf("test_color_scale.pdf")
oldpar<-par( mar = c(4.5,5, 2, 1) + 0.1,
cex.axis=1.4,cex.lab=1.6,cex.main=1.6)
color2D.matplot(A,main="Title",c(0.2,1),c(0.2,0.5),c(0,0),
xlab = "",
ylab="",
show.legend=TRUE,
show.values=1,vcol="black",vcex=1, axes=FALSE)
## axis(1,at=c(0.5,1.5,2.5,3.5,4.5),labels=prefix_vec_short)
## axis(2,at=rev(c(0.5,1.5,2.5,3.5,4.5)),labels=prefix_vec_short)
box()
par(oldpar)
dev.off()
#this looks better, but in each cell I would like to see the same
#numbers as before.
pdf("test_color_scale_log.pdf"...
2010 Apr 23
2
3D Plot
Hi guys of the R-Help-Team!<br /><br />First of all - you do a great job!<br
/>I've found a lot of your mails in the internet. So I thought it would be a
good idea to ask you a question about R.<br /><br />R is new to me, so sorry,
if the question is too simple :)<br /><br />I have a matrix.<br />I can make a
2D Heatmap of this matrix.<br