[R] read.csv greater than

2009-07-23 Thread stephen sefick
I have a csv file that I am trying to read in and know that values 0
are erroneous - is there a way to read only value grater than 0.

thanks,

-- 
Stephen Sefick

Let's not spend our time and resources thinking about things that are
so little or so large that all they really do for us is puff us up and
make us feel like gods.  We are mammals, and have not exhausted the
annoying little problems of being mammals.

-K. Mullis

__
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.


Re: [R] read.csv greater than

2009-07-23 Thread stephen sefick
here is the solution
x - subset(read.csv(foo.csv), VALUE0)

On Thu, Jul 23, 2009 at 11:28 AM, stephen sefickssef...@gmail.com wrote:
 I have a csv file that I am trying to read in and know that values 0
 are erroneous - is there a way to read only value grater than 0.

 thanks,

 --
 Stephen Sefick

 Let's not spend our time and resources thinking about things that are
 so little or so large that all they really do for us is puff us up and
 make us feel like gods.  We are mammals, and have not exhausted the
 annoying little problems of being mammals.

                                                                -K. Mullis




-- 
Stephen Sefick

Let's not spend our time and resources thinking about things that are
so little or so large that all they really do for us is puff us up and
make us feel like gods.  We are mammals, and have not exhausted the
annoying little problems of being mammals.

-K. Mullis

__
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.