Skip to content
Prev 45872 / 63421 Next

Documentation request Re: [R] recode categorial vars into binary data

Hi Martin,
On 05/14/2013 08:44 AM, Martin Maechler wrote:
[...]
Or to help people stop using

   if (... & ...)
   if (... | ...)

in those many places where they should use

   if (... && ...)
   if (... || ...)

Cheers,
H.