I have a quick question on reading csv file using Pandas. The CSV file which I have has the format:
Num Date Value1 Value2 Value3
1 7/29/11 1 2 3
2 7/22/11 NA 3 1
3 7/15/11 5 NA NA
4 7/6/11 -1 0 2
I would like to read this csv file using pandas. However, I need to skip the rows which have either of the column entries as NA (in this case I need to skip rows 2 and 3).
Thanks!