jimdare wrote:
> Hi,
>
> How do I tell an if statement to generate two seperate outputs.
>
> E.g  If X>5 I want to create df1 and df2:
>
> if (X>5) {df1<-c(4,5,6,7,8) AND df2<-c(9,10,11,12,13)}
>   
almost there:

    if (X>5) {df1<-c(4,5,6,7,8); df2<-c(9,10,11,12,13)}

vQ

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to