tests/barplot_s.R

#$HeadURL: file:///srv/svn/sintro/pkg/sprof/tests/barplot_s.R $
#$Id: barplot_s.R 180 2013-07-24 16:27:41Z gsawitzki $
#$Revision: 180 $
#$Date: 2013-07-24 18:27:41 +0200 (Wed, 24 Jul 2013) $
#$Author: gsawitzki $
#
# source('~/projects/rforge/sintro/pkg/sprof/R/barplot_s.R', chdir = TRUE)
#

# convert list to matrix
# list entries go to matrix columns, filled for equal length 
library(sprof)

n <- 32
x <- runif(n)

oldpar <- par(mfrow=c(3,2))

#1
barplot_s(x) #ok

#2
barplot_s(x, decreasing=FALSE) #legend pos

names(x) <- rownames(x,do.NULL=FALSE, prefix="V")

#3
barplot_s(x, lowtrim=0.1, hightrim=0.8) 

#4
barplot_s(x, lowtrim=0.2, hightrim=0.9, trimlegend=FALSE)

#5
barplot_s(x, colfun="grey")

#6
barplot_s(x, colfun=heat.colors, xpd=FALSE) # xpd not honoured

par(oldpar)

Try the sprof package in your browser

Any scripts or data that you put into this service are public.

sprof documentation built on May 2, 2019, 4:45 p.m.