Displaying 1 result from an estimated 1 matches for "mv2007".
Did you mean:
m2007
2012 Mar 19
1
Dotplot: how to change size in the y lab ?
...)
require( grid ) ### setup the key
k <- simpleKey( c( "Q2 2007", "January 20th 2009" ) )
k$points$fill <- c("lightblue", "lightgreen")
k$points$pch <- 21
k$points$col <- "black"
k$points$cex <- 1 ### create the plot
dotplot( bank ~ MV2007 + MV2009 , data = d, horiz = T, par.settings = list( superpose.symbol = list( pch = 21, fill = c( "lightblue", "lightgreen"), cex = 4, col = "black" ) ) , xlab = "Market value ($Bn)", key = k, panel = function(x, y, ...){ panel.dotplot( x, y, ... ) g...