Displaying 10 results from an estimated 10 matches for "l578".
Did you mean:
578
2019 Mar 07
2
package installation needs the file utility on Unix
The new staged package installation shells out to the 'file' utility
on Unix systems:
https://github.com/wch/r-source/blob/31ee14c620eb1b939acd322f3b5617f998aab8e8/src/library/tools/R/install.R#L578
Although 'file' is usually present on most Unix systems, it might be
missing from small Docker containers, where the aim is to make the
container as small possible. The magic file of 'file' is about 5MB, so
that is significant in this case.
R uses 'file' to decide if a .so...
2019 Feb 21
2
model.matrix.default() silently ignores bad contrasts.arg
...to specify contrasts for factors in R - e.g. options(contrasts=...);
> setting contrasts on the specific factors; passing contrasts as a list
> to the model function ... )
>
> The relevant code is here:
>
> https://github.com/wch/r-source/blob/trunk/src/library/stats/R/models.R#L578-L603
>
> The following code shows the problem: a plain-vanilla model.matrix()
> call with no contrasts argument, followed by two wrong contrasts
> arguments, followed by a correct contrasts argument.
>
> data(cbpp, package="lme4")
> mf1 <- model.matrix(~period, d...
2019 Feb 22
2
model.matrix.default() silently ignores bad contrasts.arg
...t;> > setting contrasts on the specific factors; passing contrasts as a list
>> > to the model function ... )
>> >
>> > The relevant code is here:
>> >
>> > https://github.com/wch/r-source/blob/trunk/src/library/stats/R/models.R#L578-L603
>> >
>> > The following code shows the problem: a plain-vanilla model.matrix()
>> > call with no contrasts argument, followed by two wrong contrasts
>> > arguments, followed by a correct contrasts argument.
>> >
>> >...
2017 Jun 14
2
Refining which symbols are preemptable with lto
As a follow up to https://reviews.llvm.org/D20217 I would like to use
lto/thinlto to refine when a symbol is marked as local/preemptable.
I'm not very familiar with lto though so would appreciate some
guidance about how best to go about this.
Regards
Sean Fertile
2019 Feb 23
1
model.matrix.default() silently ignores bad contrasts.arg
...ing contrasts as a
>> list >> > to the model function ... )
>> >> >
>> >> > The relevant code is here:
>> >> >
>> >> > https://github.com/wch/r-
>> source/blob/trunk/src/library/stats/R/models.R#L578-L603
>> >> >
>> >> > The following code shows the problem: a
>> plain-vanilla model.matrix() >> > call with no contrasts
>> argument, followed by two wrong contrasts >> > arguments,
>> followed by a correct contra...
2019 Feb 21
0
model.matrix.default() silently ignores bad contrasts.arg
...ause of the multitude of ways
to specify contrasts for factors in R - e.g. options(contrasts=...);
setting contrasts on the specific factors; passing contrasts as a list
to the model function ... )
The relevant code is here:
https://github.com/wch/r-source/blob/trunk/src/library/stats/R/models.R#L578-L603
The following code shows the problem: a plain-vanilla model.matrix()
call with no contrasts argument, followed by two wrong contrasts
arguments, followed by a correct contrasts argument.
data(cbpp, package="lme4")
mf1 <- model.matrix(~period, data=cbpp)
mf2 <- model.matrix(~p...
2019 Mar 08
0
package installation needs the file utility on Unix
...ase of RcppParallel
and FastRWeb.
Tomas
On 3/7/19 11:57 PM, G?bor Cs?rdi wrote:
> The new staged package installation shells out to the 'file' utility
> on Unix systems:
> https://github.com/wch/r-source/blob/31ee14c620eb1b939acd322f3b5617f998aab8e8/src/library/tools/R/install.R#L578
>
> Although 'file' is usually present on most Unix systems, it might be
> missing from small Docker containers, where the aim is to make the
> container as small possible. The magic file of 'file' is about 5MB, so
> that is significant in this case.
>
> R uses...
2019 Feb 21
0
model.matrix.default() silently ignores bad contrasts.arg
...tors in R - e.g. options(contrasts=...);
> > setting contrasts on the specific factors; passing contrasts as a list
> > to the model function ... )
> >
> > The relevant code is here:
> >
> > https://github.com/wch/r-source/blob/trunk/src/library/stats/R/models.R#L578-L603
> >
> > The following code shows the problem: a plain-vanilla model.matrix()
> > call with no contrasts argument, followed by two wrong contrasts
> > arguments, followed by a correct contrasts argument.
> >
> > data(cbpp, package="lme4")
> >...
2019 Feb 22
0
model.matrix.default() silently ignores bad contrasts.arg
...n the specific factors; passing contrasts as a list
> >> > to the model function ... )
> >> >
> >> > The relevant code is here:
> >> >
> >> > https://github.com/wch/r-
> source/blob/trunk/src/library/stats/R/models.R#L578-L603
> >> >
> >> > The following code shows the problem: a plain-vanilla model.matrix()
> >> > call with no contrasts argument, followed by two wrong contrasts
> >> > arguments, followed by a correct contrasts argument.
> >&g...
2017 Apr 14
5
[Bug 2709] New: Permission Error logged at Debug
...t mindrot.org
Reporter: clay.gerrard at gmail.com
Took me an extra few minutes to get my aws instance setup because the
error message I needed was logged at DEBUG instead instead of >INFO
https://github.com/openssh/openssh-portable/blob/2f2ffa4fbe4b671bbffa0611f15ba44cff64d58e/auth.c#L578
The users authorized_keys file was 700 and had the right key - but
owned by root :P
The client show'd it was trying the right private key, sshd in auth.log
just said:
Apr 14 19:02:49 ip-172-30-0-16 sshd[1638]: Connection closed by
38.140.31.130 port 59865 [preauth]
When I bumped the log lev...