Skip to content
Prev 178257 / 398506 Next

font size relative to graphic

On Fri, 24 Apr 2009, David Winsemius wrote:

            
That is exactly the kind of thing I want to do, but I don't know how the 
font size can be specified so that it fits.  My bars are horizontal and 
yours (from code below) are vertical.  Your barplot output was called "mp" 
and mine was called "x.bar.plot" and here is what they looked like:
[,1] [,2] [,3] [,4] [,5]
[1,]  1.5  6.5 11.5 16.5 21.5
[2,]  2.5  7.5 12.5 17.5 22.5
[3,]  3.5  8.5 13.5 18.5 23.5
[4,]  4.5  9.5 14.5 19.5 24.5
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12]
[1,]  1.5  4.5  7.5 10.5 13.5 16.5 19.5 22.5 25.5  28.5  31.5  34.5
[2,]  2.5  5.5  8.5 11.5 14.5 17.5 20.5 23.5 26.5  29.5  32.5  35.5

They are pretty similar numbers.  It seems that [1,1] element is always 
1.5 and consecutive elements in the same column differ by 1.0, but in the 
rows we see something different: mine are 3.0 apart and yours are 5.0 
apart.  So what does this tell me?  I think fonts are specified in points 
which correspond to 1/72 inches, while bars are specified in coordinates 
that are independent of inches.  So I need to know how coordinates 
correspond to inches before I can get this fixed.

Mike