Displaying 13 results from an estimated 13 matches for "grp4".
Did you mean:
grp
2007 Dec 19
3
x86_emulate(): forgot to generate_exception_if() for 0xff?
Hi all,
In arch/x86/x86_emulate.c: x86_emulate():
1716 case 0xfe: /* Grp4 */
1717 generate_exception_if((m odrm_reg & 7) >= 2, EXC_UD);
1718 case 0xff: /* Grp5 */
1719 switch ( modrm_reg & 7 )
1720 {
1721 case 0: /* inc */
1722 emulate_1op("inc", dst, _regs.eflags);
1723...
2010 Aug 11
2
help to polish plot in ggplot2
Hi,
I wanted to generate a plot which is almost like the plot generated by the
following codes.
category <- paste("Geographical Category", 1:10)
grp1 <- rnorm(10, mean=10, sd=10)
grp2 <- rnorm(10, mean=20, sd=10)
grp3 <- rnorm(10, mean=15, sd=10)
grp4 <- rnorm(10, mean=12, sd=10)
mydat <- data.frame(category,grp1,grp2,grp3,grp4)
dat.m <- melt(mydat)
p <- qplot(1,value, data=dat.m, geom="bar", xlab="",ylab="Percentage of eco
change",stat="identity",fill=variable, position="dodge")...
2017 Oct 27
2
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
...rp)^2 ,data=df))
print("Example 2.1: drop socst")
print(model.matrix(~(socst+grp)^2 -socst ,data=df))
print("Example 2.2: drop grp")
print(model.matrix(~(socst+grp)^2 -grp ,data=df))
This gives indeed the following regressors:
"Full model"
(Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
"Example 2.1: drop socst"
(Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3 socst:grp4
"Example 2.2: drop grp"
(Intercept) socst socst:grp2 socst:grp3 socst:grp4
There is a little bit of R documentation about this, based on the
concept...
2017 Nov 02
2
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
...rint(model.matrix(~(socst+grp)^2 -socst ,data=df))
>> print("Example 2.2: drop grp")
>> print(model.matrix(~(socst+grp)^2 -grp ,data=df))
>>
>> This gives indeed the following regressors:
>>
>> "Full model"
>> (Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
>> "Example 2.1: drop socst"
>> (Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3 socst:grp4
>> "Example 2.2: drop grp"
>> (Intercept) socst socst:grp2 socst:grp3 socst:grp4
>>
>> There is a little bi...
2023 Jan 30
1
[Bridge] [PATCH net-next 06/16] net: bridge: Add a tracepoint for MDB overflows
...tes:
> On Thu, 26 Jan 2023 18:01:14 +0100
> Petr Machata <petrm at nvidia.com> wrote:
>
>> + TP_printk("dev %s af %u src %pI4/%pI6c grp %pI4/%pI6c/%pM vid %u",
>> + __get_str(dev), __entry->af, __entry->src4, __entry->src6,
>> + __entry->grp4, __entry->grp6, __entry->grpmac, __entry->vid)
>
> And just have:
>
> TP_printk("dev %s af %u src %pI6c grp %pI6c/%pM vid %u",
> __get_str(dev), __entry->af, __entry->src, __entry->grp,
> __entry->grpmac, __entry->vid)
>
> As the %...
2017 Nov 04
2
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
...;> print("Example 2.2: drop grp")
>> >> print(model.matrix(~(socst+grp)^2 -grp ,data=df))
>> >>
>> >> This gives indeed the following regressors:
>> >>
>> >> "Full model"
>> >> (Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
>> >> "Example 2.1: drop socst"
>> >> (Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3 socst:grp4
>> >> "Example 2.2: drop grp"
>> >> (Intercept) socst socst:grp2 socst:grp3 socst:grp4
&g...
2017 Oct 31
0
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
....1: drop socst")
> print(model.matrix(~(socst+grp)^2 -socst ,data=df))
> print("Example 2.2: drop grp")
> print(model.matrix(~(socst+grp)^2 -grp ,data=df))
>
> This gives indeed the following regressors:
>
> "Full model"
> (Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
> "Example 2.1: drop socst"
> (Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3 socst:grp4
> "Example 2.2: drop grp"
> (Intercept) socst socst:grp2 socst:grp3 socst:grp4
>
> There is a little bit of R documentation abo...
2011 Dec 12
2
Colours for sunflowerplot
...an","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","
Dec"), tick = TRUE, line = NA)
legend(7, 12.5, legend = c("Grp1"," Grp2"," Grp3"," Grp4"," Grp5","
Grp6"," Grp7"," Grp8"),
col =
c("blue","brown","orange","green","red","lightblue","purple","pink"),
pch = 19, bty = "n")
For comparison of wher...
2017 Nov 06
2
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
...; >> >> print(model.matrix(~(socst+grp)^2 -grp ,data=df))
>> >> >>
>> >> >> This gives indeed the following regressors:
>> >> >>
>> >> >> "Full model"
>> >> >> (Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
>> >> >> "Example 2.1: drop socst"
>> >> >> (Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3
>> >> >> socst:grp4
>> >> >> "Example 2.2: drop grp"
>> >>...
2017 Nov 02
0
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
...ocst ,data=df))
> >> print("Example 2.2: drop grp")
> >> print(model.matrix(~(socst+grp)^2 -grp ,data=df))
> >>
> >> This gives indeed the following regressors:
> >>
> >> "Full model"
> >> (Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
> >> "Example 2.1: drop socst"
> >> (Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3 socst:grp4
> >> "Example 2.2: drop grp"
> >> (Intercept) socst socst:grp2 socst:grp3 socst:grp4
> >>
>...
2004 Nov 29
2
[BASIC] Solution of creating a sequence of object names
..."GRP", i, sep='')]] <-
runif(5) # store each result
> Result # print out the data
$GRP1
[1] 0.2655087 0.3721239 0.5728534 0.9082078 0.2016819
$GRP2
[1] 0.89838968 0.94467527 0.66079779 0.62911404
0.06178627
$GRP3
[1] 0.2059746 0.1765568 0.6870228 0.3841037 0.7698414
$GRP4
[1] 0.4976992 0.7176185 0.9919061 0.3800352 0.7774452
$GRP5
[1] 0.9347052 0.2121425 0.6516738 0.1255551 0.2672207
$GRP6
[1] 0.38611409 0.01339033 0.38238796 0.86969085
0.34034900
$GRP7
[1] 0.4820801 0.5995658 0.4935413 0.1862176 0.8273733
$GRP8
[1] 0.6684667 0.7942399 0.1079436 0.7237109 0.4112...
2017 Nov 04
0
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
...drop grp")
> >> >> print(model.matrix(~(socst+grp)^2 -grp ,data=df))
> >> >>
> >> >> This gives indeed the following regressors:
> >> >>
> >> >> "Full model"
> >> >> (Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
> >> >> "Example 2.1: drop socst"
> >> >> (Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3
> socst:grp4
> >> >> "Example 2.2: drop grp"
> >> >> (Intercept) socst socst:grp2...
2017 Nov 06
0
Bug in model.matrix.default for higher-order interaction encoding when specific model terms are missing
...(model.matrix(~(socst+grp)^2 -grp ,data=df))
> >> >> >>
> >> >> >> This gives indeed the following regressors:
> >> >> >>
> >> >> >> "Full model"
> >> >> >> (Intercept) socst grp2 grp3 grp4 socst:grp2 socst:grp3 socst:grp4
> >> >> >> "Example 2.1: drop socst"
> >> >> >> (Intercept) grp2 grp3 grp4 socst:grp1 socst:grp2 socst:grp3
> >> >> >> socst:grp4
> >> >> >> "Example 2.2: drop grp&quo...