I have the FV_sectors (It has values as I have printed it), and the data in CONVENTION has icom and ccom where in some places I have icom which is including numbers in FV_sectors. I do not want to include them in SECTOR_LIST. but it is giving me the following error:
print FV_sectors;
use CONVENTIONAL;
/* list of all commodities */
read all var{cCom iCom} into SECTOR_LIST where ((iCom ^= FV_sectors)&(cCom ^= FV_sectors));
num_sectors = sqrt(nrow(SECTOR_LIST));
error:
431 print FV_sectors;
432 use CONVENTIONAL;
433
434 /* list of all commodities */
435 read all var{cCom iCom} into SECTOR_LIST where ((iCom ^= FV_sectors)&(cCom ^=
435! FV_sectors));
ERROR: Type mismatch in WHERE clause for variable iCom.
statement : READ at line 435 column 5
436 num_sectors = sqrt(nrow(SECTOR_LIST));
Thank you