How to multiple select values from one column and subset them?
I have a table which include a column named 'PCO',In this column,there are lots of different values,such as 'PCO1','PCO2',...............'PCON',I want to select the rows include 'PCO1' or 'PCO2' or 'PCO3' and subset them,but the situation is that I want to use a string thatstrPCO=="PCO1","PCO2","PCO3", to select valuesso I write a script like:data_table = open (DATA_PATH)PCO_CONDITION = {"PCO1",...
