Displaying 1 result from an estimated 1 matches for "congeners".
Did you mean:
congener
2004 Oct 19
1
barchart fails when grouping variable has more than 7 levels (PR#7293)
...raphics("L_rect", x$x, x$y, x$width, x$height,
valid.just(x$just)) :
invalid line type
The graph that actually results on my trellis device has axes and for the first
sample it manages to 7 of the 17 stacked bars.
As a work-around I have used (I used reps of 50 as another graph has 46
congeners):
my.tpar <- trellis.par.get("superpose.fill")
my.tpar$alpha <- rep(1,50)
my.tpar$border <- rep("black", 50)
my.tpar$lty <- rep(1, 50)
my.tpar$lwd <- rep(1, 50)
trellis.par.set("superpose.fill", my.tpar)
The barchart conequently works.