Displaying 1 result from an estimated 1 matches for "axvw9x".
2012 Jan 24
2
data extraction in R
All,
I currently have a dataset with a variety of different columns, let's say,
A,B,C, and D. I'd like to run an R script that graphs only certain rows of
the dataset based on what's in column A. In awk, it'd be something like:
awk ' { if(A==5 && B ==6) print $0 } ' datafile | command or file
Since I have just begun using R, I am unsure if awk is compatible in R