
tabplot( M,
col,
border = "black",
lwd = 2,
collabs = TRUE,
rowlabs = NULL,
equal = FALSE,
las = 1,
main = NULL,
cex.main = 1.0,
vaxis = FALSE )
rainbow()
.mosaicplot
, but is restricted to two-way tables as
input.barplot
, plot.table
,
mosaicplot
b <- sample( letters[1:4], 300, replace=TRUE, prob=c(3,1,2,4)/10 )
a <- rnorm( 300 ) - as.integer( factor( b ) ) / 8
tb <- table( cut( a, -3:2 ), b )
tabplot( tb )
tabplot( tb, rowlabs="right", col=heat.colors )
# Very similar plots
ptb <- sweep( tb, 2, apply( tb, 2, sum ), "/" )
par( mfrow=c(2,2) )
barplot( ptb, space=0 )
tabplot( tb, equal=TRUE, lwd=1 )
tabplot( tb, equal=TRUE, lwd=1, rowlabs="l" )
tabplot( tb, equal=FALSE, lwd=1, rowlabs="l" )
Run the code above in your browser using DataLab