Displaying 6 results from an estimated 6 matches for "l_rect".
Did you mean:
l_recs
2012 Jun 04
1
X11 font error on headless server running Xvfb
...ges:
1: In grid.Call.graphics(L_text, as.graphicsAnnot(x$label), x$x, x$y, :
X11 protocol error: BadMatch (invalid parameter attributes)
2: In grid.Call.graphics(L_text, as.graphicsAnnot(x$label), x$x, x$y, :
X11 protocol error: BadMatch (invalid parameter attributes)
3: In grid.Call.graphics(L_rect, x$x, x$y, x$width, x$height, resolveHJust(x$just, :
X11 protocol error: BadMatch (invalid parameter attributes)
4: In grid.Call.graphics(L_rect, x$x, x$y, x$width, x$height, resolveHJust(x$just, :
X11 protocol error: BadMatch (invalid parameter attributes)
5: In grid.Call.graphics(L_text, as...
2004 Oct 19
1
barchart fails when grouping variable has more than 7 levels (PR#7293)
...archart(100*result ~ sample,
groups=congener,
data=dioxin.2003.fresh.ub.p, stack=TRUE, ylim=c(0,102)))
to draw a stacked barchart of the precentage contribution of each type of dioxin
congener. Now, however I get the following error.
Error in grid.Call.graphics("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...
2005 Nov 15
1
combination xyplot and barchart?
...viro$Temp, type='l',subscripts=subscripts, ...);
panel.barchart(x=enviro$Day, y=enviro$Precip, subscripts=subscripts,
...)})
Two panels are produced; however, both years' data are plotted in each
panel (panels look identical). And I get this error:
Error in grid.Call.graphics("L_rect", x$x, x$y, x$width, x$height,
resolveHJust(x$just, :
invalid line type
From the documentation or the help archives, I cannot understand how to:
1) indicate a conditioning variable (Year) for panel.barchart and
panel.xyplot
2) have 2 y axes with different scales in one panel
Is this eve...
2011 Aug 16
1
Query for semi-transparency support
In ?par there is the following line:
"Semi-transparent colors are available for use on devices that support them."
I'm looking for a way to query for that support on the current device.
I'm pretty sure that this functionality exists at some level as I
remember seeing warnings to this effect but my searches have come up
empty. Is anyone familiar with a direct path to this
2006 Dec 08
1
missing factor levels in a lattice barchart panel cause unexpected failure
Hi all - I'm trying to generate lattice barchart graphs with missing
values, and came across the following:
This does not run. I would expect it to:
library(lattice)
D = data.frame(X=1, Y=factor(letters[2], letters[1:2]))
barchart(~ X, D, groups=Y)
Error in grid.Call.graphics("L_rect", x$x, x$y, x$width, x$height,
resolveHJust(x$just, :
invalid line type
which is simply solved by changing the factor levels:
D$Y = factor(D$Y)
barchart(~ X, D, groups=Y)
or by filling factor levels from the bottom:
D = data.frame(X=1, Y=factor(letters[1], letters[1:2]))
barchart(~ X,...
barchart error (invalid line type) maybe caused by mangled data frame, & fix() resolving the problem
2005 Mar 02
1
barchart error (invalid line type) maybe caused by mangled data frame, & fix() resolving the problem
...lues per year stacked. So I type:
> barchart(uint ~ month, data=b, stack=TRUE, horizontal=F, groups=year,
> xlab="Month", ylab="Count"
> )
The trellis window pops up and I after drawing one bar I get this error
message:
> Error in grid.Call.graphics("L_rect", x$x, x$y, x$width, x$height, valid.just(x$just)) :
> invalid line type
I tried several things to resolve the problem. Rather by accident I typed:
> fix(b)
After trying the barchart() function again, it was properly displayed.
I guess that the data.frame is somehow messed u...