search for: bres

Displaying 3 results from an estimated 3 matches for "bres".

Did you mean: bree
2005 Jul 05
1
by (tapply) and for loop differences
...x.mn + pval = res$p.value + cat("Mean xvar =", x.mn, " Mean yvar =", y.mn) + cat(" diff =", diff, " p-value=", pval, "\n\n") + list(x.mn=x.mn, y.mn=y.mn, diff=diff, pval=pval) + } ## Results from by and tapply > attach(sdat) > bres = by(xvar, num, kindtest, yvar) Mean xvar = 19.8904 Mean yvar = 21.97729 diff = 2.086891 p-value= 0.06222805 Mean xvar = 19.88329 Mean yvar = 21.97729 diff = 2.093996 p-value= 0.05245329 > tres = tapply(xvar, num, kindtest, yvar) Mean xvar = 19.8904 Mean yvar = 21.97729 diff = 2.08...
2012 Nov 16
4
[LLVMdev] Proposal: Enhance FileCheck's variable matching capabilities
...kreferences in matches. This then allows to find all references to a variable defined on the same line and substitute them by backrefs. Luckily, our regex implementation already supports backreferences, although a bit of hacking is required to enable it. It supports both Basic Regular Expressions (BREs) and Extended Regular Expressions (EREs), without supporting backrefs for EREs, following POSIX strictly in this respect. And EREs is what we actually use (rightly). This is contrary to many implementations (including the default on Linux) of POSIX regexes, that do allow backrefs in EREs. Adding b...
2012 Nov 17
0
[LLVMdev] Proposal: Enhance FileCheck's variable matching capabilities
...then allows to find > all references to a variable defined on the same line and substitute > them by backrefs. > > Luckily, our regex implementation already supports backreferences, > although a bit of hacking is required to enable it. It supports both > Basic Regular Expressions (BREs) and Extended Regular Expressions > (EREs), without supporting backrefs for EREs, following POSIX strictly > in this respect. And EREs is what we actually use (rightly). This is > contrary to many implementations (including the default on Linux) of > POSIX regexes, that do allow backref...