Displaying 3 results from an estimated 3 matches for "check_u_0__kd_1_2011".
2016 Apr 28
4
Interdependencies of variable types, logical expressions and NA
...1, 0
+ )
+ Kunden01[[ Check ]] <- factor(Kunden01[[ Check ]],
+ levels=c(1, 0),
+ labels= c("Check 0", "OK")
+ )
+
+ }
Creating Check_U_0__Kd_1_2011 from Umsatz_2011 and Kunde01_2011
Creating Check_U_0__Kd_1_2012 from Umsatz_2012 and Kunde01_2012
Creating Check_U_0__Kd_1_2013 from Umsatz_2013 and Kunde01_2013
Creating Check_U_0__Kd_1_2014 from Umsatz_2014 and Kunde01_2014
Creating Check_U_0__Kd_1_2015 from Umsatz_2015 and Kunde01_2015
>...
2016 Apr 28
0
Interdependencies of variable types, logical expressions and NA
Hi
Your script is not reproducible.
Creating Check_U_0__Kd_1_2011 from Umsatz_2011 and Kunde01_2011
Error in ifelse(Kunden01[[Umsatz]] == 0 & Kunden01[[Kunde]] == 1, 1, 0) :
object 'Kunden01' not found
>
This is interesting
x <- c(NA, FALSE, TRUE)
names(x) <- as.character(x)
outer(x, x, "&") ## AND table
<NA> FAL...
2016 Apr 28
0
Antwort: RE: Interdependencies of variable types, logical expressions and NA
..., April 28, 2016 9:42 AM
> > To: G.Maubach at weinwolf.de; r-help at r-project.org
> > Subject: Re: [R] Interdependencies of variable types, logical
> expressions and
> > NA
> >
> > Hi
> >
> > Your script is not reproducible.
> >
> > Creating Check_U_0__Kd_1_2011 from Umsatz_2011 and Kunde01_2011
> > Error in ifelse(Kunden01[[Umsatz]] == 0 & Kunden01[[Kunde]] == 1, 1, 0)
> :
> > object 'Kunden01' not found
> > >
> >
> > This is interesting
> > x <- c(NA, FALSE, TRUE)
> > names(x) <- as.char...