I have some data on a table to be read (currently using read.table), but the minimum value that I have on the table is 27, and the maximum value is 1000.
I need to set the read.table to only read values >180 and <800. My data is too large to go by hand (700k+ rows). Is there any way to do it?
Right now, my code looks like this:
data1 <- read.table('cn_EP27_L1.sizes')
names(data1) <- 'sizes1'
data1
