Displaying 6 results from an estimated 6 matches for "ewidth".
Did you mean:
width
2012 May 01
1
error bars for a barchart
...tick.number=7,
tck=c(-1,0)),
panel=function(x, y,groups,...){
panel.barchart(x,y=change$Change,groups=change$Process,origin = 0,...);
panel.abline(h=0,col="black",...);
panel.errbars(x,y,make.grid="none",ewidth=0.2,type="n",...)
}
)
Any ideas of how to add error bars to my plot either using the panel.errbars or any other function?
The data:
structure(list(Treat = structure(c(3L, 4L, 1L, 2L, 3L, 4L, 1L,
2L), .Label = c("12-380", "12-750", "...
2012 May 07
1
How can I brake a label in two lines when using expression()?
...tck=c(-1,0)),
layout=c(4,1),
ylim=1:5,
auto.key=list(title="Treatment",
lines=TRUE,
cex.title=1,
columns=2),
panel=function(x, y,...){
panel.errbars(x,y,make.grid="none",ewidth=0.2,type="p",...)
panel.loess(x[resp.week.mean.rate$Treat=="8-380"],y[resp.week.mean.rate$Treat=="8-380"],span = 5, degree = 1,lwd=2,...)
panel.loess(x[resp.week.mean.rate$Treat=="8-750"],y[resp.week.mean.rate$Treat=="8-750"],span...
2012 May 03
1
braking a label in two lines when using expression()
...tck=c(-1,0)),
layout=c(4,1),
ylim=1:5,
auto.key=list(title="Treatment",
lines=TRUE,
cex.title=1,
columns=2),
panel=function(x, y,...){
panel.errbars(x,y,make.grid="none",ewidth=0.2,type="p",...)
panel.loess(x[resp.week.mean.rate$Treat=="8-380"],y[resp.week.mean.rate$Treat=="8-380"],span = 5, degree = 1,lwd=2,...)
panel.loess(x[resp.week.mean.rate$Treat=="8-750"],y[resp.week.mean.rate$Treat=="8-750"],span...
2009 May 21
0
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On Wed, May 20, 2009 at 4:55 PM, Dan Gohman <gohman at apple.com> wrote:
> Can you explain why you chose the approach of using a new pass?
> I pictured removing LegalizeDAG's type legalization code would
> mostly consist of finding all the places that use TLI.getTypeAction
> and just deleting code for handling its Expand and Promote. Are you
> anticipating something more
2009 May 20
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On May 20, 2009, at 1:34 PM, Eli Friedman wrote:
> On Wed, May 20, 2009 at 1:19 PM, Eli Friedman
> <eli.friedman at gmail.com> wrote:
>
>> Per subject, this patch adding an additional pass to handle vector
>>
>> operations; the idea is that this allows removing the code from
>>
>> LegalizeDAG that handles illegal types, which should be a significant
2009 May 21
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
...ecEVT) {
- // We start with the preferred width, make it a power of 2 and see if
- // we can find a vector type of that width. If not, we reduce it by
- // another power of 2. If we have widen the type, a vector of bytes should
- // always be legal.
- assert(TLI.isTypeLegal(VVT));
- unsigned EWidth = Width + 1;
- do {
- assert(EWidth > 0);
- EWidth = (1 << Log2_32(EWidth-1));
- EVT = MVT::getIntegerVT(EWidth);
- unsigned NumEVT = VVT.getSizeInBits()/EWidth;
- VecEVT = MVT::getVectorVT(EVT, NumEVT);
- } while (!TLI.isTypeLegal(VecEVT) ||
- VVT.getSizeInBits...