Displaying 5 results from an estimated 5 matches for "regionb".
Did you mean:
region
2012 Oct 28
1
Why are coefficient estimates using ML and REML are different in lme?
...059 -731.4353
Random effects:
Formula: ~1 | unit
(Intercept) Residual
StdDev: 5.837025 7.104742
Fixed effects: y ~ Region * (x1 + x2 + x3)
Value Std.Error DF t-value p-value
(Intercept) 162.28206 22.340090 193 7.264163 0.0000
Regionb -11.06624 24.582841 5 -0.450161 0.6714
Regionc 5.01670 29.177730 5 0.171936 0.8702
Regiond -36.63434 26.262448 5 -1.394932 0.2218
x1 0.04091 0.034732 193 1.177953 0.2403
x2 -0.71649 0.356...
2010 Mar 09
0
Tukey test for Mixed Effects Model with more than 1 fixed effect?
...Value Std.Error
DF t-value p-value
(Intercept) 0.2317220 0.02211590 967
10.477617 0.0000
In_OutOut -0.2061529 0.03131558 36
-6.583079 0.0000
RegionB -0.0390728 0.03131977 36
-1.247544 0.2203
In_OutOut:RegionB 0.1460696 0.04433322 36 3.294813
0.0022
Correlation:
(Intr) In_OtO ReginB
In_OutOut -0.706
Reg...
2017 Aug 15
2
[RFC] Enhance Partial Inliner by using a general outlining scheme for cold blocks
...the
> relationship between size and "hotness". If for example you have a function
> that looks like this:
>
> foo(bool B) {
> ... // Code that prevents early return.
>
> if(B) // RegionA : Taken 50% of the time.
> ... Very large amount of code.
>
> else // RegionB : Taken 50% of the time.
> ... Very small amount of code.
> }
>
> In the above you have two regions that aren't exactly cold. Outlining
> RegionA will make foo profitable to inline, but only if you take into
> account its large size. Using profile data as the sole cutoff wil...
2018 Jun 01
4
Regroup and create new dataframe
Hello folks,
I have a big project to work on and the dataset is classified so I am just
going to use my own example so everyone can understand what I am targeting.
Let's take Target as an example: We consider three brands of tape: Target
brand, 3M and Avery. The original data frame has 4 columns: Year of Record,
Product_Name(which contains three brands of tape), Sales, and Region. I
want to
2017 Aug 15
3
[RFC] Enhance Partial Inliner by using a general outlining scheme for cold blocks
Hi Jessica,
Thanks for the feedback.
I believe the existing partial inliner pass does use some common utilities
like the code extractor to do outlining. Is that what you're referring to?
I don't recall seeing any other passes that has outlining other than the
machine outliner, but I may have missed something.
I briefly looked at River's RFC and it seems he's mainly utilizing