Sébastien <pomchip <at> free.fr> writes:
> > Can you please point to me my syntax mistake or indicate a method to get > this type of data.frame subset ? > > Thank you in advance > > ID value > 1 1 1.2 > 2 2 1.2 > 3 3 1.2 > 4 4 1.2 > 5 5 A > 6 6 A > 7 7 A > 8 8 A > subset(mdat,value!"A") > > Error: syntax error, unexpected '!', expecting ',' in "subset(mdat,value!" > Looks like you forgot the "=" as in subset(mdat, value != "A") ID value 1 1 1.2 2 2 1.2 3 3 1.2 4 4 1.2 ______________________________________________ [email protected] 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.
