diff --git a/Ag_Process_Development_code.do b/Ag_Process_Development_code.do new file mode 100644 index 0000000..189af4c --- /dev/null +++ b/Ag_Process_Development_code.do @@ -0,0 +1,1079 @@ +clear all + +ssc install winsor2, replace all +ssc install blindschemes, replace all +ssc install moss, replace all +set scheme plotplainblind + +******************************************************************************** +************************Import and Transform WDI Data*************************** +******************************************************************************** + +import excel "Data_Extract_From_World_Development_Indicators.xlsx", sheet("Sheet1") firstrow + +label variable AGLNDIRIGAGZS "Agricultural irrigated land (% of total agricultural land)" +label variable AGLNDAGRIZS "Agricultural land (% of land area)" +label variable AGLNDAGRIK2 "Agricultural land (sq. km)" +label variable AGAGRTRACNO "Agricultural machinery, tractors" +label variable AGLNDTRACZS "Agricultural machinery, tractors per 100 sq. km of arable land" +label variable TXVALAGRIZSUN "Agricultural raw materials exports (% of merchandise exports)" +label variable TMVALAGRIZSUN "Agricultural raw materials imports (% of merchandise imports)" +label variable EAPRDAGRIKD "Agriculture value added per worker (constant 2010 US$)" +label variable NVAGRTOTLZS "Agriculture, value added (% of GDP)" +label variable NVAGRTOTLKDZG "Agriculture, value added (annual % growth)" +label variable NVAGRTOTLKD "Agriculture, value added (constant 2010 US$)" +label variable AGLNDARBLZS "Arable land (% of land area)" +label variable AGLNDARBLHAPC "Arable land (hectares per person)" +label variable AGLNDARBLHA "Arable land (hectares)" +label variable AGYLDCRELKG "Cereal yield (kg per hectare)" +label variable AGPRDCRELMT "Cereal production (metric tons)" +label variable SLAGREMPLZS "Employment in agriculture (% of total employment)" +label variable SLAGREMPLFEZS "Employment in agriculture, female (% of female employment)" +label variable SLAGREMPLMAZS "Employment in agriculture, male (% of male employment)" +label variable SLINDEMPLZS "Employment in industry (% of total employment)" +label variable SLINDEMPLFEZS "Employment in industry, female (% of female employment)" +label variable SLINDEMPLMAZS "Employment in industry, male (% of male employment)" +label variable SLSRVEMPLZS "Employment in services (% of total employment)" +label variable SLSRVEMPLFEZS "Employment in services, female (% of female employment)" +label variable SLSRVEMPLMAZS "Employment in services, male (% of male employment)" +label variable TXVALFOODZSUN "Food exports (% of merchandise exports)" +label variable TMVALFOODZSUN "Food imports (% of merchandise imports)" +label variable NYGDPMKTPKDZG "GDP growth (annual %)" +label variable NYGDPPCAPKD "GDP per capita (constant 2010 US$)" +label variable NYGDPPCAPKDZG "GDP per capita growth (annual %)" +label variable AGLNDTOTLK2 "Land area (sq. km)" +label variable NYGDPMKTPCD "GDP (current US$)" +label variable SPPOPGROW "Population growth (annual %)" +label variable SPPOPTOTL "Population, total" +label variable NVSRVTETCZS "Services, etc., value added (% of GDP)" +label variable NVINDTOTLZS "Industry, value added (% of GDP)" +label variable SLTLFTOTLIN "Total labor force" + +drop in 1 +drop in 57 + +foreach var of varlist Year- SLTLFTOTLIN { + replace `var' = "." if `var' == ".." + } + +destring AGLNDIRIGAGZS- SLTLFTOTLIN, replace + +mvencode AGLNDIRIGAGZS- SLTLFTOTLIN, mv(0) + +replace NVAGRTOTLKDZG = NVAGRTOTLKDZG*-1 in 43/43 + +moss Year, match("([0-9]+)") regex prefix(n_) + +drop n_count n_pos1 n_match2 n_pos2 Year + +rename n_match1 Year +label variable Year "Year" + +order Year + +destring Year, replace + +save WBDI.dta, replace + + +******************************************************************************** +**********Figure 1: Sectoral changes in GDP and employment********************** +******************************************************************************** + +gen ag = NVAGRTOTLZS +gen ms = NVAGRTOTLZS + NVINDTOTLZS +gen sr = NVAGRTOTLZS + NVINDTOTLZS + NVSRVTETCZS + +label variable sr "Services (% of GDP)" +label variable ms "Industry (% of GDP)" +label variable ag "Agriculture (% of GDP)" + +*Figure 1.A +twoway (area sr Year, color(vermillion)) || (area ms Year) (area ag Year), /// + xlabel(1960 (5) 2015, labsize(small)) ylabel(0 (25) 100, labsize(small) nogrid val) /// + xtitle("Year") ytitle("% of GDP") text(10 1970 "{bf:Agriculture}") /// + text(45 1985 "{bf:Industry}") text(90 2005 "{bf:Service}") legend(off) + + graph export "GDP_share.pdf", as(pdf) replace + +mvdecode SLAGREMPLZS SLINDEMPLZS SLSRVEMPLZS, mv(0) + +gen ag_l = SLAGREMPLZS +gen ms_l = SLAGREMPLZS + SLINDEMPLZS +gen sr_l = SLAGREMPLZS + SLINDEMPLZS + SLSRVEMPLZS + +label variable sr_l "Services (% of Employment)" +label variable ms_l "Industry (% of Employment)" +label variable ag_l "Agriculture (% of Employment)" + +drop if Year < 1980 + +*Figure 1.B +twoway (area sr_l Year, color(vermillion)) || (area ms_l Year) (area ag_l Year), /// + xlabel(1980 (5) 2015, labsize(small)) xscale(r(1980 2015) noextend) ylabel(0 (25) 100, labsize(small) nogrid val) /// + xtitle("Year") ytitle("% of Employment") text(10 1985 "{bf:Agriculture}") /// + text(70 2000 "{bf:Industry}") text(90 2010 "{bf:Service}") legend(off) + + graph export "Emp_share.pdf", as(pdf) replace + +******************************************************************************** +***********Figure 2: National level yield data by crop************************** +******************************************************************************** + +import delimited "FAOSTAT_data_11-27-2018.csv", clear + +gen lnva = asinh(value/10) + +save FAOSTAT.dta, replace + +*Figure 2 +twoway (line lnva year if item == "Rice, paddy", lcolor(ananas) lwidth(medthick) lpattern(solid) ) || /// + (line lnva year if item == "Seed cotton", lcolor(vermillion) lwidth(medthick) lpattern(dash) ) || /// + (line lnva year if item == "Castor oil seed", lcolor(sea) lwidth(medthick) lpattern(dot) ) || /// + (line lnva year if item == "Pigeon peas", lcolor(turquoise) lwidth(medthick) lpattern(dash_dot) ) || /// + (line lnva year if item == "Sorghum", lcolor(sky) lwidth(medthick) lpattern(shortdash) ) || /// + (line lnva year if item == "Soybeans", lcolor(reddish) lwidth(medthick) lpattern(shortdash_dot) ) || /// + (line lnva year if item == "Wheat", lcolor(orangebrown) lwidth(medthick) lpattern(longdash_dot) /// + ytitle("ln(yield)") yscale(r(3 9)) ylabel(3 4 5 6 7 8 9, labsize(small)) /// + xtitle("Year") xscale(r(1961 2014)) xlabel(1960 1965 1970 1975 1980 1985 1990 1995 2000 2005 2010 2015, labsize(small))), /// + legend(order(3 2 4 1 5 6 7) label(3 "Castor") label(2 "Cotton") label(4 "Pigeon pea") label(1 "Rice") label(5 "Sorghum") /// + label(6 "Soybean") label(7 "Wheat") position(6) col(4) row(2) ) + + graph export "tot_yield.pdf", as(pdf) replace + +******************************************************************************** +*****************Figure 3: Value added per hectare and worker******************** +******************************************************************************** + +use WBDI.dta, clear + +gen lny = asinh(NVAGRTOTLKD/(AGLNDAGRIK2*100)) +gen lnl = asinh(EAPRDAGRIKD) +replace lnl = . if lnl == 0 + +*Figure 3 +twoway (line lny Year if Year > 1979, lcolor(dknavy) lwidth(medthick) ) || /// + (line lnl Year if Year > 1979, lcolor(sienna) lwidth(medthick) /// + ytitle("ln(value added)") yscale(r(6 11)) ylabel(6 (1) 11, labsize(small)) /// + xtitle("Year") xscale(r(1980 2015)) xlabel(1980 (5) 2015, labsize(small))), /// + legend(order(1 2) label(1 "Value added per hectare") label(2 "Value added per worker") position(6) col(2)) + + graph export "value_added.pdf", as(pdf) replace + +******************************************************************************** +**************Figure 4: Specialization in Indian agriculture******************** +******************************************************************************** + +import delimited "FAOSTAT_data_7-12-2018.csv", clear + +gen croptype = 7 if item == "Anise, badian, fennel, coriander" +replace croptype = 1 if item == "Apples" +replace croptype = 7 if item == "Areca nuts" +replace croptype = 1 if item == "Bananas" +replace croptype = 2 if item == "Barley" +replace croptype = 5 if item == "Bastfibres, other" +replace croptype = 3 if item == "Beans, dry" +replace croptype = 1 if item == "Beans, green" +replace croptype = 1 if item == "Cabbages and other brassicas" +replace croptype = 7 if item == "Cashew nuts, with shell" +replace croptype = 4 if item == "Castor oil seed" +replace croptype = 1 if item == "Cauliflowers and broccoli" +replace croptype = 1 if item == "Cherries" +replace croptype = 3 if item == "Chick peas" +replace croptype = 7 if item == "Chillies and peppers, dry" +replace croptype = 5 if item == "Coconuts" +replace croptype = 7 if item == "Coffee, green" +replace croptype = 5 if item == "Cotton lint" +replace croptype = 5 if item == "Cottonseed" +replace croptype = 6 if item == "Eggs, hen, in shell" +replace croptype = 1 if item == "Fruit, citrus nes" +replace croptype = 1 if item == "Fruit, fresh nes" +replace croptype = 1 if item == "Fruit, tropical fresh nes" +replace croptype = 7 if item == "Garlic" +replace croptype = 7 if item == "Ginger" +replace croptype = 1 if item == "Grapes" +replace croptype = 3 if item == "Groundnuts, with shell" +replace croptype = 7 if item == "Honey, natural" +replace croptype = 5 if item == "Jute" +replace croptype = 1 if item == "Lemons and limes" +replace croptype = 3 if item == "Lentils" +replace croptype = 4 if item == "Linseed" +replace croptype = 2 if item == "Maize" +replace croptype = 1 if item == "Mangoes, mangosteens, guavas" +replace croptype = 6 if item == "Meat indigenous, cattle" +replace croptype = 6 if item == "Meat indigenous, pig" +replace croptype = 6 if item == "Meat indigenous, sheep" +replace croptype = 6 if item == "Milk, whole fresh buffalo" +replace croptype = 6 if item == "Milk, whole fresh cow" +replace croptype = 2 if item == "Millet" +replace croptype = 7 if item == "Nutmeg, mace and cardamoms" +replace croptype = 1 if item == "Onions, dry" +replace croptype = 1 if item == "Oranges" +replace croptype = 1 if item == "Papayas" +replace croptype = 1 if item == "Pears" +replace croptype = 1 if item == "Peas, dry" +replace croptype = 1 if item == "Peas, green" +replace croptype = 1 if item == "Pepper (piper spp.)" +replace croptype = 3 if item == "Pigeon peas" +replace croptype = 1 if item == "Pineapples" +replace croptype = 8 if item == "Potatoes" +replace croptype = 4 if item == "Rapeseed" +replace croptype = 2 if item == "Rice, paddy" +replace croptype = 5 if item == "Rubber, natural" +replace croptype = 4 if item == "Safflower seed" +replace croptype = 5 if item == "Seed cotton" +replace croptype = 7 if item == "Sesame seed" +replace croptype = 6 if item == "Silk-worm cocoons, reelable" +replace croptype = 2 if item == "Sorghum" +replace croptype = 3 if item == "Soybeans" +replace croptype = 7 if item == "Spices, nes" +replace croptype = 7 if item == "Sugar cane" +replace croptype = 7 if item == "Sunflower seed" +replace croptype = 8 if item == "Sweet potatoes" +replace croptype = 5 if item == "Tea" +replace croptype = 5 if item == "Tobacco, unmanufactured" +replace croptype = 1 if item == "Tomatoes" +replace croptype = 1 if item == "Vegetables, fresh nes" +replace croptype = 7 if item == "Walnuts, with shell" +replace croptype = 2 if item == "Wheat" +replace croptype = 6 if item == "Wool, greasy" +replace croptype = 1 if item == "Apricots" +replace croptype = 1 if item == "Carrots and turnips" +replace croptype = 8 if item == "Cassava" +replace croptype = 1 if item == "Chillies and peppers, green" +replace croptype = 7 if item == "Cocoa, beans" +replace croptype = 1 if item == "Cucumbers and gherkins" +replace croptype = 1 if item == "Eggplants (aubergines)" +replace croptype = 1 if item == "Figs" +replace croptype = 1 if item == "Fruit, stone nes" +replace croptype = 1 if item == "Grapefruit (inc. pomelos)" +replace croptype = 1 if item == "Lettuce and chicory" +replace croptype = 6 if item == "Meat indigenous, buffalo" +replace croptype = 6 if item == "Meat indigenous, chicken" +replace croptype = 6 if item == "Meat indigenous, duck" +replace croptype = 6 if item == "Meat indigenous, goat" +replace croptype = 6 if item == "Meat, buffalo" +replace croptype = 6 if item == "Meat, cattle" +replace croptype = 6 if item == "Meat, chicken" +replace croptype = 6 if item == "Meat, duck" +replace croptype = 6 if item == "Meat, goat" +replace croptype = 6 if item == "Meat, nes" +replace croptype = 6 if item == "Meat, pig" +replace croptype = 6 if item == "Meat, sheep" +replace croptype = 1 if item == "Melons, other (inc.cantaloupes)" +replace croptype = 6 if item == "Milk, whole fresh goat" +replace croptype = 7 if item == "Mushrooms and truffles" +replace croptype = 4 if item == "Oilseeds nes" +replace croptype = 1 if item == "Okra" +replace croptype = 1 if item == "Peaches and nectarines" +replace croptype = 1 if item == "Plums and sloes" +replace croptype = 3 if item == "Pulses, nes" +replace croptype = 1 if item == "Pumpkins, squash and gourds" +replace croptype = 1 if item == "Watermelons" + +label define type 1 "Fruits & vegetables" 2 "Cereals" 3 "Legumes" 4 "Oil crops" 5 "Others" 6 "Livestock" 7 "Spices, sugar, & nuts" 8 "Roots & tubers", replace +label values croptype type +label variable croptype "Crop Type" + +sort croptype year +egen cval = total(value), by(croptype year) +label variable cval "Value Added by Crop Type" + +duplicates drop year croptype cval, force + +egen tval = total(cval), by(year) +label variable tval "Total Value Added" + +gen sval = cval/tval +label variable sval "Share of Value Added" + +gen fv = sval if croptype == 1 +gen cr = sval if croptype == 2 +gen lg = sval if croptype == 3 +gen oi = sval if croptype == 4 +gen ot = sval if croptype == 5 +gen lv = sval if croptype == 6 +gen sp = sval if croptype == 7 +gen rt = sval if croptype == 8 + +egen FV = max(fv), by(year) +egen CR = max(cr), by(year) +egen LG = max(lg), by(year) +egen OI = max(oi), by(year) +egen OT = max(ot), by(year) +egen LV = max(lv), by(year) +egen SP = max(sp), by(year) +egen RT = max(rt), by(year) + +sort year +by year: replace FV = FV^2 +by year: replace CR = CR^2 +by year: replace LG = LG^2 +by year: replace OI = OI^2 +by year: replace OT = OT^2 +by year: replace LV = LV^2 +by year: replace SP = SP^2 +by year: replace RT = RT^2 + +by year: gen simp = FV +CR +LG +OI +OT +LV +SP +RT + +duplicates drop year simp, force + +*Figure 4 +twoway (line simp year, /// + ytitle("Herfindahl Index") yscale(r(.15 .85)) ylabel(.15 (.10) .85, labsize(small)) /// + xtitle("Year") xscale(r(1961 2014)) xlabel(1960 1965 1970 1975 1980 1985 1990 1995 2000 2005 2010 2015, labsize(small))) + + graph export "HHI.pdf", as(pdf) replace + +******************************************************************************** +****************Figure 5: Agricultural earnings gap***************************** +******************************************************************************** + +use WBDI.dta, clear + +gen ag = NVAGRTOTLZS +label variable ag "Agri. (% of GDP)" + +gen ag_l = SLAGREMPLZS +label variable ag_l "Agri. (% of employment)" +replace ag_l = . if ag_l == 0 + +gen ag_agl = ag - ag_l +label variable ag_agl "Agri. earnings gap" + +*Figure 5 +twoway (line ag_agl Year if Year > 1979, lcolor(black) lwidth(medthick) ) || /// + (line ag_l Year if Year > 1979, lcolor(emerald) lwidth(medthick)) || /// + (line ag Year if Year > 1979, lcolor(maroon) lwidth(medthick) /// + ytitle("Percentage (%)") yscale(r(-50 75)) ylabel(-50 -25 0 25 50 75, labsize(small)) /// + xtitle("Year") xscale(r(1980 2015)) xlabel(1980 (5) 2015, labsize(small))), /// + legend(order(3 2 1) position(6) col(3) row(1) ) + + graph export "conv.pdf", as(pdf) replace + +******************************************************************************** +**************Figure 6: Sectoral changes in income and employment*************** +******************************************************************************** + +use "household_data.dta", clear + +*Collapse to single year values +collapse (sum) ag_days-sr_days ag_wage_inc-sr_wage_inc ag_inc-sr_inc val_area val_labor, by(tindex year) + +*Generate household income share +gen tot_inc = ag_inc + ms_inc + sr_inc + +replace ag_inc = (ag_inc/tot_inc)*100 +replace ms_inc = (ms_inc/tot_inc)*100 +replace sr_inc = (sr_inc/tot_inc)*100 + +gen ag = ag_inc +gen ms = ag_inc + ms_inc +gen sr = ag_inc + ms_inc + sr_inc + +label variable sr "Services (% of Income)" +label variable ms "Industry (% of Income)" +label variable ag "Agriculture (% of Income)" + +*Figure 6.a +twoway (area sr tindex, color(vermillion)) || (area ms tindex) (area ag tindex), /// + xtitle("Year") xscale(r(0 25)) xlabel(1 "1975" 5 "1979" 10 "1984" 15 "2004" 20 "2009" 25 "2014", labsize(small)) /// + ytitle("% of Income") ylabel(0 (25) 100, labsize(small) nogrid val) /// + text(10 5 "{bf:Agriculture}") text(65 15 "{bf:Industry}") text(90 20 "{bf:Service}") legend(off) + + graph export "VDSA_inc_share.pdf", as(pdf) replace + +*Generate household employment share +gen tot_days = ag_days + ms_days + sr_days + +replace ag_days = (ag_days/tot_days)*100 +replace ms_days = (ms_days/tot_days)*100 +replace sr_days = (sr_days/tot_days)*100 + +gen ag_1 = ag_days +gen ms_1 = ag_days + ms_days +gen sr_1 = ag_days + ms_days + sr_days + +label variable sr_1 "Services (% of Employment)" +label variable ms_1 "Industry (% of Employment)" +label variable ag_1 "Agriculture (% of Employment)" + +*Figure 6.b +twoway (area sr_1 tindex, color(vermillion)) || (area ms_1 tindex) (area ag_1 tindex), /// + xtitle("Year") xscale(r(0 25)) xlabel(1 "1975" 5 "1979" 10 "1984" 15 "2004" 20 "2009" 25 "2014", labsize(small)) /// + ytitle("% of Employment") ylabel(0 (25) 100, labsize(small) nogrid val) /// + text(10 5 "{bf:Agriculture}") text(50 15 "{bf:Industry}") text(90 20 "{bf:Service}") legend(off) + + graph export "VDSA_emp_share.pdf", as(pdf) replace + +******************************************************************************** +**********Figure 7: Change in the elasticity and productivity of labor********** +******************************************************************************** + +use "household_data.dta", clear + +*Generate single year values +egen float hh_id = group(vdsid_hhid) +gen tot_inc = ag_inc + ms_inc + sr_inc + +xtset hh_id tindex + +bysort hh_id (tindex): gen g_ag_emp = (ag_days - ag_days[_n-1])/ag_days[_n-1] +bysort hh_id (tindex): gen g_ms_emp = (ms_days - ms_days[_n-1])/ms_days[_n-1] +bysort hh_id (tindex): gen g_sr_emp = (sr_days - sr_days[_n-1])/sr_days[_n-1] +bysort hh_id (tindex): gen g_emp = (tot_days - tot_days[_n-1])/tot_days[_n-1] + +bysort hh_id (tindex): gen g_ag_inc = (ag_inc - ag_inc[_n-1])/ag_inc[_n-1] +bysort hh_id (tindex): gen g_ms_inc = (ms_inc - ms_inc[_n-1])/ms_inc[_n-1] +bysort hh_id (tindex): gen g_sr_inc = (sr_inc - sr_inc[_n-1])/sr_inc[_n-1] +bysort hh_id (tindex): gen g_inc = (tot_inc - tot_inc[_n-1])/tot_inc[_n-1] + +winsor2 g_ag_emp- g_inc if year < 2001, replace +winsor2 g_ag_emp- g_inc if year > 1989, replace + +gen Eag = g_ag_emp/g_ag_inc +gen Ems = g_ms_emp/g_ms_inc +gen Esr = g_sr_emp/g_sr_inc +gen Etot = g_emp/g_inc +gen Pag = g_ag_inc - g_ag_emp +gen Pms = g_ms_inc - g_ms_emp +gen Psr = g_sr_inc - g_sr_emp +gen Ptot = g_inc - g_emp + +winsor2 Eag Ems Esr Etot Pag Pms Psr Ptot if year < 2001, replace +winsor2 Eag Ems Esr Etot Pag Pms Psr Ptot if year > 1989, replace + +egen ag_70s = mean(Eag) if year < 2001 +egen ag_00s = mean(Eag) if year > 1989 +egen ms_70s = mean(Ems) if year < 2001 +egen ms_00s = mean(Ems) if year > 1989 +egen sr_70s = mean(Esr) if year < 2001 +egen sr_00s = mean(Esr) if year > 1989 +egen tot_70s = mean(Etot) if year < 2001 +egen tot_00s = mean(Etot) if year > 1989 + +mvencode ag_70s ag_00s ms_70s ms_00s sr_70s sr_00s tot_70s tot_00s, mv(0) + +egen Eag_70s = max(ag_70s) +egen Eag_00s = max(ag_00s) +egen Ems_70s = max(ms_70s) +egen Ems_00s = max(ms_00s) +egen Esr_70s = max(sr_70s) +egen Esr_00s = max(sr_00s) +egen Etot_70s = max(tot_70s) +egen Etot_00s = max(tot_00s) + +drop ag_70s ag_00s ms_70s ms_00s sr_70s sr_00s tot_70s tot_00s + +egen ag_70s = mean(Pag) if year < 2001 +egen ag_00s = mean(Pag) if year > 1989 +egen ms_70s = mean(Pms) if year < 2001 +egen ms_00s = mean(Pms) if year > 1989 +egen sr_70s = mean(Psr) if year < 2001 +egen sr_00s = mean(Psr) if year > 1989 +egen tot_70s = mean(Ptot) if year < 2001 +egen tot_00s = mean(Ptot) if year > 1989 + +mvencode ag_70s ag_00s ms_70s ms_00s sr_70s sr_00s tot_70s tot_00s, mv(0) + +egen Pag_70s = min(ag_70s) +egen Pag_00s = min(ag_00s) +egen Pms_70s = min(ms_70s) +egen Pms_00s = min(ms_00s) +egen Psr_70s = max(sr_70s) +egen Psr_00s = min(sr_00s) +egen Ptot_70s = min(tot_70s) +egen Ptot_00s = min(tot_00s) + +drop ag_70s ag_00s ms_70s ms_00s sr_70s sr_00s tot_70s tot_00s + +replace Eag_70s = abs(Eag_70s) +replace Eag_00s = abs(Eag_00s) +replace Ems_70s = abs(Ems_70s) +replace Ems_00s = abs(Ems_00s) +replace Esr_70s = abs(Esr_70s) +replace Esr_00s = abs(Esr_00s) +replace Etot_70s = abs(Etot_70s) +replace Etot_00s = abs(Etot_00s) + +*Figure 7 +twoway (scatter Etot_70s Ptot_70s, msize(tiny) mcolor(black) msymbol(circle) msize(small)) || /// + (scatter Etot_00s Ptot_00s, msize(tiny) mcolor(black) msymbol(circle) msize(small)) || /// + (pcarrow Etot_70s Ptot_70s Etot_00s Ptot_00s, lcolor(black) mcolor(black)) || /// + (scatter Eag_70s Pag_70s, msize(tiny) mcolor(sky) msymbol(Oh) msize(small)) || /// + (scatter Eag_00s Pag_00s, msize(tiny) mcolor(sky) msymbol(Oh) msize(small)) || /// + (pcarrow Eag_70s Pag_70s Eag_00s Pag_00s, lcolor(sky) mcolor(sea)) || /// + (scatter Ems_70s Pms_70s, msize(tiny) mcolor(gs10) msymbol(Dh) msize(small)) || /// + (scatter Ems_00s Pms_00s, msize(tiny) mcolor(gs10) msymbol(Dh) msize(small)) || /// + (pcarrow Ems_70s Pms_70s Ems_00s Pms_00s, lcolor(gs10) mcolor(gs10)) || /// + (scatter Esr_70s Psr_70s, msize(tiny) mcolor(vermillion) msymbol(Th) msize(small)) || /// + (scatter Esr_00s Psr_00s, msize(tiny) mcolor(vermillion) msymbol(Th) msize(small)) || /// + (pcarrow Esr_70s Psr_70s Esr_00s Psr_00s, lcolor(vermillion) mcolor(vermillion) /// + ytitle("Elasticity of Labor") yscale(r(0 3)) ylabel(0 1 2 3, labsize(small)) /// + xtitle("Productivity of Labor") xscale(r(-1 0.5)) xlabel(-1 -0.5 0 0.5, labsize(small))), /// + legend(order(1 4 7 10) label(1 "Total") label(4 "Agriculture") label(7 "Industry") label(10 "Service") ) + + graph export "elasticity.pdf", as(pdf) replace + +******************************************************************************** +******************Figure 8: Mean seasonal yield by crop************************* +******************************************************************************** + +use "cultivation_data.dta", clear + +*Generate log output and inputs +gen lnyield = asinh(yield) +gen lnlab = asinh(lab) +gen lnfert = asinh(fert) +gen lnirr = asinh(irr) +gen lnmech = asinh(mech) +gen lnpest = asinh(pest) +gen lnseed = asinh(seed) + +*Figure 8 +twoway (lpolyci lnyield tindex if crop == "Paddy", lcolor(ananas%80) fcolor(gs14%60) clcolor(ananas%80) ) || /// + (lpolyci lnyield tindex if crop == "Cotton", lcolor(vermillion%80) fcolor(gs14%60) clcolor(vermillion%80) ) || /// + (lpolyci lnyield tindex if crop == "Castor", lcolor(sea%80) fcolor(gs14%60) clcolor(sea%80) ) || /// + (lpolyci lnyield tindex if crop == "Pigeonpea", lcolor(turquoise%80) fcolor(gs14%60) clcolor(turquoise%80) ) || /// + (lpolyci lnyield tindex if crop == "Sorghum", lcolor(sky%80) fcolor(gs14%60) clcolor(sky%80) ) || /// + (lpolyci lnyield tindex if crop == "Soybean", lcolor(reddish%80) fcolor(gs14%60) clcolor(reddish%80) ) || /// + (lpolyci lnyield tindex if crop == "Wheat", lcolor(orangebrown%80) fcolor(gs14%60) clcolor(orangebrown%80) /// + ytitle("ln(yield)") yscale(r(3 9)) ylabel(3 4 5 6 7 8 9 , labsize(small)) /// + xtitle("Year") xscale(r(0 48)) xlabel(0 "1975" 8 "1978" 16 "1982" 24 "2001" 32 "2005" 40 "2009" 48 "2013", labsize(small))), /// + legend(order(6 4 8 2 10 12 14) label(6 "Castor") label(4 "Cotton") label(8 "Pigeon pea") label(2 "Rice") label(10 "Sorghum") /// + label(12 "Soybean") label(14 "Wheat") position(6) col(4) row(2) ) + + graph export "yields.pdf", as(pdf) replace + +******************************************************************************** +*****************Figure 9: Revenue per hectare and worker*********************** +******************************************************************************** + +use "household_data.dta", clear + +*Generate log values +replace lny = asinh(val_area) +replace lny = . if lny == 0 +replace lnl = asinh(val_labor) +replace lnl = . if lnl == 0 + +*Figure 9 +sort tindex +twoway (lpolyci lny tindex, lcolor(dknavy) fcolor(gs14) clcolor(dknavy) ) || /// + (lpolyci lnl tindex, lcolor(sienna) fcolor(gs14) clcolor(sienna) /// + ytitle("ln(revenue)") yscale(r(5 11)) ylabel(5 (1) 11, labsize(small)) /// + xtitle("Year") xscale(r(0 25)) xlabel(1 "1975" 5 "1979" 10 "1984" 15 "2004" 20 "2009" 25 "2014", labsize(small))), /// + legend(order(2 4) label(2 "Revenue per hectare") label(4 "Revenue per worker days") position(6) col(2)) + + graph export "vaVDSA.pdf", as(pdf) replace + +******************************************************************************** +**********Figure 10: Patterns of change in agricultural productivity************ +******************************************************************************** + +use "cultivation_data.dta", clear + +*Generate single year values +sort vdsa_hh_id year +egen farm_area = sum(plot_area), by(vdsa_hh_id year) +gen y_a = output/ plot_area +gen y_l = output/Lab_q +gen lny_a = asinh(output/ plot_area) +gen lny_l = asinh(output/ Lab_q) + +sort crop year +egen avgy_a = mean(lny_a), by(crop year) +egen avgy_l = mean(lny_l), by(crop year) + +sort crop +egen crops = group(crop) +label define crop 1 "castor" 2 "cotton" 3 "rice" 4 "pigeon pea" 5 "sorghum" 6 "soybean" 7 "wheat" +label values crops crop + +gen y_75 = avgy_a if year==1975 & crops == 1 +gen x_75 = avgy_l if year==1975 & crops == 1 +gen y_13 = avgy_a if year==2013 & crops == 1 +gen x_13 = avgy_l if year==2013 & crops == 1 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen cast_y_75 = max(y_75) +egen cast_x_75 = max(x_75) +egen cast_y_13 = max(y_13) +egen cast_x_13 = max(x_13) + +drop y_75 x_75 y_13 x_13 + +gen y_75 = avgy_a if year==1975 & crops == 2 +gen x_75 = avgy_l if year==1975 & crops == 2 +gen y_13 = avgy_a if year==2013 & crops == 2 +gen x_13 = avgy_l if year==2013 & crops == 2 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen cott_y_75 = max(y_75) +egen cott_x_75 = max(x_75) +egen cott_y_13 = max(y_13) +egen cott_x_13 = max(x_13) + +drop y_75 x_75 y_13 x_13 + +gen y_75 = avgy_a if year==1975 & crops == 3 +gen x_75 = avgy_l if year==1975 & crops == 3 +gen y_13 = avgy_a if year==2013 & crops == 3 +gen x_13 = avgy_l if year==2013 & crops == 3 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen rice_y_75 = max(y_75) +egen rice_x_75 = max(x_75) +egen rice_y_13 = max(y_13) +egen rice_x_13 = max(x_13) + +drop y_75 x_75 y_13 x_13 + +gen y_75 = avgy_a if year==1975 & crops == 4 +gen x_75 = avgy_l if year==1975 & crops == 4 +gen y_13 = avgy_a if year==2013 & crops == 4 +gen x_13 = avgy_l if year==2013 & crops == 4 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen ppea_y_75 = max(y_75) +egen ppea_x_75 = max(x_75) +egen ppea_y_13 = max(y_13) +egen ppea_x_13 = max(x_13) + +drop y_75 x_75 y_13 x_13 + +gen y_75 = avgy_a if year==1975 & crops == 5 +gen x_75 = avgy_l if year==1975 & crops == 5 +gen y_13 = avgy_a if year==2013 & crops == 5 +gen x_13 = avgy_l if year==2013 & crops == 5 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen sorg_y_75 = max(y_75) +egen sorg_x_75 = max(x_75) +egen sorg_y_13 = max(y_13) +egen sorg_x_13 = max(x_13) + +drop y_75 x_75 y_13 x_13 + +gen y_75 = avgy_a if year==2002 & crops == 6 +gen x_75 = avgy_l if year==2002 & crops == 6 +gen y_13 = avgy_a if year==2013 & crops == 6 +gen x_13 = avgy_l if year==2013 & crops == 6 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen soya_y_02 = max(y_75) +egen soya_x_02 = max(x_75) +egen soya_y_13 = max(y_13) +egen soya_x_13 = max(x_13) + +drop y_75 x_75 y_13 x_13 + +gen y_75 = avgy_a if year==1975 & crops == 7 +gen x_75 = avgy_l if year==1975 & crops == 7 +gen y_13 = avgy_a if year==2013 & crops == 7 +gen x_13 = avgy_l if year==2013 & crops == 7 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen whea_y_75 = max(y_75) +egen whea_x_75 = max(x_75) +egen whea_y_13 = max(y_13) +egen whea_x_13 = max(x_13) + +drop y_75 x_75 y_13 x_13 + +egen toty_a = mean(lny_a), by(year) +egen toty_l = mean(lny_l), by(year) + +gen y_75 = toty_a if year==1975 +gen x_75 = toty_l if year==1975 +gen y_13 = toty_a if year==2013 +gen x_13 = toty_l if year==2013 +mvencode y_75 x_75 y_13 x_13, mv(0) + +egen Y_75 = max(y_75) +egen X_75 = max(x_75) +egen Y_13 = max(y_13) +egen X_13 = max(x_13) +replace y_75 = Y_75 +replace x_75 = X_75 +replace y_13 = Y_13 +replace x_13 = X_13 + +drop Y_75 X_75 Y_13 X_13 + +*Figure 10 +twoway (scatter avgy_a avgy_l if year==1975 & crops == 1, msize(tiny) mcolor(sea) msymbol(Oh) msize(small)) || /// + (scatter avgy_a avgy_l if year==2013 & crops == 1, msize(tiny) mcolor(sea) msymbol(Oh) msize(small)) || /// + (pcarrow cast_y_75 cast_x_75 cast_y_13 cast_x_13 if crops == 1, lcolor(sea) mcolor(sea)) || /// + (scatter avgy_a avgy_l if year==1975 & crops == 2, msize(tiny) mcolor(vermillion) msymbol(Dh) msize(small)) || /// + (scatter avgy_a avgy_l if year==2013 & crops == 2, msize(tiny) mcolor(vermillion) msymbol(Dh) msize(small)) || /// + (pcarrow cott_y_75 cott_x_75 cott_y_13 cott_x_13 if crops == 2, lcolor(vermillion) mcolor(vermillion)) || /// + (scatter avgy_a avgy_l if year==1975 & crops == 3, msize(tiny) mcolor(ananas) msymbol(Th) msize(small)) || /// + (scatter avgy_a avgy_l if year==2013 & crops == 3, msize(tiny) mcolor(ananas) msymbol(Th) msize(small)) || /// + (pcarrow rice_y_75 rice_x_75 rice_y_13 rice_x_13 if crops == 3, lcolor(ananas) mcolor(ananas)) || /// + (scatter avgy_a avgy_l if year==1975 & crops == 4, msize(tiny) mcolor(turquoise) msymbol(Sh) msize(small)) || /// + (scatter avgy_a avgy_l if year==2013 & crops == 4, msize(tiny) mcolor(turquoise) msymbol(Sh) msize(small)) || /// + (pcarrow ppea_y_75 ppea_x_75 ppea_y_13 ppea_x_13 if crops == 4, lcolor(turquoise) mcolor(turquoise)) || /// + (scatter avgy_a avgy_l if year==1975 & crops == 5, msize(tiny) mcolor(sky) msymbol(+) msize(small)) || /// + (scatter avgy_a avgy_l if year==2013 & crops == 5, msize(tiny) mcolor(sky) msymbol(+) msize(small)) || /// + (pcarrow sorg_y_75 sorg_x_75 sorg_y_13 sorg_x_13 if crops == 5, lcolor(sky) mcolor(sky)) || /// + (scatter avgy_a avgy_l if year==2002 & crops == 6, msize(tiny) mcolor(reddish) msymbol(X) msize(small)) || /// + (scatter avgy_a avgy_l if year==2013 & crops == 6, msize(tiny) mcolor(reddish) msymbol(X) msize(small)) || /// + (pcarrow soya_y_02 soya_x_02 soya_y_13 soya_x_13 if crops == 6, lcolor(reddish) mcolor(reddish)) || /// + (scatter avgy_a avgy_l if year==1975 & crops == 7, msize(tiny) mcolor(orangebrown) msymbol(diamond) msize(small)) || /// + (scatter avgy_a avgy_l if year==2013 & crops == 7, msize(tiny) mcolor(orangebrown) msymbol(diamond) msize(small)) || /// + (pcarrow whea_y_75 whea_x_75 whea_y_13 whea_x_13 if crops == 7, lcolor(orangebrown) mcolor(orangebrown)) || /// + (scatter toty_a toty_l if year==1975, msize(tiny) mcolor(black) msymbol(circle) msize(small)) || /// + (scatter toty_a toty_l if year==2013, msize(tiny) mcolor(black) msymbol(circle) msize(small)) || /// + (pcarrow y_75 x_75 y_13 x_13, lcolor(black) lwidth(medium) mcolor(black) msize(medium) ) || /// + (function y = x + 2, range(0 4) lstyle(dot)) || (function y = x + 4, range(0 4) lstyle(dot)) || (function y = x + 6, range(0 4) lstyle(dot)) || /// + (function y = x + 8, range(0 2) lstyle(dot)) || (function y = x - 2, range(2 4) lstyle(dot)) ||(function y=x, range(0 4) lstyle(dot) /// + ytitle("ln(output/area)") ylabel(, nogrid) xtitle("ln(output/labor)") xlabel(, nogrid) ), /// + legend(order(22 1 4 7 10 13 16 19) label(1 "castor") label(4 "cotton") label(7 "rice") /// + label(10 "pigeon pea") label(13 "sorghum") label(16 "soybean") label(19 "wheat") label(22 "overall") ) + + graph export "ag_prod.pdf", as(pdf) replace + +******************************************************************************** +******************Figure 11: Yield and input use over time********************** +******************************************************************************** + +*Generate variables for input/output graphs +gen lnyield = asinh(yield) +gen lnlab = asinh(lab) +gen lnfert = asinh(fert) +gen lnirr = asinh(irr) +gen lnmech = asinh(mech) +gen lnpest = asinh(pest) +gen lnseed = asinh(seed) + +*Figure 11.a - Labor +twoway (scatter lnyield tindex, mcolor(black%05) msize(small) mlwidth(none) msymbol(circle) /// + ytitle("ln(yield), ln(labor)") yscale(r(0 12)) ylabel(0 2 4 6 8 10 12, labsize(small))) /// + (scatter lnlab tindex, mcolor(vermillion%05) msize(small) mlwidth(none) msymbol(circle) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2009" 50 "2014", labsize(small))) /// + (lpoly lnyield tindex, lwidth(medthick) lcolor(black) lpattern(solid)) (lpoly lnlab tindex, lwidth(medthick) lcolor(vermillion) lpattern(solid)), /// + aspect(1) legend( order(3 "ln(yield)" 4 "ln(labor)") pos(3) region(color(none) lwidth(none)) col(1)) title("(a)") + + graph export "lnylnl.pdf", as(pdf) replace + +*Figure 11.b - Fertilizer +twoway (scatter lnyield tindex, mcolor(black%05) msize(small) mlwidth(none) msymbol(circle) /// + ytitle("ln(yield), ln(fertilizer)") yscale(r(0 12)) ylabel(0 2 4 6 8 10 12, labsize(small))) /// + (scatter lnfert tindex, mcolor(sky%05) msize(small) mlwidth(none) msymbol(circle) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2009" 50 "2014", labsize(small))) /// + (lpoly lnyield tindex, lwidth(medthick) lcolor(black) lpattern(solid)) (lpoly lnfert tindex, lwidth(medthick) lcolor(sky) lpattern(solid)), /// + aspect(1) legend( order(3 "ln(yield)" 4 "ln(fertilizer)") pos(3) region(color(none) lwidth(none)) col(1)) title("(b)") + + graph export "lnylnf.pdf", as(pdf) replace + +*Figure 11.c - Pesticide +twoway (scatter lnyield tindex, mcolor(black%05) msize(small) mlwidth(none) msymbol(circle) /// + ytitle("ln(yield), ln(pesticide)") yscale(r(0 12)) ylabel(0 2 4 6 8 10 12, labsize(small))) /// + (scatter lnpest tindex, mcolor(sea%05) msize(small) mlwidth(none) msymbol(circle) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2009" 50 "2014", labsize(small))) /// + (lpoly lnyield tindex, lwidth(medthick) lcolor(black) lpattern(solid)) (lpoly lnpest tindex, lwidth(medthick) lcolor(sea) lpattern(solid)), /// + aspect(1) legend( order(3 "ln(yield)" 4 "ln(pesticide)") pos(3) region(color(none) lwidth(none)) col(1)) title("(c)") + + graph export "lnylnp.pdf", as(pdf) replace + +*Figure 11.d - Seed +twoway (scatter lnyield tindex, mcolor(black%05) msize(small) mlwidth(none) msymbol(circle) /// + ytitle("ln(yield), ln(seed)") yscale(r(0 12)) ylabel(0 2 4 6 8 10 12, labsize(small))) /// + (scatter lnseed tindex, mcolor(orangebrown%05) msize(small) mlwidth(none) msymbol(circle) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2009" 50 "2014", labsize(small))) /// + (lpoly lnyield tindex, lwidth(medthick) lcolor(black) lpattern(solid)) (lpoly lnseed tindex, lwidth(medthick) lcolor(orangebrown) lpattern(solid)), /// + aspect(1) legend( order(3 "ln(yield)" 4 "ln(seed)") pos(3) region(color(none) lwidth(none)) col(1)) title("(d)") + + graph export "lnylns.pdf", as(pdf) replace + +*Figure 11.e - Irrigation +twoway (scatter lnyield tindex, mcolor(black%05) msize(small) mlwidth(none) msymbol(circle) /// + ytitle("ln(yield), ln(irrigation)") yscale(r(0 12)) ylabel(0 2 4 6 8 10 12, labsize(small))) /// + (scatter lnirr tindex, mcolor(turquoise%05) msize(small) mlwidth(none) msymbol(circle) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2009" 50 "2014", labsize(small))) /// + (lpoly lnyield tindex, lwidth(medthick) lcolor(black) lpattern(solid)) (lpoly lnirr tindex, lwidth(medthick) lcolor(turquoise) lpattern(solid)), /// + aspect(1) legend( order(3 "ln(yield)" 4 "ln(irrigation)") pos(3) region(color(none) lwidth(none)) col(1)) title("(e)") + + graph export "lnylni.pdf", as(pdf) replace + +*Figure 11.f - Mechanization +twoway (scatter lnyield tindex, mcolor(black%05) msize(small) mlwidth(none) msymbol(circle) /// + ytitle("ln(yield), ln(mechanization)") yscale(r(0 12)) ylabel(0 2 4 6 8 10 12, labsize(small))) /// + (scatter lnmech tindex, mcolor(reddish%05) msize(small) mlwidth(none) msymbol(circle) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2009" 50 "2014", labsize(small))) /// + (lpoly lnyield tindex, lwidth(medthick) lcolor(black) lpattern(solid)) (lpoly lnmech tindex, lwidth(medthick) lcolor(reddish) lpattern(solid)), /// + aspect(1) legend( order(3 "ln(yield)" 4 "ln(mechanization)") pos(3) region(color(none) lwidth(none)) col(1)) title("(f)") + + graph export "lnylnm.pdf", as(pdf) replace + +******************************************************************************** +***************Figure 12: Relative prices of inputs and output****************** +******************************************************************************** + +*Generate log of prices +gen lnlop = asinh(Lab_w/price) +gen lnfop = asinh(Fert_p/price) +gen lniop = asinh(Irr_p/price) +gen lnmop = asinh(Mech_p/price) +gen lnpop = asinh(Pest_p/price) +gen lnsop = asinh(Seed_p/price) + +*Figure 12 +twoway (lpolyci lnlop tindex, lcolor(vermillion%50) fcolor(gs14%50) clcolor(vermillion%50) ) || /// + (lpolyci lnfop tindex, lcolor(sky%50) fcolor(gs14%50) clcolor(sky%50) ) || /// + (lpolyci lniop tindex, lcolor(turquoise%50) fcolor(gs14%50) clcolor(turquoise%50) ) || /// + (lpolyci lnmop tindex, lcolor(reddish%50) fcolor(gs14%50) clcolor(reddish%50)) || /// + (lpolyci lnpop tindex, lcolor(sea%50) fcolor(gs14%50) clcolor(sea%50) ) || /// + (lpolyci lnsop tindex, lcolor(orangebrown%50) fcolor(gs14%50) clcolor(orangebrown%50) /// + ytitle("Relative Prices") yscale(r(0 6)) ylabel(0 1 2 3 4 5 6, labsize(small)) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "200p" 50 "2014", labsize(small))), /// + legend( order(2 "Labor" 4 "Fertilizer" 6 "Irrigation" 8 "Mechanization" 10 "Pesticide" 12 "Seed") pos(6) /// + region(color(none) lwidth(none)) col(3)) + + graph export "relative.pdf", as(pdf) replace + + +******************************************************************************** +*****************Figure 13: Specialization in household agriculture************* +******************************************************************************** + +save "specialization.dta", replace + +*Generate HHI +sort vdsa_hh_id crop year +egen cval = total(value), by(vdsa_hh_id crop year) +label variable cval "Value of Crop" + +duplicates drop vdsa_hh_id year crop cval, force + +egen tval = total(cval), by(vdsa_hh_id year) +label variable tval "Total Crop Value" + +gen sval = cval/tval +label variable sval "Share of Total Value" + +gen cas = sval if crop == "Castor" +gen cot = sval if crop == "Cotton" +gen pad = sval if crop == "Paddy" +gen pig = sval if crop == "Pigeonpea" +gen sor = sval if crop == "Sorghum" +gen soy = sval if crop == "Soybean" +gen whe = sval if crop == "Wheat" + +egen CAS = max(cas), by(vdsa_hh_id year) +egen COT = max(cot), by(vdsa_hh_id year) +egen PAD = max(pad), by(vdsa_hh_id year) +egen PIG = max(pig), by(vdsa_hh_id year) +egen SOR = max(sor), by(vdsa_hh_id year) +egen SOY = max(soy), by(vdsa_hh_id year) +egen WHE = max(whe), by(vdsa_hh_id year) + +mvdecode CAS-WHE, mv(0) +mvdecode cas-whe, mv(0) +mvencode CAS-WHE, mv(0) +mvencode cas-whe, mv(0) + +replace cas = CAS*100 +replace cot = cas + COT*100 +replace pad = cot + PAD*100 +replace pig = pad + PIG*100 +replace sor = pig + SOR*100 +replace soy = sor + SOY*100 +replace whe = soy + WHE*100 + +drop if year == 2014 +sort tindex + +sort vdsa_hh_id year +by vdsa_hh_id year: replace CAS = CAS^2 +by vdsa_hh_id year: replace COT = COT^2 +by vdsa_hh_id year: replace PAD = PAD^2 +by vdsa_hh_id year: replace PIG = PIG^2 +by vdsa_hh_id year: replace SOR = SOR^2 +by vdsa_hh_id year: replace SOY = SOY^2 +by vdsa_hh_id year: replace WHE = WHE^2 + +by vdsa_hh_id year: gen simp = CAS + COT + PAD + PIG + SOR + SOY + WHE + +*Figure 13 +twoway (lpolyci simp tindex, /// + ytitle("Herfindahl Index") yscale(r(.15 .85)) ylabel(.15 (.10) .85, labsize(small)) /// + xtitle("Year") xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2008" 50 "2014", labsize(small))), /// + legend(off) + + graph export "HHI_VDSA.pdf", as(pdf) replace + +******************************************************************************** +*****************Figure 14: Share of production value for each crop************* +******************************************************************************** + +*Reload and build index +use "specialization.dta", clear + +sort crop year +egen cval = total(value), by(crop year) +label variable cval "Value of Crop" + +duplicates drop year crop cval, force + +egen tval = total(cval), by(year) +label variable tval "Total Crop Value" + +gen sval = cval/tval +label variable sval "Share of Total Value" + +gen cas = sval if crop == "Castor" +gen cot = sval if crop == "Cotton" +gen pad = sval if crop == "Paddy" +gen pig = sval if crop == "Pigeonpea" +gen sor = sval if crop == "Sorghum" +gen soy = sval if crop == "Soybean" +gen whe = sval if crop == "Wheat" + +egen CAS = max(cas), by(year) +egen COT = max(cot), by(year) +egen PAD = max(pad), by(year) +egen PIG = max(pig), by(year) +egen SOR = max(sor), by(year) +egen SOY = max(soy), by(year) +egen WHE = max(whe), by(year) + +mvencode CAS-WHE, mv(0) +mvencode cas-whe, mv(0) + +replace cas = CAS*100 +replace cot = cas + COT*100 +replace pad = cot + PAD*100 +replace pig = pad + PIG*100 +replace sor = pig + SOR*100 +replace soy = sor + SOY*100 +replace whe = soy + WHE*100 + +drop if year == 2014 +sort tindex + +*Figure 14 +twoway (area whe tindex, fcolor(orangebrown%90) lcolor(orangebrown) ) /// + (area soy tindex, fcolor(reddish%90) lcolor(reddish) ) /// + (area sor tindex, fcolor(sky%90) lcolor(sky) ) /// + (area pig tindex, fcolor(turquoise%90) lcolor(turquoise) ) /// + (area pad tindex, fcolor(ananas%90) lcolor(ananas) ) /// + (area cot tindex, fcolor(vermillion%90) lcolor(vermillion) ) /// + (area cas tindex, fcolor(sea%90) lcolor(sea) ), /// + xscale(r(0 50)) xlabel(0 "1975" 10 "1979" 20 "1984" 30 "2004" 40 "2008" 50 "2014", labsize(small)) /// + ylabel(0 (25) 100, alternate nogrid val) /// + xtitle("Year") ytitle("% of Production Value") legend(label(1 "Wheat") /// + label(2 "Soybean") label(3 "Sorghum") label(4 "Pigeon pea") label(5 "Rice") /// + label(6 "Cotton") label(7 "Castor") position(6) col(4) row(2) order(7 6 4 5 3 2 1)) + + graph export "Crop_Share.pdf", as(pdf) replace + +******************************************************************************** +*********************Figure 15: Agriculture earnings gap************************ +******************************************************************************** + +use "household_data.dta", clear + +*Generate share values +gen tot_inc = ag_inc + ms_inc + sr_inc + +replace ag_inc = (ag_inc/tot_inc)*100 +replace ms_inc = (ms_inc/tot_inc)*100 +replace sr_inc = (sr_inc/tot_inc)*100 + +gen ag = ag_inc +gen ms = ag_inc + ms_inc +gen sr = ag_inc + ms_inc + sr_inc + +label variable sr "Services (% of Income)" +label variable ms "Industry (% of Income)" +label variable ag "Agriculture (% of Income)" + +replace tot_days = ag_days + ms_days + sr_days + +replace ag_days = (ag_days/tot_days)*100 +replace ms_days = (ms_days/tot_days)*100 +replace sr_days = (sr_days/tot_days)*100 + +gen ag_1 = ag_days +gen ms_1 = ag_days + ms_days +gen sr_1 = ag_days + ms_days + sr_days + +label variable sr_1 "Services (% of Employment)" +label variable ms_1 "Industry (% of Employment)" +label variable ag_1 "Agriculture (% of Employment)" + +label variable ag "Agri. (% of income)" +label variable ag_1 "Agri. (% of employment)" + +gen ag_ag1 = ag - ag_1 +label variable ag_ag1 "Agri. earnings gap" + +*Figure 15 +twoway (lpolyci ag_ag1 tindex, lcolor(black%60) fcolor(gs14%60) clcolor(black%60) ) || /// + (lpolyci ag_1 tindex, lcolor(emerald%60) fcolor(gs14%60) clcolor(emerald%60) ) || /// + (lpolyci ag tindex, lcolor(maroon%60) fcolor(gs14%60) clcolor(maroon%60) /// + ytitle("Percentage (%)") yscale(r(-50 75)) ylabel(-50 -25 0 25 50 75, labsize(small)) /// + xtitle("Year") xscale(r(0 25)) xlabel(1 "1975" 5 "1979" 10 "1984" 15 "2004" 20 "2009" 25 "2014", labsize(small))), /// + legend(order(6 4 2) label(6 "Agri. (% of income)") label(4 "Agri. (% of employment)") label(2 "Agri. earnings gap") /// + position(6) col(3) row(1) ) + + graph export "VDSA_conv.pdf", as(pdf) replace + +******************************************************************************** +***********************Figure 16: Farm household income************************* +******************************************************************************** + +use "WBDI.dta", clear +rename Year year +replace NYGDPPCAPKD = NYGDPPCAPKD*53.0650 + +merge 1:m year using "household_data.dta" +drop if _merge != 3 + +gen tot_inc = ag_inc + ms_inc + sr_inc + +gen inc_pc = tot_inc/hh_size + +sort vdsid_hhid year + +egen float hh_id = group(vdsid_hhid) + +xtset hh_id tindex + +sort hh_id tindex +by hh_id: gen hh_gr = (hh_size/hh_size[_n-1] - 1)*100 + +order hh_gr, after(hh_size) + +winsor2 inc_pc, replace + +gen ag_pc = ag_inc/hh_size +gen ms_pc = ms_inc/hh_size +gen sr_pc = sr_inc/hh_size + +winsor2 ag_pc ms_pc sr_pc, replace + +gen lninc = asinh(inc_pc) + +winsor2 lninc inc_pc if year < 2001, replace +winsor2 lninc inc_pc if year > 1989, replace + + +*Figure 16 +sort tindex +twoway (lpoly NYGDPPCAPKD tindex, lcolor(black) ) || /// + (lpolyci inc_pc tindex, lcolor(turquoise%60) fcolor(gs14%60) clcolor(turquoise%60) ) || /// + (lpolyci ag_pc tindex, lcolor(sky%60) fcolor(gs14%60) clcolor(sky%60) ) || /// + (lpolyci sr_pc tindex, lcolor(vermillion%60) fcolor(gs14%60) clcolor(vermillion%60) ) || /// + (lpolyci ms_pc tindex, lcolor(gs10%60) fcolor(gs14%60) clcolor(gs10%60) /// + ytitle("Rupees") yscale(r(0 90000)) ylabel(0 20000 40000 60000 80000, labsize(small)) /// + xtitle("Year") xscale(r(0 25)) xlabel(1 "1975" 5 "1979" 10 "1984" 15 "2004" 20 "2009" 25 "2014", labsize(small))), /// + legend( order(1 "GDP per capita" 3 "Total income per capita" 5 "Agricultural income per capita" /// + 7 "Service income per capita" 9 "industry income per capita") pos(6) region(color(none) lwidth(none)) col(3)) + + graph export "inc_pc.pdf", as(pdf) replace + +/* END */ \ No newline at end of file diff --git a/Data_Extract_From_World_Development_Indicators.xlsx b/Data_Extract_From_World_Development_Indicators.xlsx new file mode 100644 index 0000000..1ec259d Binary files /dev/null and b/Data_Extract_From_World_Development_Indicators.xlsx differ diff --git a/FAOSTAT_data_11-27-2018.csv b/FAOSTAT_data_11-27-2018.csv new file mode 100644 index 0000000..f86776f --- /dev/null +++ b/FAOSTAT_data_11-27-2018.csv @@ -0,0 +1,4407 @@ +Domain Code,Domain,Area Code,Area,Element Code,Element,Item Code,Item,Year Code,Year,Unit,Value,Flag,Flag Description +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1961","1961","hg/ha","5000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1962","1962","hg/ha","5000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1963","1963","hg/ha","5000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1964","1964","hg/ha","5000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1965","1965","hg/ha","5000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1966","1966","hg/ha","4948","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1967","1967","hg/ha","4948","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1968","1968","hg/ha","4948","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1969","1969","hg/ha","4526","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1970","1970","hg/ha","4526","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1971","1971","hg/ha","4526","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1972","1972","hg/ha","4327","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1973","1973","hg/ha","4327","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1974","1974","hg/ha","4327","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1975","1975","hg/ha","4361","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1976","1976","hg/ha","4679","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1977","1977","hg/ha","6150","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1978","1978","hg/ha","5036","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1979","1979","hg/ha","5084","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1980","1980","hg/ha","5698","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1981","1981","hg/ha","5933","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1982","1982","hg/ha","5008","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1983","1983","hg/ha","6400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1984","1984","hg/ha","6053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1985","1985","hg/ha","5265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1986","1986","hg/ha","5320","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1987","1987","hg/ha","4622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1988","1988","hg/ha","5441","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1989","1989","hg/ha","3960","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1990","1990","hg/ha","5912","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1991","1991","hg/ha","4797","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1992","1992","hg/ha","4632","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1993","1993","hg/ha","4117","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1994","1994","hg/ha","3589","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1995","1995","hg/ha","3667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1996","1996","hg/ha","4004","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1997","1997","hg/ha","4245","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1998","1998","hg/ha","4386","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","1999","1999","hg/ha","4762","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2000","2000","hg/ha","4840","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2001","2001","hg/ha","4303","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2002","2002","hg/ha","2968","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2003","2003","hg/ha","5345","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2004","2004","hg/ha","5531","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2005","2005","hg/ha","5844","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2006","2006","hg/ha","5681","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2007","2007","hg/ha","7013","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2008","2008","hg/ha","6575","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2009","2009","hg/ha","6844","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2010","2010","hg/ha","7367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2011","2011","hg/ha","7747","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2012","2012","hg/ha","7746","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2013","2013","hg/ha","7840","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2014","2014","hg/ha","7658","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2015","2015","hg/ha","7573","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","711","Anise, badian, fennel, coriander","2016","2016","hg/ha","7149","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1961","1961","hg/ha","41573","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1962","1962","hg/ha","41558","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1963","1963","hg/ha","41543","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1964","1964","hg/ha","41509","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1965","1965","hg/ha","41475","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1966","1966","hg/ha","41489","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1967","1967","hg/ha","41503","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1968","1968","hg/ha","41476","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1969","1969","hg/ha","41443","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1970","1970","hg/ha","41467","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1971","1971","hg/ha","41509","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1972","1972","hg/ha","47271","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1973","1973","hg/ha","50889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1974","1974","hg/ha","54562","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1975","1975","hg/ha","44080","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1976","1976","hg/ha","41494","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1977","1977","hg/ha","41399","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1978","1978","hg/ha","43383","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1979","1979","hg/ha","50780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1980","1980","hg/ha","47372","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1981","1981","hg/ha","56329","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1982","1982","hg/ha","60291","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1983","1983","hg/ha","59774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1984","1984","hg/ha","59773","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1985","1985","hg/ha","59773","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1986","1986","hg/ha","76242","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1987","1987","hg/ha","48311","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1988","1988","hg/ha","53776","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1989","1989","hg/ha","58080","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1990","1990","hg/ha","58435","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1991","1991","hg/ha","60680","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1992","1992","hg/ha","58991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1993","1993","hg/ha","61083","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1994","1994","hg/ha","65000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1995","1995","hg/ha","57143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1996","1996","hg/ha","55798","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1997","1997","hg/ha","58751","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1998","1998","hg/ha","58002","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","1999","1999","hg/ha","59740","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2000","2000","hg/ha","45652","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2001","2001","hg/ha","51250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2002","2002","hg/ha","48333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2003","2003","hg/ha","58800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2004","2004","hg/ha","75626","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2005","2005","hg/ha","75379","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2006","2006","hg/ha","80053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2007","2007","hg/ha","64444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2008","2008","hg/ha","75795","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2009","2009","hg/ha","72445","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2010","2010","hg/ha","62821","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2011","2011","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2012","2012","hg/ha","68450","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2013","2013","hg/ha","61378","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2014","2014","hg/ha","79788","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2015","2015","hg/ha","66897","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","515","Apples","2016","2016","hg/ha","91465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1961","1961","hg/ha","27586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1962","1962","hg/ha","30741","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1963","1963","hg/ha","30357","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1964","1964","hg/ha","30345","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1965","1965","hg/ha","30667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1966","1966","hg/ha","30645","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1967","1967","hg/ha","30625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1968","1968","hg/ha","30294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1969","1969","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1970","1970","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1971","1971","hg/ha","31429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1972","1972","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1973","1973","hg/ha","30556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1974","1974","hg/ha","30263","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1975","1975","hg/ha","31667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1976","1976","hg/ha","30303","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1977","1977","hg/ha","29630","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1978","1978","hg/ha","29630","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1979","1979","hg/ha","29167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1980","1980","hg/ha","32500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1981","1981","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1982","1982","hg/ha","29412","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1983","1983","hg/ha","28947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1984","1984","hg/ha","29412","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1985","1985","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1986","1986","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1987","1987","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1988","1988","hg/ha","29000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1989","1989","hg/ha","29412","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1990","1990","hg/ha","30000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1991","1991","hg/ha","29524","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1992","1992","hg/ha","29545","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1993","1993","hg/ha","29565","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1994","1994","hg/ha","29167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1995","1995","hg/ha","28992","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1996","1996","hg/ha","28984","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1997","1997","hg/ha","28894","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1998","1998","hg/ha","28786","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","1999","1999","hg/ha","28677","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2000","2000","hg/ha","28569","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2001","2001","hg/ha","28461","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2002","2002","hg/ha","28353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2003","2003","hg/ha","28244","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2004","2004","hg/ha","28236","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2005","2005","hg/ha","28227","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2006","2006","hg/ha","28218","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2007","2007","hg/ha","28210","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2008","2008","hg/ha","28201","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2009","2009","hg/ha","28192","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2010","2010","hg/ha","28183","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2011","2011","hg/ha","28175","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2012","2012","hg/ha","28166","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2013","2013","hg/ha","28157","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2014","2014","hg/ha","28148","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2015","2015","hg/ha","28140","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","526","Apricots","2016","2016","hg/ha","28131","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1961","1961","hg/ha","8889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1962","1962","hg/ha","8889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1963","1963","hg/ha","8889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1964","1964","hg/ha","8889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1965","1965","hg/ha","8626","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1966","1966","hg/ha","8686","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1967","1967","hg/ha","9155","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1968","1968","hg/ha","9184","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1969","1969","hg/ha","8917","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1970","1970","hg/ha","8569","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1971","1971","hg/ha","8428","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1972","1972","hg/ha","8635","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1973","1973","hg/ha","8288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1974","1974","hg/ha","9073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1975","1975","hg/ha","8705","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1976","1976","hg/ha","9014","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1977","1977","hg/ha","9174","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1978","1978","hg/ha","10258","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1979","1979","hg/ha","10151","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1980","1980","hg/ha","10044","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1981","1981","hg/ha","10578","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1982","1982","hg/ha","10663","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1983","1983","hg/ha","10971","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1984","1984","hg/ha","10183","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1985","1985","hg/ha","11790","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1986","1986","hg/ha","11649","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1987","1987","hg/ha","11242","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1988","1988","hg/ha","11346","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1989","1989","hg/ha","12188","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1990","1990","hg/ha","11995","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1991","1991","hg/ha","10991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1992","1992","hg/ha","10965","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1993","1993","hg/ha","11311","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1994","1994","hg/ha","11512","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1995","1995","hg/ha","11878","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1996","1996","hg/ha","11588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1997","1997","hg/ha","11780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1998","1998","hg/ha","12426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","1999","1999","hg/ha","11071","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2000","2000","hg/ha","11379","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2001","2001","hg/ha","11379","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2002","2002","hg/ha","13793","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2003","2003","hg/ha","11769","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2004","2004","hg/ha","12033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2005","2005","hg/ha","12427","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2006","2006","hg/ha","12676","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2007","2007","hg/ha","12629","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2008","2008","hg/ha","12312","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2009","2009","hg/ha","12433","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2010","2010","hg/ha","11947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2011","2011","hg/ha","11947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2012","2012","hg/ha","14677","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2013","2013","hg/ha","13655","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2014","2014","hg/ha","13761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2015","2015","hg/ha","16600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","226","Areca nuts","2016","2016","hg/ha","14863","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1961","1961","hg/ha","136788","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1962","1962","hg/ha","133978","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1963","1963","hg/ha","134767","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1964","1964","hg/ha","135556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1965","1965","hg/ha","155024","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1966","1966","hg/ha","163254","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1967","1967","hg/ha","153990","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1968","1968","hg/ha","142045","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1969","1969","hg/ha","138055","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1970","1970","hg/ha","129033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1971","1971","hg/ha","150160","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1972","1972","hg/ha","145397","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1973","1973","hg/ha","142150","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1974","1974","hg/ha","139205","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1975","1975","hg/ha","147321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1976","1976","hg/ha","152897","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1977","1977","hg/ha","157958","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1978","1978","hg/ha","169929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1979","1979","hg/ha","155740","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1980","1980","hg/ha","149468","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1981","1981","hg/ha","157442","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1982","1982","hg/ha","148168","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1983","1983","hg/ha","164288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1984","1984","hg/ha","173880","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1985","1985","hg/ha","177063","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1986","1986","hg/ha","190340","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1987","1987","hg/ha","192828","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1988","1988","hg/ha","119798","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1989","1989","hg/ha","192584","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1990","1990","hg/ha","195973","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1991","1991","hg/ha","207425","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1992","1992","hg/ha","200541","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1993","1993","hg/ha","229677","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1994","1994","hg/ha","242313","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1995","1995","hg/ha","237897","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1996","1996","hg/ha","235137","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1997","1997","hg/ha","298434","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1998","1998","hg/ha","328261","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","1999","1999","hg/ha","343061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2000","2000","hg/ha","300986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2001","2001","hg/ha","304803","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2002","2002","hg/ha","279916","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2003","2003","hg/ha","277910","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2004","2004","hg/ha","283998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2005","2005","hg/ha","331656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2006","2006","hg/ha","347531","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2007","2007","hg/ha","362052","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2008","2008","hg/ha","369774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2009","2009","hg/ha","343626","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2010","2010","hg/ha","358795","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2011","2011","hg/ha","357252","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2012","2012","hg/ha","341611","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2013","2013","hg/ha","346420","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2014","2014","hg/ha","370367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2015","2015","hg/ha","355487","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","486","Bananas","2016","2016","hg/ha","344255","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1961","1961","hg/ha","8796","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1962","1962","hg/ha","9511","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1963","1963","hg/ha","8016","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1964","1964","hg/ha","7347","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1965","1965","hg/ha","9400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1966","1966","hg/ha","9023","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1967","1967","hg/ha","8314","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1968","1968","hg/ha","10380","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1969","1969","hg/ha","8788","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1970","1970","hg/ha","9824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1971","1971","hg/ha","10900","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1972","1972","hg/ha","10496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1973","1973","hg/ha","9715","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1974","1974","hg/ha","8947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1975","1975","hg/ha","10866","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1976","1976","hg/ha","11392","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1977","1977","hg/ha","10457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1978","1978","hg/ha","11548","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1979","1979","hg/ha","11719","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1980","1980","hg/ha","9167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1981","1981","hg/ha","12690","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1982","1982","hg/ha","11535","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1983","1983","hg/ha","12590","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1984","1984","hg/ha","13232","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1985","1985","hg/ha","12416","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1986","1986","hg/ha","14337","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1987","1987","hg/ha","13631","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1988","1988","hg/ha","13799","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1989","1989","hg/ha","15925","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1990","1990","hg/ha","14998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1991","1991","hg/ha","16965","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1992","1992","hg/ha","17808","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1993","1993","hg/ha","16518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1994","1994","hg/ha","16531","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1995","1995","hg/ha","14403","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1996","1996","hg/ha","18325","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1997","1997","hg/ha","19303","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1998","1998","hg/ha","19578","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","1999","1999","hg/ha","19397","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2000","2000","hg/ha","19972","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2001","2001","hg/ha","18400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2002","2002","hg/ha","21600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2003","2003","hg/ha","20060","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2004","2004","hg/ha","19750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2005","2005","hg/ha","19580","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2006","2006","hg/ha","19378","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2007","2007","hg/ha","20582","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2008","2008","hg/ha","19914","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2009","2009","hg/ha","23935","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2010","2010","hg/ha","21717","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2011","2011","hg/ha","23574","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2012","2012","hg/ha","25194","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2013","2013","hg/ha","25180","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2014","2014","hg/ha","27171","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2015","2015","hg/ha","22815","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","44","Barley","2016","2016","hg/ha","25508","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1961","1961","hg/ha","6611","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1962","1962","hg/ha","6417","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1963","1963","hg/ha","6094","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1964","1964","hg/ha","6518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1965","1965","hg/ha","5528","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1966","1966","hg/ha","5522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1967","1967","hg/ha","6073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1968","1968","hg/ha","5172","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1969","1969","hg/ha","5560","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1970","1970","hg/ha","5906","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1971","1971","hg/ha","5994","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1972","1972","hg/ha","5917","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1973","1973","hg/ha","6227","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1974","1974","hg/ha","6564","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1975","1975","hg/ha","6891","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1976","1976","hg/ha","7604","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1977","1977","hg/ha","7749","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1978","1978","hg/ha","7692","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1979","1979","hg/ha","7453","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1980","1980","hg/ha","7189","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1981","1981","hg/ha","7501","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1982","1982","hg/ha","6650","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1983","1983","hg/ha","7544","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1984","1984","hg/ha","7123","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1985","1985","hg/ha","8303","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1986","1986","hg/ha","7746","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1987","1987","hg/ha","6469","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1988","1988","hg/ha","8131","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1989","1989","hg/ha","8484","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1990","1990","hg/ha","8911","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1991","1991","hg/ha","9513","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1992","1992","hg/ha","8772","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1993","1993","hg/ha","9052","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1994","1994","hg/ha","9320","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1995","1995","hg/ha","9438","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1996","1996","hg/ha","13921","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1997","1997","hg/ha","10042","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1998","1998","hg/ha","9904","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","1999","1999","hg/ha","10778","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2000","2000","hg/ha","10777","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2001","2001","hg/ha","11759","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2002","2002","hg/ha","11315","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2003","2003","hg/ha","10557","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2004","2004","hg/ha","10874","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2005","2005","hg/ha","11082","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2006","2006","hg/ha","11357","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2007","2007","hg/ha","11950","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2008","2008","hg/ha","13200","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2009","2009","hg/ha","10965","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2010","2010","hg/ha","12230","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2011","2011","hg/ha","12714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2012","2012","hg/ha","12989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2013","2013","hg/ha","10800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2014","2014","hg/ha","11734","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2015","2015","hg/ha","12132","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","782","Bastfibres, other","2016","2016","hg/ha","12012","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1961","1961","hg/ha","2577","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1962","1962","hg/ha","2683","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1963","1963","hg/ha","2593","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1964","1964","hg/ha","2809","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1965","1965","hg/ha","2401","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1966","1966","hg/ha","2330","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1967","1967","hg/ha","2659","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1968","1968","hg/ha","2518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1969","1969","hg/ha","2699","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1970","1970","hg/ha","3090","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1971","1971","hg/ha","2703","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1972","1972","hg/ha","2332","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1973","1973","hg/ha","3091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1974","1974","hg/ha","2601","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1975","1975","hg/ha","3163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1976","1976","hg/ha","3002","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1977","1977","hg/ha","3297","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1978","1978","hg/ha","3037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1979","1979","hg/ha","2436","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1980","1980","hg/ha","2959","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1981","1981","hg/ha","3257","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1982","1982","hg/ha","3300","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1983","1983","hg/ha","3842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1984","1984","hg/ha","3437","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1985","1985","hg/ha","3307","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1986","1986","hg/ha","3287","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1987","1987","hg/ha","3719","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1988","1988","hg/ha","4283","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1989","1989","hg/ha","4026","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1990","1990","hg/ha","4172","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1991","1991","hg/ha","3645","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1992","1992","hg/ha","4426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1993","1993","hg/ha","3834","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1994","1994","hg/ha","3657","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1995","1995","hg/ha","4391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1996","1996","hg/ha","4168","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1997","1997","hg/ha","3511","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1998","1998","hg/ha","3459","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","1999","1999","hg/ha","4800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2000","2000","hg/ha","4871","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2001","2001","hg/ha","5476","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2002","2002","hg/ha","3335","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2003","2003","hg/ha","4562","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2004","2004","hg/ha","3284","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2005","2005","hg/ha","3269","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2006","2006","hg/ha","3825","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2007","2007","hg/ha","3930","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2008","2008","hg/ha","3763","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2009","2009","hg/ha","4050","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2010","2010","hg/ha","4445","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2011","2011","hg/ha","3936","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2012","2012","hg/ha","4077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2013","2013","hg/ha","3989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2014","2014","hg/ha","4230","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2015","2015","hg/ha","4128","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","176","Beans, dry","2016","2016","hg/ha","4117","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1961","1961","hg/ha","23125","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1962","1962","hg/ha","22963","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1963","1963","hg/ha","22892","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1964","1964","hg/ha","23529","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1965","1965","hg/ha","23864","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1966","1966","hg/ha","23563","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1967","1967","hg/ha","23333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1968","1968","hg/ha","23404","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1969","1969","hg/ha","23958","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1970","1970","hg/ha","24000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1971","1971","hg/ha","23810","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1972","1972","hg/ha","24528","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1973","1973","hg/ha","25234","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1974","1974","hg/ha","25182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1975","1975","hg/ha","25000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1976","1976","hg/ha","24825","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1977","1977","hg/ha","24783","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1978","1978","hg/ha","25000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1979","1979","hg/ha","25207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1980","1980","hg/ha","25600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1981","1981","hg/ha","26400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1982","1982","hg/ha","26923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1983","1983","hg/ha","26894","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1984","1984","hg/ha","27068","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1985","1985","hg/ha","27239","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1986","1986","hg/ha","27407","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1987","1987","hg/ha","27574","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1988","1988","hg/ha","27899","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1989","1989","hg/ha","27465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1990","1990","hg/ha","29561","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1991","1991","hg/ha","26154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1992","1992","hg/ha","26455","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1993","1993","hg/ha","26736","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1994","1994","hg/ha","26759","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1995","1995","hg/ha","26837","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1996","1996","hg/ha","27027","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1997","1997","hg/ha","27087","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1998","1998","hg/ha","27333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","1999","1999","hg/ha","27309","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2000","2000","hg/ha","27392","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2001","2001","hg/ha","27471","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2002","2002","hg/ha","27548","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2003","2003","hg/ha","27624","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2004","2004","hg/ha","27625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2005","2005","hg/ha","27679","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2006","2006","hg/ha","27731","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2007","2007","hg/ha","27782","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2008","2008","hg/ha","27832","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2009","2009","hg/ha","27880","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2010","2010","hg/ha","27927","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2011","2011","hg/ha","27972","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2012","2012","hg/ha","28182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2013","2013","hg/ha","28182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2014","2014","hg/ha","28150","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2015","2015","hg/ha","28163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","414","Beans, green","2016","2016","hg/ha","28110","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1985","1985","hg/ha","36364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1986","1986","hg/ha","36364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1987","1987","hg/ha","36364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1988","1988","hg/ha","36364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1989","1989","hg/ha","36364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1990","1990","hg/ha","38036","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1991","1991","hg/ha","38428","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1992","1992","hg/ha","40415","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1993","1993","hg/ha","42333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1994","1994","hg/ha","44460","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1995","1995","hg/ha","45842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1996","1996","hg/ha","47171","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1997","1997","hg/ha","50624","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1998","1998","hg/ha","49815","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","1999","1999","hg/ha","53117","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2000","2000","hg/ha","55110","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2001","2001","hg/ha","55458","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2002","2002","hg/ha","57332","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2003","2003","hg/ha","59131","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2004","2004","hg/ha","59915","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2005","2005","hg/ha","61201","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2006","2006","hg/ha","62395","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2007","2007","hg/ha","69843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2008","2008","hg/ha","64707","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2009","2009","hg/ha","65535","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2010","2010","hg/ha","66663","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2011","2011","hg/ha","67796","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2012","2012","hg/ha","68063","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2013","2013","hg/ha","69980","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2014","2014","hg/ha","71897","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2015","2015","hg/ha","72498","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","558","Berries nes","2016","2016","hg/ha","73146","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1961","1961","hg/ha","137143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1962","1962","hg/ha","134091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1963","1963","hg/ha","132609","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1964","1964","hg/ha","131250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1965","1965","hg/ha","130000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1966","1966","hg/ha","129630","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1967","1967","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1968","1968","hg/ha","131579","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1969","1969","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1970","1970","hg/ha","134615","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1971","1971","hg/ha","135593","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1972","1972","hg/ha","136364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1973","1973","hg/ha","136986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1974","1974","hg/ha","137500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1975","1975","hg/ha","137931","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1976","1976","hg/ha","138298","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1977","1977","hg/ha","138614","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1978","1978","hg/ha","138889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1979","1979","hg/ha","139130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1980","1980","hg/ha","140496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1981","1981","hg/ha","140625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1982","1982","hg/ha","141791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1983","1983","hg/ha","141844","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1984","1984","hg/ha","141892","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1985","1985","hg/ha","141892","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1986","1986","hg/ha","141935","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1987","1987","hg/ha","141935","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1988","1988","hg/ha","144220","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1989","1989","hg/ha","141518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1990","1990","hg/ha","141375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1991","1991","hg/ha","156792","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1992","1992","hg/ha","201841","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1993","1993","hg/ha","156087","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1994","1994","hg/ha","177727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1995","1995","hg/ha","191573","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1996","1996","hg/ha","205111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1997","1997","hg/ha","218352","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1998","1998","hg/ha","231304","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","1999","1999","hg/ha","234167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2000","2000","hg/ha","228780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2001","2001","hg/ha","224389","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2002","2002","hg/ha","220000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2003","2003","hg/ha","230624","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2004","2004","hg/ha","219310","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2005","2005","hg/ha","212422","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2006","2006","hg/ha","222379","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2007","2007","hg/ha","224257","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2008","2008","hg/ha","222180","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2009","2009","hg/ha","221457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2010","2010","hg/ha","242309","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2011","2011","hg/ha","215420","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2012","2012","hg/ha","215692","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2013","2013","hg/ha","229409","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2014","2014","hg/ha","225901","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2015","2015","hg/ha","222409","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","358","Cabbages and other brassicas","2016","2016","hg/ha","225644","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1961","1961","hg/ha","80000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1962","1962","hg/ha","82353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1963","1963","hg/ha","82222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1964","1964","hg/ha","85263","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1965","1965","hg/ha","85000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1966","1966","hg/ha","88038","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1967","1967","hg/ha","88073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1968","1968","hg/ha","88496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1969","1969","hg/ha","93220","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1970","1970","hg/ha","93333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1971","1971","hg/ha","96774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1972","1972","hg/ha","96875","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1973","1973","hg/ha","96992","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1974","1974","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1975","1975","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1976","1976","hg/ha","110345","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1977","1977","hg/ha","110000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1978","1978","hg/ha","109677","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1979","1979","hg/ha","115000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1980","1980","hg/ha","114815","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1981","1981","hg/ha","115337","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1982","1982","hg/ha","119048","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1983","1983","hg/ha","120000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1984","1984","hg/ha","129714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1985","1985","hg/ha","130556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1986","1986","hg/ha","135135","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1987","1987","hg/ha","136842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1988","1988","hg/ha","139487","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1989","1989","hg/ha","139594","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1990","1990","hg/ha","140000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1991","1991","hg/ha","142616","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1992","1992","hg/ha","142927","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1993","1993","hg/ha","143204","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1994","1994","hg/ha","143560","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1995","1995","hg/ha","144231","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1996","1996","hg/ha","145455","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1997","1997","hg/ha","144681","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1998","1998","hg/ha","145380","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","1999","1999","hg/ha","145844","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2000","2000","hg/ha","145833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2001","2001","hg/ha","146872","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2002","2002","hg/ha","147398","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2003","2003","hg/ha","147918","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2004","2004","hg/ha","148475","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2005","2005","hg/ha","149142","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2006","2006","hg/ha","149667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2007","2007","hg/ha","150191","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2008","2008","hg/ha","150708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2009","2009","hg/ha","151217","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2010","2010","hg/ha","151717","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2011","2011","hg/ha","152207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2012","2012","hg/ha","152941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2013","2013","hg/ha","152941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2014","2014","hg/ha","153561","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2015","2015","hg/ha","154205","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","426","Carrots and turnips","2016","2016","hg/ha","154659","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1961","1961","hg/ha","4250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1962","1962","hg/ha","4400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1963","1963","hg/ha","4279","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1964","1964","hg/ha","4419","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1965","1965","hg/ha","4348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1966","1966","hg/ha","4302","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1967","1967","hg/ha","4585","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1968","1968","hg/ha","4611","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1969","1969","hg/ha","4533","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1970","1970","hg/ha","4386","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1971","1971","hg/ha","4202","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1972","1972","hg/ha","4062","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1973","1973","hg/ha","3953","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1974","1974","hg/ha","3860","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1975","1975","hg/ha","3991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1976","1976","hg/ha","4312","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1977","1977","hg/ha","4324","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1978","1978","hg/ha","4284","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1979","1979","hg/ha","4094","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1980","1980","hg/ha","4029","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1981","1981","hg/ha","3988","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1982","1982","hg/ha","4069","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1983","1983","hg/ha","4090","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1984","1984","hg/ha","4201","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1985","1985","hg/ha","4342","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1986","1986","hg/ha","4523","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1987","1987","hg/ha","4696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1988","1988","hg/ha","4935","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1989","1989","hg/ha","5183","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1990","1990","hg/ha","5380","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1991","1991","hg/ha","5539","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1992","1992","hg/ha","5722","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1993","1993","hg/ha","6250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1994","1994","hg/ha","6195","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1995","1995","hg/ha","5574","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1996","1996","hg/ha","6580","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1997","1997","hg/ha","6525","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1998","1998","hg/ha","5333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","1999","1999","hg/ha","6516","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2000","2000","hg/ha","7580","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2001","2001","hg/ha","6429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2002","2002","hg/ha","6267","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2003","2003","hg/ha","6494","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2004","2004","hg/ha","6859","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2005","2005","hg/ha","6634","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2006","2006","hg/ha","6846","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2007","2007","hg/ha","7260","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2008","2008","hg/ha","7661","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2009","2009","hg/ha","7783","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2010","2010","hg/ha","6641","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2011","2011","hg/ha","7077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2012","2012","hg/ha","7406","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2013","2013","hg/ha","7591","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2014","2014","hg/ha","7448","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2015","2015","hg/ha","7233","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","217","Cashew nuts, with shell","2016","2016","hg/ha","6477","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1961","1961","hg/ha","71861","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1962","1962","hg/ha","71396","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1963","1963","hg/ha","71134","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1964","1964","hg/ha","115697","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1965","1965","hg/ha","126375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1966","1966","hg/ha","127934","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1967","1967","hg/ha","131621","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1968","1968","hg/ha","133786","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1969","1969","hg/ha","129175","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1970","1970","hg/ha","147876","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1971","1971","hg/ha","148598","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1972","1972","hg/ha","170368","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1973","1973","hg/ha","175424","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1974","1974","hg/ha","174386","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1975","1975","hg/ha","163207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1976","1976","hg/ha","169344","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1977","1977","hg/ha","165241","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1978","1978","hg/ha","158758","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1979","1979","hg/ha","167361","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1980","1980","hg/ha","166107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1981","1981","hg/ha","182921","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1982","1982","hg/ha","163738","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1983","1983","hg/ha","177086","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1984","1984","hg/ha","184289","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1985","1985","hg/ha","185460","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1986","1986","hg/ha","177160","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1987","1987","hg/ha","181470","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1988","1988","hg/ha","201807","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1989","1989","hg/ha","193847","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1990","1990","hg/ha","205381","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1991","1991","hg/ha","218925","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1992","1992","hg/ha","232463","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1993","1993","hg/ha","230430","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1994","1994","hg/ha","245277","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1995","1995","hg/ha","252775","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1996","1996","hg/ha","238528","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1997","1997","hg/ha","221117","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1998","1998","hg/ha","252815","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","1999","1999","hg/ha","239523","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2000","2000","hg/ha","269087","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2001","2001","hg/ha","266998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2002","2002","hg/ha","272746","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2003","2003","hg/ha","262135","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2004","2004","hg/ha","270436","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2005","2005","hg/ha","304978","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2006","2006","hg/ha","321132","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2007","2007","hg/ha","322204","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2008","2008","hg/ha","335407","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2009","2009","hg/ha","343433","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2010","2010","hg/ha","347555","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2011","2011","hg/ha","364770","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2012","2012","hg/ha","385818","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2013","2013","hg/ha","349594","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2014","2014","hg/ha","356555","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2015","2015","hg/ha","210240","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","125","Cassava","2016","2016","hg/ha","223235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1961","1961","hg/ha","2243","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1962","1962","hg/ha","2111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1963","1963","hg/ha","2107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1964","1964","hg/ha","2426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1965","1965","hg/ha","1970","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1966","1966","hg/ha","2739","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1967","1967","hg/ha","2758","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1968","1968","hg/ha","2938","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1969","1969","hg/ha","3060","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1970","1970","hg/ha","3103","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1971","1971","hg/ha","3397","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1972","1972","hg/ha","3410","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1973","1973","hg/ha","4191","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1974","1974","hg/ha","3564","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1975","1975","hg/ha","3812","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1976","1976","hg/ha","3610","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1977","1977","hg/ha","5720","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1978","1978","hg/ha","5133","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1979","1979","hg/ha","5160","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1980","1980","hg/ha","4109","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1981","1981","hg/ha","5561","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1982","1982","hg/ha","5939","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1983","1983","hg/ha","6489","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1984","1984","hg/ha","7004","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1985","1985","hg/ha","4843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1986","1986","hg/ha","3987","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1987","1987","hg/ha","4071","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1988","1988","hg/ha","6582","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1989","1989","hg/ha","7364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1990","1990","hg/ha","8842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1991","1991","hg/ha","8106","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1992","1992","hg/ha","9444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1993","1993","hg/ha","9267","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1994","1994","hg/ha","10847","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1995","1995","hg/ha","9886","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1996","1996","hg/ha","12189","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1997","1997","hg/ha","12925","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1998","1998","hg/ha","12312","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","1999","1999","hg/ha","9788","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2000","2000","hg/ha","8176","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2001","2001","hg/ha","9107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2002","2002","hg/ha","7341","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2003","2003","hg/ha","11108","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2004","2004","hg/ha","10678","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2005","2005","hg/ha","11464","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2006","2006","hg/ha","11925","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2007","2007","hg/ha","13380","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2008","2008","hg/ha","13520","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2009","2009","hg/ha","13730","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2010","2010","hg/ha","15260","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2011","2011","hg/ha","15602","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2012","2012","hg/ha","15916","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2013","2013","hg/ha","16244","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2014","2014","hg/ha","16923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2015","2015","hg/ha","15368","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","265","Castor oil seed","2016","2016","hg/ha","17862","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1961","1961","hg/ha","100732","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1962","1962","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1963","1963","hg/ha","102500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1964","1964","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1965","1965","hg/ha","104000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1966","1966","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1967","1967","hg/ha","108333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1968","1968","hg/ha","107143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1969","1969","hg/ha","112500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1970","1970","hg/ha","105556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1971","1971","hg/ha","111111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1972","1972","hg/ha","110000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1973","1973","hg/ha","110000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1974","1974","hg/ha","118182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1975","1975","hg/ha","118182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1976","1976","hg/ha","116667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1977","1977","hg/ha","115385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1978","1978","hg/ha","114286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1979","1979","hg/ha","120000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1980","1980","hg/ha","118750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1981","1981","hg/ha","117647","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1982","1982","hg/ha","122222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1983","1983","hg/ha","121053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1984","1984","hg/ha","126316","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1985","1985","hg/ha","130000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1986","1986","hg/ha","135000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1987","1987","hg/ha","138095","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1988","1988","hg/ha","136364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1989","1989","hg/ha","139130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1990","1990","hg/ha","142265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1991","1991","hg/ha","147843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1992","1992","hg/ha","189720","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1993","1993","hg/ha","151053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1994","1994","hg/ha","164348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1995","1995","hg/ha","170213","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1996","1996","hg/ha","160714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1997","1997","hg/ha","172414","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1998","1998","hg/ha","178800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","1999","1999","hg/ha","187600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2000","2000","hg/ha","188800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2001","2001","hg/ha","180385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2002","2002","hg/ha","181111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2003","2003","hg/ha","171429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2004","2004","hg/ha","184405","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2005","2005","hg/ha","189300","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2006","2006","hg/ha","184446","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2007","2007","hg/ha","183377","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2008","2008","hg/ha","185160","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2009","2009","hg/ha","187214","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2010","2010","hg/ha","188819","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2011","2011","hg/ha","182791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2012","2012","hg/ha","187954","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2013","2013","hg/ha","196194","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2014","2014","hg/ha","197600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2015","2015","hg/ha","192847","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","393","Cauliflowers and broccoli","2016","2016","hg/ha","192465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1961","1961","hg/ha","25000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1962","1962","hg/ha","25833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1963","1963","hg/ha","25600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1964","1964","hg/ha","25385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1965","1965","hg/ha","25185","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1966","1966","hg/ha","26923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1967","1967","hg/ha","27692","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1968","1968","hg/ha","27407","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1969","1969","hg/ha","27143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1970","1970","hg/ha","27857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1971","1971","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1972","1972","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1973","1973","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1974","1974","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1975","1975","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1976","1976","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1977","1977","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1978","1978","hg/ha","23077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1979","1979","hg/ha","23077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1980","1980","hg/ha","16667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1981","1981","hg/ha","20000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1982","1982","hg/ha","20000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1983","1983","hg/ha","23077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1984","1984","hg/ha","23077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1985","1985","hg/ha","23077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1986","1986","hg/ha","8800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1987","1987","hg/ha","8137","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1988","1988","hg/ha","16000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1989","1989","hg/ha","26515","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1990","1990","hg/ha","24615","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1991","1991","hg/ha","26429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1992","1992","hg/ha","26297","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1993","1993","hg/ha","26667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1994","1994","hg/ha","26250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1995","1995","hg/ha","27086","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1996","1996","hg/ha","28235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1997","1997","hg/ha","27937","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1998","1998","hg/ha","27911","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","1999","1999","hg/ha","27650","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2000","2000","hg/ha","27821","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2001","2001","hg/ha","27991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2002","2002","hg/ha","28162","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2003","2003","hg/ha","28332","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2004","2004","hg/ha","28520","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2005","2005","hg/ha","28708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2006","2006","hg/ha","28896","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2007","2007","hg/ha","29084","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2008","2008","hg/ha","29272","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2009","2009","hg/ha","29460","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2010","2010","hg/ha","29648","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2011","2011","hg/ha","29836","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2012","2012","hg/ha","30024","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2013","2013","hg/ha","30212","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2014","2014","hg/ha","30400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2015","2015","hg/ha","30588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","531","Cherries","2016","2016","hg/ha","30776","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1961","1961","hg/ha","6738","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1962","1962","hg/ha","6047","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1963","1963","hg/ha","5833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1964","1964","hg/ha","4813","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1965","1965","hg/ha","6513","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1966","1966","hg/ha","5270","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1967","1967","hg/ha","4526","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1968","1968","hg/ha","7232","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1969","1969","hg/ha","6065","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1970","1970","hg/ha","7154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1971","1971","hg/ha","6633","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1972","1972","hg/ha","6421","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1973","1973","hg/ha","6511","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1974","1974","hg/ha","5282","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1975","1975","hg/ha","5702","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1976","1976","hg/ha","7067","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1977","1977","hg/ha","6802","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1978","1978","hg/ha","6784","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1979","1979","hg/ha","7445","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1980","1980","hg/ha","4805","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1981","1981","hg/ha","6573","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1982","1982","hg/ha","5900","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1983","1983","hg/ha","7150","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1984","1984","hg/ha","6633","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1985","1985","hg/ha","6607","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1986","1986","hg/ha","7416","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1987","1987","hg/ha","6489","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1988","1988","hg/ha","6287","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1989","1989","hg/ha","7532","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1990","1990","hg/ha","6518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1991","1991","hg/ha","7122","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1992","1992","hg/ha","7385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1993","1993","hg/ha","6844","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1994","1994","hg/ha","7833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1995","1995","hg/ha","8532","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1996","1996","hg/ha","6997","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1997","1997","hg/ha","8129","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1998","1998","hg/ha","8108","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","1999","1999","hg/ha","8030","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2000","2000","hg/ha","8327","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2001","2001","hg/ha","7435","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2002","2002","hg/ha","8530","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2003","2003","hg/ha","7173","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2004","2004","hg/ha","8112","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2005","2005","hg/ha","8146","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2006","2006","hg/ha","8085","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2007","2007","hg/ha","8452","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2008","2008","hg/ha","7620","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2009","2009","hg/ha","8948","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2010","2010","hg/ha","9155","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2011","2011","hg/ha","8945","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2012","2012","hg/ha","9255","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2013","2013","hg/ha","10364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2014","2014","hg/ha","9600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2015","2015","hg/ha","8950","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","191","Chick peas","2016","2016","hg/ha","9316","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1961","1961","hg/ha","6315","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1962","1962","hg/ha","6672","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1963","1963","hg/ha","6551","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1964","1964","hg/ha","6634","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1965","1965","hg/ha","5741","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1966","1966","hg/ha","5798","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1967","1967","hg/ha","6358","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1968","1968","hg/ha","6018","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1969","1969","hg/ha","5792","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1970","1970","hg/ha","6643","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1971","1971","hg/ha","6558","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1972","1972","hg/ha","6033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1973","1973","hg/ha","6727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1974","1974","hg/ha","6435","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1975","1975","hg/ha","7111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1976","1976","hg/ha","5367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1977","1977","hg/ha","6869","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1978","1978","hg/ha","6849","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1979","1979","hg/ha","5944","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1980","1980","hg/ha","6098","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1981","1981","hg/ha","6383","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1982","1982","hg/ha","6588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1983","1983","hg/ha","7010","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1984","1984","hg/ha","7933","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1985","1985","hg/ha","9705","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1986","1986","hg/ha","7539","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1987","1987","hg/ha","7801","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1988","1988","hg/ha","8447","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1989","1989","hg/ha","8829","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1990","1990","hg/ha","8809","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1991","1991","hg/ha","7294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1992","1992","hg/ha","8961","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1993","1993","hg/ha","8603","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1994","1994","hg/ha","9585","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1995","1995","hg/ha","9173","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1996","1996","hg/ha","11292","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1997","1997","hg/ha","10351","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1998","1998","hg/ha","11706","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","1999","1999","hg/ha","10976","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2000","2000","hg/ha","11760","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2001","2001","hg/ha","12148","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2002","2002","hg/ha","10824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2003","2003","hg/ha","15959","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2004","2004","hg/ha","16075","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2005","2005","hg/ha","15492","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2006","2006","hg/ha","16281","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2007","2007","hg/ha","16013","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2008","2008","hg/ha","16300","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2009","2009","hg/ha","15679","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2010","2010","hg/ha","15445","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2011","2011","hg/ha","15859","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2012","2012","hg/ha","16432","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2013","2013","hg/ha","19252","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2014","2014","hg/ha","19252","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2015","2015","hg/ha","21091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","689","Chillies and peppers, dry","2016","2016","hg/ha","17605","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1961","1961","hg/ha","59649","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1962","1962","hg/ha","59930","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1963","1963","hg/ha","59862","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1964","1964","hg/ha","61290","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1965","1965","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1966","1966","hg/ha","61875","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1967","1967","hg/ha","62000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1968","1968","hg/ha","62154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1969","1969","hg/ha","63804","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1970","1970","hg/ha","63914","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1971","1971","hg/ha","64024","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1972","1972","hg/ha","64848","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1973","1973","hg/ha","66176","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1974","1974","hg/ha","66857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1975","1975","hg/ha","66944","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1976","1976","hg/ha","67127","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1977","1977","hg/ha","69972","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1978","1978","hg/ha","70000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1979","1979","hg/ha","72973","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1980","1980","hg/ha","73077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1981","1981","hg/ha","73333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1982","1982","hg/ha","77000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1983","1983","hg/ha","77073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1984","1984","hg/ha","82143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1985","1985","hg/ha","81818","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1986","1986","hg/ha","84000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1987","1987","hg/ha","84783","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1988","1988","hg/ha","88085","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1989","1989","hg/ha","87924","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1990","1990","hg/ha","88421","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1991","1991","hg/ha","88292","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1992","1992","hg/ha","89583","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1993","1993","hg/ha","90062","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1994","1994","hg/ha","89796","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1995","1995","hg/ha","91000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1996","1996","hg/ha","90385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1997","1997","hg/ha","90566","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1998","1998","hg/ha","90741","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","1999","1999","hg/ha","90425","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2000","2000","hg/ha","90909","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2001","2001","hg/ha","90174","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2002","2002","hg/ha","89927","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2003","2003","hg/ha","89656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2004","2004","hg/ha","89365","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2005","2005","hg/ha","88349","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2006","2006","hg/ha","87901","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2007","2007","hg/ha","87458","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2008","2008","hg/ha","87012","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2009","2009","hg/ha","86577","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2010","2010","hg/ha","86160","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2011","2011","hg/ha","85766","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2012","2012","hg/ha","85000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2013","2013","hg/ha","85000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2014","2014","hg/ha","84912","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2015","2015","hg/ha","84951","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","401","Chillies and peppers, green","2016","2016","hg/ha","84592","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1977","1977","hg/ha","7895","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1978","1978","hg/ha","7937","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1979","1979","hg/ha","8000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1980","1980","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1981","1981","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1982","1982","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1983","1983","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1984","1984","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1985","1985","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1986","1986","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1987","1987","hg/ha","3500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1988","1988","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1989","1989","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1990","1990","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1991","1991","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1992","1992","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1993","1993","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1994","1994","hg/ha","5674","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1995","1995","hg/ha","5381","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1996","1996","hg/ha","5333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1997","1997","hg/ha","4597","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1998","1998","hg/ha","4387","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","1999","1999","hg/ha","4191","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2000","2000","hg/ha","3930","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2001","2001","hg/ha","4155","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2002","2002","hg/ha","4203","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2003","2003","hg/ha","3835","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2004","2004","hg/ha","3669","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2005","2005","hg/ha","3326","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2006","2006","hg/ha","3453","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2007","2007","hg/ha","3355","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2008","2008","hg/ha","3312","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2009","2009","hg/ha","3471","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2010","2010","hg/ha","2786","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2011","2011","hg/ha","2549","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2012","2012","hg/ha","2063","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2013","2013","hg/ha","1970","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2014","2014","hg/ha","2113","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2015","2015","hg/ha","2051","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","661","Cocoa, beans","2016","2016","hg/ha","2020","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1961","1961","hg/ha","46030","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1962","1962","hg/ha","47007","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1963","1963","hg/ha","43997","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1964","1964","hg/ha","44186","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1965","1965","hg/ha","42319","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1966","1966","hg/ha","43203","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1967","1967","hg/ha","42791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1968","1968","hg/ha","41703","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1969","1969","hg/ha","42122","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1970","1970","hg/ha","43171","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1971","1971","hg/ha","41804","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1972","1972","hg/ha","40538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1973","1973","hg/ha","39446","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1974","1974","hg/ha","40133","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1975","1975","hg/ha","40483","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1976","1976","hg/ha","39870","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1977","1977","hg/ha","38069","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1978","1978","hg/ha","40351","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1979","1979","hg/ha","38929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1980","1980","hg/ha","39232","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1981","1981","hg/ha","37940","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1982","1982","hg/ha","41481","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1983","1983","hg/ha","37021","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1984","1984","hg/ha","43406","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1985","1985","hg/ha","41041","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1986","1986","hg/ha","38483","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1987","1987","hg/ha","40134","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1988","1988","hg/ha","44518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1989","1989","hg/ha","47235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1990","1990","hg/ha","49017","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1991","1991","hg/ha","49052","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1992","1992","hg/ha","54308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1993","1993","hg/ha","54394","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1994","1994","hg/ha","57661","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1995","1995","hg/ha","52497","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1996","1996","hg/ha","51296","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1997","1997","hg/ha","48307","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1998","1998","hg/ha","49872","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","1999","1999","hg/ha","48809","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2000","2000","hg/ha","47175","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2001","2001","hg/ha","47120","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2002","2002","hg/ha","46218","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2003","2003","hg/ha","44906","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2004","2004","hg/ha","43337","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2005","2005","hg/ha","45628","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2006","2006","hg/ha","52342","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2007","2007","hg/ha","56155","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2008","2008","hg/ha","53322","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2009","2009","hg/ha","57114","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2010","2010","hg/ha","57176","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2011","2011","hg/ha","49642","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2012","2012","hg/ha","49415","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2013","2013","hg/ha","55257","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2014","2014","hg/ha","51770","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2015","2015","hg/ha","51801","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","249","Coconuts","2016","2016","hg/ha","51620","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1961","1961","hg/ha","4500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1962","1962","hg/ha","4000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1963","1963","hg/ha","4763","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1964","1964","hg/ha","5775","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1965","1965","hg/ha","4992","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1966","1966","hg/ha","5112","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1967","1967","hg/ha","6230","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1968","1968","hg/ha","4479","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1969","1969","hg/ha","5737","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1970","1970","hg/ha","4970","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1971","1971","hg/ha","8612","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1972","1972","hg/ha","5345","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1973","1973","hg/ha","7006","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1974","1974","hg/ha","6595","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1975","1975","hg/ha","6380","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1976","1976","hg/ha","5600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1977","1977","hg/ha","6394","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1978","1978","hg/ha","7353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1979","1979","hg/ha","6138","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1980","1980","hg/ha","8099","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1981","1981","hg/ha","6242","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1982","1982","hg/ha","7840","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1983","1983","hg/ha","6468","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1984","1984","hg/ha","5071","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1985","1985","hg/ha","9317","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1986","1986","hg/ha","5707","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1987","1987","hg/ha","8914","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1988","1988","hg/ha","5628","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1989","1989","hg/ha","9715","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1990","1990","hg/ha","5344","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1991","1991","hg/ha","7606","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1992","1992","hg/ha","8054","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1993","1993","hg/ha","7248","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1994","1994","hg/ha","9183","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1995","1995","hg/ha","7877","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1996","1996","hg/ha","9215","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1997","1997","hg/ha","8158","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1998","1998","hg/ha","7982","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","1999","1999","hg/ha","8768","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2000","2000","hg/ha","9467","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2001","2001","hg/ha","9588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2002","2002","hg/ha","9385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2003","2003","hg/ha","8586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2004","2004","hg/ha","8320","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2005","2005","hg/ha","8265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2006","2006","hg/ha","8027","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2007","2007","hg/ha","8396","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2008","2008","hg/ha","7605","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2009","2009","hg/ha","7484","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2010","2010","hg/ha","8146","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2011","2011","hg/ha","8378","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2012","2012","hg/ha","8517","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2013","2013","hg/ha","8456","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2014","2014","hg/ha","7986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2015","2015","hg/ha","8575","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","656","Coffee, green","2016","2016","hg/ha","8766","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1961","1961","hg/ha","47273","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1962","1962","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1963","1963","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1964","1964","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1965","1965","hg/ha","52778","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1966","1966","hg/ha","53333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1967","1967","hg/ha","52500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1968","1968","hg/ha","53012","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1969","1969","hg/ha","54118","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1970","1970","hg/ha","55556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1971","1971","hg/ha","54839","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1972","1972","hg/ha","55208","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1973","1973","hg/ha","58000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1974","1974","hg/ha","57843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1975","1975","hg/ha","58095","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1976","1976","hg/ha","57963","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1977","1977","hg/ha","58182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1978","1978","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1979","1979","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1980","1980","hg/ha","60163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1981","1981","hg/ha","61923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1982","1982","hg/ha","62000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1983","1983","hg/ha","62143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1984","1984","hg/ha","62759","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1985","1985","hg/ha","63103","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1986","1986","hg/ha","63265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1987","1987","hg/ha","63176","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1988","1988","hg/ha","63333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1989","1989","hg/ha","64052","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1990","1990","hg/ha","64151","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1991","1991","hg/ha","64888","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1992","1992","hg/ha","66061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1993","1993","hg/ha","66467","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1994","1994","hg/ha","66864","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1995","1995","hg/ha","67059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1996","1996","hg/ha","66860","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1997","1997","hg/ha","67052","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1998","1998","hg/ha","66857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","1999","1999","hg/ha","66292","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2000","2000","hg/ha","66111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2001","2001","hg/ha","65954","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2002","2002","hg/ha","65761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2003","2003","hg/ha","65558","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2004","2004","hg/ha","65329","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2005","2005","hg/ha","65209","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2006","2006","hg/ha","64929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2007","2007","hg/ha","64704","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2008","2008","hg/ha","64475","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2009","2009","hg/ha","64256","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2010","2010","hg/ha","64050","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2011","2011","hg/ha","63861","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2012","2012","hg/ha","63396","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2013","2013","hg/ha","63396","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2014","2014","hg/ha","63431","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2015","2015","hg/ha","63387","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","397","Cucumbers and gherkins","2016","2016","hg/ha","63129","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1961","1961","hg/ha","66000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1962","1962","hg/ha","67308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1963","1963","hg/ha","67901","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1964","1964","hg/ha","67647","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1965","1965","hg/ha","68571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1966","1966","hg/ha","68333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1967","1967","hg/ha","68421","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1968","1968","hg/ha","70000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1969","1969","hg/ha","70000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1970","1970","hg/ha","72195","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1971","1971","hg/ha","74038","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1972","1972","hg/ha","75476","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1973","1973","hg/ha","76047","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1974","1974","hg/ha","75455","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1975","1975","hg/ha","75556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1976","1976","hg/ha","76522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1977","1977","hg/ha","78017","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1978","1978","hg/ha","78333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1979","1979","hg/ha","79184","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1980","1980","hg/ha","80321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1981","1981","hg/ha","86166","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1982","1982","hg/ha","89147","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1983","1983","hg/ha","90076","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1984","1984","hg/ha","91852","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1985","1985","hg/ha","92727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1986","1986","hg/ha","95000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1987","1987","hg/ha","98057","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1988","1988","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1989","1989","hg/ha","102069","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1990","1990","hg/ha","101695","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1991","1991","hg/ha","104133","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1992","1992","hg/ha","141907","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1993","1993","hg/ha","198849","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1994","1994","hg/ha","157857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1995","1995","hg/ha","148333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1996","1996","hg/ha","146355","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1997","1997","hg/ha","141860","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1998","1998","hg/ha","161250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","1999","1999","hg/ha","160816","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2000","2000","hg/ha","162400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2001","2001","hg/ha","163830","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2002","2002","hg/ha","167000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2003","2003","hg/ha","156600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2004","2004","hg/ha","164162","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2005","2005","hg/ha","163358","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2006","2006","hg/ha","167309","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2007","2007","hg/ha","166426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2008","2008","hg/ha","172513","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2009","2009","hg/ha","172874","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2010","2010","hg/ha","172485","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2011","2011","hg/ha","174941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2012","2012","hg/ha","182572","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2013","2013","hg/ha","186205","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2014","2014","hg/ha","190604","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2015","2015","hg/ha","187058","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","399","Eggplants (aubergines)","2016","2016","hg/ha","189036","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1961","1961","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1962","1962","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1963","1963","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1964","1964","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1965","1965","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1966","1966","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1967","1967","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1968","1968","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1969","1969","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1970","1970","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1971","1971","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1972","1972","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1973","1973","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1974","1974","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1975","1975","hg/ha","22222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1976","1976","hg/ha","22472","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1977","1977","hg/ha","22727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1978","1978","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1979","1979","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1980","1980","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1981","1981","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1982","1982","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1983","1983","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1984","1984","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1985","1985","hg/ha","23077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1986","1986","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1987","1987","hg/ha","23529","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1988","1988","hg/ha","22727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1989","1989","hg/ha","22500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1990","1990","hg/ha","22857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1991","1991","hg/ha","22727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1992","1992","hg/ha","22917","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1993","1993","hg/ha","23077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1994","1994","hg/ha","22996","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1995","1995","hg/ha","22989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1996","1996","hg/ha","22968","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1997","1997","hg/ha","22999","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1998","1998","hg/ha","23030","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","1999","1999","hg/ha","23061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2000","2000","hg/ha","23092","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2001","2001","hg/ha","23123","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2002","2002","hg/ha","23154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2003","2003","hg/ha","23184","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2004","2004","hg/ha","23384","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2005","2005","hg/ha","23584","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2006","2006","hg/ha","23784","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2007","2007","hg/ha","23983","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2008","2008","hg/ha","24183","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2009","2009","hg/ha","24383","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2010","2010","hg/ha","24582","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2011","2011","hg/ha","24782","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2012","2012","hg/ha","24982","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2013","2013","hg/ha","25181","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2014","2014","hg/ha","25381","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2015","2015","hg/ha","25581","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","569","Figs","2016","2016","hg/ha","25780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1961","1961","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1962","1962","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1963","1963","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1964","1964","hg/ha","104000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1965","1965","hg/ha","104000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1966","1966","hg/ha","104000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1967","1967","hg/ha","108000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1968","1968","hg/ha","106000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1969","1969","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1970","1970","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1971","1971","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1972","1972","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1973","1973","hg/ha","85714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1974","1974","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1975","1975","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1976","1976","hg/ha","93333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1977","1977","hg/ha","83333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1978","1978","hg/ha","73333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1979","1979","hg/ha","93333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1980","1980","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1981","1981","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1982","1982","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1983","1983","hg/ha","93750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1984","1984","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1985","1985","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1986","1986","hg/ha","114286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1987","1987","hg/ha","113333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1988","1988","hg/ha","105263","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1989","1989","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1990","1990","hg/ha","126866","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1991","1991","hg/ha","121613","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1992","1992","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1993","1993","hg/ha","126761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1994","1994","hg/ha","126667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1995","1995","hg/ha","130814","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1996","1996","hg/ha","135040","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1997","1997","hg/ha","138686","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1998","1998","hg/ha","142145","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","1999","1999","hg/ha","178667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2000","2000","hg/ha","150000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2001","2001","hg/ha","135521","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2002","2002","hg/ha","132347","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2003","2003","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2004","2004","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2005","2005","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2006","2006","hg/ha","124065","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2007","2007","hg/ha","125774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2008","2008","hg/ha","125138","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2009","2009","hg/ha","125089","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2010","2010","hg/ha","124095","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2011","2011","hg/ha","125319","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2012","2012","hg/ha","125584","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2013","2013","hg/ha","125735","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2014","2014","hg/ha","130789","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2015","2015","hg/ha","130250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","512","Fruit, citrus nes","2016","2016","hg/ha","128007","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1961","1961","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1962","1962","hg/ha","63704","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1963","1963","hg/ha","59310","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1964","1964","hg/ha","64333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1965","1965","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1966","1966","hg/ha","66061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1967","1967","hg/ha","67647","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1968","1968","hg/ha","66667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1969","1969","hg/ha","70278","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1970","1970","hg/ha","66667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1971","1971","hg/ha","66000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1972","1972","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1973","1973","hg/ha","69000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1974","1974","hg/ha","68780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1975","1975","hg/ha","70244","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1976","1976","hg/ha","69500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1977","1977","hg/ha","70952","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1978","1978","hg/ha","70698","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1979","1979","hg/ha","72558","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1980","1980","hg/ha","72222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1981","1981","hg/ha","71042","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1982","1982","hg/ha","74167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1983","1983","hg/ha","76250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1984","1984","hg/ha","77083","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1985","1985","hg/ha","72500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1986","1986","hg/ha","77471","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1987","1987","hg/ha","76098","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1988","1988","hg/ha","73030","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1989","1989","hg/ha","75000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1990","1990","hg/ha","78452","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1991","1991","hg/ha","75732","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1992","1992","hg/ha","81308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1993","1993","hg/ha","85656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1994","1994","hg/ha","87207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1995","1995","hg/ha","89012","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1996","1996","hg/ha","90909","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1997","1997","hg/ha","89474","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1998","1998","hg/ha","102949","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","1999","1999","hg/ha","88800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2000","2000","hg/ha","88462","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2001","2001","hg/ha","94000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2002","2002","hg/ha","103651","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2003","2003","hg/ha","138542","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2004","2004","hg/ha","62482","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2005","2005","hg/ha","62161","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2006","2006","hg/ha","66983","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2007","2007","hg/ha","61449","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2008","2008","hg/ha","65836","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2009","2009","hg/ha","66796","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2010","2010","hg/ha","65167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2011","2011","hg/ha","59945","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2012","2012","hg/ha","59465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2013","2013","hg/ha","66441","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2014","2014","hg/ha","66523","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2015","2015","hg/ha","63189","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","619","Fruit, fresh nes","2016","2016","hg/ha","59069","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1985","1985","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1986","1986","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1987","1987","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1988","1988","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1989","1989","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1990","1990","hg/ha","52206","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1991","1991","hg/ha","16585","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1992","1992","hg/ha","17588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1993","1993","hg/ha","18615","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1994","1994","hg/ha","19736","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1995","1995","hg/ha","20539","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1996","1996","hg/ha","21280","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1997","1997","hg/ha","23041","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1998","1998","hg/ha","22870","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","1999","1999","hg/ha","24593","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2000","2000","hg/ha","25352","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2001","2001","hg/ha","26100","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2002","2002","hg/ha","27108","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2003","2003","hg/ha","28105","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2004","2004","hg/ha","28755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2005","2005","hg/ha","29567","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2006","2006","hg/ha","30388","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2007","2007","hg/ha","31220","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2008","2008","hg/ha","31993","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2009","2009","hg/ha","32803","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2010","2010","hg/ha","33933","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2011","2011","hg/ha","34466","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2012","2012","hg/ha","35366","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2013","2013","hg/ha","36344","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2014","2014","hg/ha","35792","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2015","2015","hg/ha","36625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","541","Fruit, stone nes","2016","2016","hg/ha","37600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1961","1961","hg/ha","65556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1962","1962","hg/ha","64681","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1963","1963","hg/ha","64681","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1964","1964","hg/ha","67234","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1965","1965","hg/ha","67089","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1966","1966","hg/ha","67708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1967","1967","hg/ha","68367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1968","1968","hg/ha","68800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1969","1969","hg/ha","68217","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1970","1970","hg/ha","67843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1971","1971","hg/ha","70000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1972","1972","hg/ha","68627","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1973","1973","hg/ha","69630","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1974","1974","hg/ha","70741","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1975","1975","hg/ha","70364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1976","1976","hg/ha","70175","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1977","1977","hg/ha","70313","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1978","1978","hg/ha","70820","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1979","1979","hg/ha","69688","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1980","1980","hg/ha","71077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1981","1981","hg/ha","72424","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1982","1982","hg/ha","73382","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1983","1983","hg/ha","74493","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1984","1984","hg/ha","80366","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1985","1985","hg/ha","79878","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1986","1986","hg/ha","83409","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1987","1987","hg/ha","78780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1988","1988","hg/ha","76250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1989","1989","hg/ha","77917","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1990","1990","hg/ha","81503","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1991","1991","hg/ha","72941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1992","1992","hg/ha","78472","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1993","1993","hg/ha","79730","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1994","1994","hg/ha","83675","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1995","1995","hg/ha","87235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1996","1996","hg/ha","90698","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1997","1997","hg/ha","85714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1998","1998","hg/ha","104167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","1999","1999","hg/ha","116400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2000","2000","hg/ha","106923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2001","2001","hg/ha","102593","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2002","2002","hg/ha","104615","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2003","2003","hg/ha","86176","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2004","2004","hg/ha","94819","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2005","2005","hg/ha","87705","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2006","2006","hg/ha","87783","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2007","2007","hg/ha","88588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2008","2008","hg/ha","95583","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2009","2009","hg/ha","92616","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2010","2010","hg/ha","97166","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2011","2011","hg/ha","98939","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2012","2012","hg/ha","96631","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2013","2013","hg/ha","109172","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2014","2014","hg/ha","113299","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2015","2015","hg/ha","134119","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","603","Fruit, tropical fresh nes","2016","2016","hg/ha","131136","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1961","1961","hg/ha","37143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1962","1962","hg/ha","36053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1963","1963","hg/ha","36000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1964","1964","hg/ha","36000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1965","1965","hg/ha","36000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1966","1966","hg/ha","37037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1967","1967","hg/ha","37037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1968","1968","hg/ha","37037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1969","1969","hg/ha","37037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1970","1970","hg/ha","37037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1971","1971","hg/ha","36667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1972","1972","hg/ha","36667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1973","1973","hg/ha","36364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1974","1974","hg/ha","29751","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1975","1975","hg/ha","35327","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1976","1976","hg/ha","36100","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1977","1977","hg/ha","32120","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1978","1978","hg/ha","33984","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1979","1979","hg/ha","34439","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1980","1980","hg/ha","36425","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1981","1981","hg/ha","37967","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1982","1982","hg/ha","38644","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1983","1983","hg/ha","38538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1984","1984","hg/ha","37011","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1985","1985","hg/ha","32860","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1986","1986","hg/ha","34933","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1987","1987","hg/ha","34002","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1988","1988","hg/ha","36636","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1989","1989","hg/ha","38958","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1990","1990","hg/ha","38890","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1991","1991","hg/ha","39311","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1992","1992","hg/ha","41614","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1993","1993","hg/ha","40157","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1994","1994","hg/ha","40768","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1995","1995","hg/ha","42475","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1996","1996","hg/ha","46437","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1997","1997","hg/ha","44522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1998","1998","hg/ha","46323","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","1999","1999","hg/ha","41692","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2000","2000","hg/ha","42103","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2001","2001","hg/ha","41400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2002","2002","hg/ha","43128","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2003","2003","hg/ha","40987","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2004","2004","hg/ha","49755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2005","2005","hg/ha","44872","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2006","2006","hg/ha","44344","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2007","2007","hg/ha","48763","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2008","2008","hg/ha","51839","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2009","2009","hg/ha","50003","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2010","2010","hg/ha","50587","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2011","2011","hg/ha","52732","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2012","2012","hg/ha","50744","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2013","2013","hg/ha","50766","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2014","2014","hg/ha","54199","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2015","2015","hg/ha","54389","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","406","Garlic","2016","2016","hg/ha","53640","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1961","1961","hg/ha","9048","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1962","1962","hg/ha","9524","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1963","1963","hg/ha","9130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1964","1964","hg/ha","9130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1965","1965","hg/ha","9565","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1966","1966","hg/ha","9130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1967","1967","hg/ha","9524","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1968","1968","hg/ha","9000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1969","1969","hg/ha","10000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1970","1970","hg/ha","13636","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1971","1971","hg/ha","14115","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1972","1972","hg/ha","14698","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1973","1973","hg/ha","15471","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1974","1974","hg/ha","15704","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1975","1975","hg/ha","16599","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1976","1976","hg/ha","16916","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1977","1977","hg/ha","19906","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1978","1978","hg/ha","19566","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1979","1979","hg/ha","18082","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1980","1980","hg/ha","20381","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1981","1981","hg/ha","21366","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1982","1982","hg/ha","21485","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1983","1983","hg/ha","24777","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1984","1984","hg/ha","24115","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1985","1985","hg/ha","25788","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1986","1986","hg/ha","25833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1987","1987","hg/ha","26335","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1988","1988","hg/ha","29231","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1989","1989","hg/ha","28911","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1990","1990","hg/ha","28519","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1991","1991","hg/ha","30500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1992","1992","hg/ha","33656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1993","1993","hg/ha","30736","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1994","1994","hg/ha","19566","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1995","1995","hg/ha","19000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1996","1996","hg/ha","33073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1997","1997","hg/ha","33158","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1998","1998","hg/ha","33718","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","1999","1999","hg/ha","33918","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2000","2000","hg/ha","33571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2001","2001","hg/ha","32768","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2002","2002","hg/ha","32126","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2003","2003","hg/ha","31769","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2004","2004","hg/ha","35476","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2005","2005","hg/ha","37671","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2006","2006","hg/ha","35371","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2007","2007","hg/ha","37078","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2008","2008","hg/ha","37378","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2009","2009","hg/ha","34987","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2010","2010","hg/ha","35831","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2011","2011","hg/ha","47082","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2012","2012","hg/ha","48774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2013","2013","hg/ha","50221","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2014","2014","hg/ha","49248","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2015","2015","hg/ha","53521","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","720","Ginger","2016","2016","hg/ha","67212","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1961","1961","hg/ha","153846","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1962","1962","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1963","1963","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1964","1964","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1965","1965","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1966","1966","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1967","1967","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1968","1968","hg/ha","130435","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1969","1969","hg/ha","108696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1970","1970","hg/ha","130435","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1971","1971","hg/ha","152174","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1972","1972","hg/ha","150000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1973","1973","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1974","1974","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1975","1975","hg/ha","150000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1976","1976","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1977","1977","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1978","1978","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1979","1979","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1980","1980","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1981","1981","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1982","1982","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1983","1983","hg/ha","123810","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1984","1984","hg/ha","119048","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1985","1985","hg/ha","95238","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1986","1986","hg/ha","142857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1987","1987","hg/ha","140000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1988","1988","hg/ha","132727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1989","1989","hg/ha","150000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1990","1990","hg/ha","150943","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1991","1991","hg/ha","148936","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1992","1992","hg/ha","129310","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1993","1993","hg/ha","140596","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1994","1994","hg/ha","150000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1995","1995","hg/ha","159276","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1996","1996","hg/ha","169355","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1997","1997","hg/ha","177520","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1998","1998","hg/ha","187234","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","1999","1999","hg/ha","200000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2000","2000","hg/ha","203634","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2001","2001","hg/ha","209097","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2002","2002","hg/ha","215385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2003","2003","hg/ha","217293","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2004","2004","hg/ha","219697","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2005","2005","hg/ha","220896","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2006","2006","hg/ha","219444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2007","2007","hg/ha","219753","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2008","2008","hg/ha","235294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2009","2009","hg/ha","240000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2010","2010","hg/ha","236537","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2011","2011","hg/ha","235705","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2012","2012","hg/ha","234484","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2013","2013","hg/ha","233500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2014","2014","hg/ha","232483","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2015","2015","hg/ha","230531","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","507","Grapefruit (inc. pomelos)","2016","2016","hg/ha","231748","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1961","1961","hg/ha","159091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1962","1962","hg/ha","163043","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1963","1963","hg/ha","160000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1964","1964","hg/ha","160714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1965","1965","hg/ha","161290","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1966","1966","hg/ha","161765","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1967","1967","hg/ha","161972","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1968","1968","hg/ha","162162","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1969","1969","hg/ha","160256","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1970","1970","hg/ha","162500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1971","1971","hg/ha","160714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1972","1972","hg/ha","160465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1973","1973","hg/ha","160920","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1974","1974","hg/ha","173077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1975","1975","hg/ha","166667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1976","1976","hg/ha","187059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1977","1977","hg/ha","161102","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1978","1978","hg/ha","185268","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1979","1979","hg/ha","190544","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1980","1980","hg/ha","191447","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1981","1981","hg/ha","192059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1982","1982","hg/ha","218723","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1983","1983","hg/ha","196697","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1984","1984","hg/ha","218232","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1985","1985","hg/ha","220000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1986","1986","hg/ha","208000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1987","1987","hg/ha","163126","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1988","1988","hg/ha","194921","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1989","1989","hg/ha","150549","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1990","1990","hg/ha","162605","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1991","1991","hg/ha","166195","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1992","1992","hg/ha","192050","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1993","1993","hg/ha","200000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1994","1994","hg/ha","175000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1995","1995","hg/ha","175000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1996","1996","hg/ha","200258","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1997","1997","hg/ha","217775","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1998","1998","hg/ha","242500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","1999","1999","hg/ha","254225","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2000","2000","hg/ha","282500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2001","2001","hg/ha","212000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2002","2002","hg/ha","249305","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2003","2003","hg/ha","239501","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2004","2004","hg/ha","255156","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2005","2005","hg/ha","258628","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2006","2006","hg/ha","249939","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2007","2007","hg/ha","259277","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2008","2008","hg/ha","255147","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2009","2009","hg/ha","234750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2010","2010","hg/ha","82773","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2011","2011","hg/ha","111261","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2012","2012","hg/ha","191466","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2013","2013","hg/ha","210424","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2014","2014","hg/ha","217731","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2015","2015","hg/ha","216833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","560","Grapes","2016","2016","hg/ha","212295","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1961","1961","hg/ha","7249","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1962","1962","hg/ha","6953","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1963","1963","hg/ha","7694","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1964","1964","hg/ha","8140","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1965","1965","hg/ha","5538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1966","1966","hg/ha","6043","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1967","1967","hg/ha","7588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1968","1968","hg/ha","6533","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1969","1969","hg/ha","7200","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1970","1970","hg/ha","8341","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1971","1971","hg/ha","8229","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1972","1972","hg/ha","5854","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1973","1973","hg/ha","8446","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1974","1974","hg/ha","7128","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1975","1975","hg/ha","9354","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1976","1976","hg/ha","7474","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1977","1977","hg/ha","8661","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1978","1978","hg/ha","8352","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1979","1979","hg/ha","8050","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1980","1980","hg/ha","7359","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1981","1981","hg/ha","9723","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1982","1982","hg/ha","7321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1983","1983","hg/ha","9398","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1984","1984","hg/ha","8979","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1985","1985","hg/ha","7188","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1986","1986","hg/ha","8415","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1987","1987","hg/ha","8553","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1988","1988","hg/ha","11324","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1989","1989","hg/ha","9299","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1990","1990","hg/ha","9044","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1991","1991","hg/ha","8185","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1992","1992","hg/ha","10489","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1993","1993","hg/ha","9409","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1994","1994","hg/ha","10271","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1995","1995","hg/ha","10073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1996","1996","hg/ha","11378","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1997","1997","hg/ha","10395","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1998","1998","hg/ha","12144","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","1999","1999","hg/ha","7657","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2000","2000","hg/ha","9881","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2001","2001","hg/ha","11265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2002","2002","hg/ha","6943","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2003","2003","hg/ha","13574","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2004","2004","hg/ha","10202","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2005","2005","hg/ha","11867","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2006","2006","hg/ha","8661","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2007","2007","hg/ha","14594","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2008","2008","hg/ha","11627","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2009","2009","hg/ha","9911","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2010","2010","hg/ha","14104","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2011","2011","hg/ha","13115","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2012","2012","hg/ha","9843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2013","2013","hg/ha","17206","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2014","2014","hg/ha","15799","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2015","2015","hg/ha","14849","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","242","Groundnuts, with shell","2016","2016","hg/ha","11822","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1961","1961","hg/ha","12480","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1962","1962","hg/ha","11566","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1963","1963","hg/ha","12592","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1964","1964","hg/ha","12915","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1965","1965","hg/ha","10622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1966","1966","hg/ha","12104","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1967","1967","hg/ha","12926","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1968","1968","hg/ha","10017","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1969","1969","hg/ha","13260","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1970","1970","hg/ha","11862","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1971","1971","hg/ha","12550","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1972","1972","hg/ha","12798","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1973","1973","hg/ha","14123","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1974","1974","hg/ha","12113","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1975","1975","hg/ha","13672","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1976","1976","hg/ha","13068","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1977","1977","hg/ha","12102","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1978","1978","hg/ha","13169","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1979","1979","hg/ha","13099","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1980","1980","hg/ha","12452","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1981","1981","hg/ha","14797","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1982","1982","hg/ha","14576","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1983","1983","hg/ha","14984","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1984","1984","hg/ha","14113","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1985","1985","hg/ha","17102","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1986","1986","hg/ha","16488","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1987","1987","hg/ha","14956","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1988","1988","hg/ha","17482","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1989","1989","hg/ha","18791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1990","1990","hg/ha","18326","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1991","1991","hg/ha","18374","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1992","1992","hg/ha","18570","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1993","1993","hg/ha","19070","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1994","1994","hg/ha","19487","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1995","1995","hg/ha","18745","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1996","1996","hg/ha","19989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1997","1997","hg/ha","19790","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1998","1998","hg/ha","18750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","1999","1999","hg/ha","20022","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2000","2000","hg/ha","20257","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2001","2001","hg/ha","21820","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2002","2002","hg/ha","21444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2003","2003","hg/ha","21731","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2004","2004","hg/ha","21863","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2005","2005","hg/ha","23625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2006","2006","hg/ha","23477","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2007","2007","hg/ha","22549","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2008","2008","hg/ha","22072","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2009","2009","hg/ha","24920","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2010","2010","hg/ha","23437","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2011","2011","hg/ha","24505","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2012","2012","hg/ha","23900","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2013","2013","hg/ha","24300","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2014","2014","hg/ha","26559","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2015","2015","hg/ha","23146","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","780","Jute","2016","2016","hg/ha","24839","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1961","1961","hg/ha","115278","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1962","1962","hg/ha","95745","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1963","1963","hg/ha","95745","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1964","1964","hg/ha","93750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1965","1965","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1966","1966","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1967","1967","hg/ha","86538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1968","1968","hg/ha","82222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1969","1969","hg/ha","88889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1970","1970","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1971","1971","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1972","1972","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1973","1973","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1974","1974","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1975","1975","hg/ha","96154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1976","1976","hg/ha","113208","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1977","1977","hg/ha","88889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1978","1978","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1979","1979","hg/ha","96000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1980","1980","hg/ha","97000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1981","1981","hg/ha","96154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1982","1982","hg/ha","94340","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1983","1983","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1984","1984","hg/ha","103774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1985","1985","hg/ha","90000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1986","1986","hg/ha","109091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1987","1987","hg/ha","107143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1988","1988","hg/ha","101695","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1989","1989","hg/ha","115000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1990","1990","hg/ha","115692","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1991","1991","hg/ha","117647","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1992","1992","hg/ha","94595","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1993","1993","hg/ha","116250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1994","1994","hg/ha","101061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1995","1995","hg/ha","101157","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1996","1996","hg/ha","86792","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1997","1997","hg/ha","84753","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1998","1998","hg/ha","84846","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","1999","1999","hg/ha","90308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2000","2000","hg/ha","88098","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2001","2001","hg/ha","83873","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2002","2002","hg/ha","87644","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2003","2003","hg/ha","98468","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2004","2004","hg/ha","88993","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2005","2005","hg/ha","130938","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2006","2006","hg/ha","80350","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2007","2007","hg/ha","78338","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2008","2008","hg/ha","82619","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2009","2009","hg/ha","81365","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2010","2010","hg/ha","88945","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2011","2011","hg/ha","96256","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2012","2012","hg/ha","97098","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2013","2013","hg/ha","98883","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2014","2014","hg/ha","98985","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2015","2015","hg/ha","110075","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","497","Lemons and limes","2016","2016","hg/ha","115426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1961","1961","hg/ha","4533","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1962","1962","hg/ha","4415","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1963","1963","hg/ha","4555","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1964","1964","hg/ha","3680","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1965","1965","hg/ha","4761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1966","1966","hg/ha","4374","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1967","1967","hg/ha","3472","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1968","1968","hg/ha","5103","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1969","1969","hg/ha","5149","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1970","1970","hg/ha","5020","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1971","1971","hg/ha","4987","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1972","1972","hg/ha","5196","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1973","1973","hg/ha","4469","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1974","1974","hg/ha","4395","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1975","1975","hg/ha","4798","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1976","1976","hg/ha","4919","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1977","1977","hg/ha","4612","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1978","1978","hg/ha","4360","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1979","1979","hg/ha","4392","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1980","1980","hg/ha","3774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1981","1981","hg/ha","4976","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1982","1982","hg/ha","5253","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1983","1983","hg/ha","4905","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1984","1984","hg/ha","5659","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1985","1985","hg/ha","5568","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1986","1986","hg/ha","6074","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1987","1987","hg/ha","6065","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1988","1988","hg/ha","6347","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1989","1989","hg/ha","6786","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1990","1990","hg/ha","6352","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1991","1991","hg/ha","7168","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1992","1992","hg/ha","6742","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1993","1993","hg/ha","6569","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1994","1994","hg/ha","6321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1995","1995","hg/ha","6781","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1996","1996","hg/ha","5685","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1997","1997","hg/ha","7025","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1998","1998","hg/ha","6240","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","1999","1999","hg/ha","6754","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2000","2000","hg/ha","7382","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2001","2001","hg/ha","6193","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2002","2002","hg/ha","6629","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2003","2003","hg/ha","6328","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2004","2004","hg/ha","7413","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2005","2005","hg/ha","6763","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2006","2006","hg/ha","6266","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2007","2007","hg/ha","6190","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2008","2008","hg/ha","6183","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2009","2009","hg/ha","6929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2010","2010","hg/ha","6973","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2011","2011","hg/ha","5908","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2012","2012","hg/ha","6787","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2013","2013","hg/ha","7986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2014","2014","hg/ha","7612","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2015","2015","hg/ha","6592","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","201","Lentils","2016","2016","hg/ha","6818","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1961","1961","hg/ha","45455","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1962","1962","hg/ha","45690","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1963","1963","hg/ha","45932","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1964","1964","hg/ha","45902","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1965","1965","hg/ha","47581","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1966","1966","hg/ha","47656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1967","1967","hg/ha","48000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1968","1968","hg/ha","47910","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1969","1969","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1970","1970","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1971","1971","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1972","1972","hg/ha","52027","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1973","1973","hg/ha","52000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1974","1974","hg/ha","51923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1975","1975","hg/ha","51875","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1976","1976","hg/ha","54762","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1977","1977","hg/ha","55000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1978","1978","hg/ha","55000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1979","1979","hg/ha","56842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1980","1980","hg/ha","56701","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1981","1981","hg/ha","57000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1982","1982","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1983","1983","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1984","1984","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1985","1985","hg/ha","61905","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1986","1986","hg/ha","62857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1987","1987","hg/ha","63962","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1988","1988","hg/ha","64673","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1989","1989","hg/ha","64862","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1990","1990","hg/ha","64595","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1991","1991","hg/ha","65375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1992","1992","hg/ha","65357","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1993","1993","hg/ha","65044","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1994","1994","hg/ha","65652","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1995","1995","hg/ha","65594","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1996","1996","hg/ha","65948","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1997","1997","hg/ha","65589","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1998","1998","hg/ha","65812","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","1999","1999","hg/ha","66102","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2000","2000","hg/ha","65417","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2001","2001","hg/ha","65134","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2002","2002","hg/ha","64941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2003","2003","hg/ha","64763","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2004","2004","hg/ha","64575","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2005","2005","hg/ha","64159","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2006","2006","hg/ha","64342","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2007","2007","hg/ha","64223","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2008","2008","hg/ha","64106","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2009","2009","hg/ha","64002","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2010","2010","hg/ha","63913","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2011","2011","hg/ha","63835","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2012","2012","hg/ha","63235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2013","2013","hg/ha","63529","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2014","2014","hg/ha","63657","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2015","2015","hg/ha","63589","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","372","Lettuce and chicory","2016","2016","hg/ha","63456","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1961","1961","hg/ha","2225","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1962","1962","hg/ha","2342","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1963","1963","hg/ha","2258","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1964","1964","hg/ha","1898","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1965","1965","hg/ha","2419","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1966","1966","hg/ha","1921","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1967","1967","hg/ha","1738","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1968","1968","hg/ha","2465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1969","1969","hg/ha","1940","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1970","1970","hg/ha","2603","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1971","1971","hg/ha","2498","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1972","1972","hg/ha","2565","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1973","1973","hg/ha","2481","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1974","1974","hg/ha","2472","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1975","1975","hg/ha","2723","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1976","1976","hg/ha","2822","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1977","1977","hg/ha","2218","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1978","1978","hg/ha","2621","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1979","1979","hg/ha","2558","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1980","1980","hg/ha","1669","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1981","1981","hg/ha","2528","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1982","1982","hg/ha","2651","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1983","1983","hg/ha","2674","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1984","1984","hg/ha","2986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1985","1985","hg/ha","2788","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1986","1986","hg/ha","2642","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1987","1987","hg/ha","2740","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1988","1988","hg/ha","3418","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1989","1989","hg/ha","3009","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1990","1990","hg/ha","2896","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1991","1991","hg/ha","3021","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1992","1992","hg/ha","3295","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1993","1993","hg/ha","3106","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1994","1994","hg/ha","3463","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1995","1995","hg/ha","3403","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1996","1996","hg/ha","3463","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1997","1997","hg/ha","3732","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1998","1998","hg/ha","2899","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","1999","1999","hg/ha","3535","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2000","2000","hg/ha","4060","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2001","2001","hg/ha","3509","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2002","2002","hg/ha","3903","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2003","2003","hg/ha","3926","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2004","2004","hg/ha","4124","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2005","2005","hg/ha","3782","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2006","2006","hg/ha","3949","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2007","2007","hg/ha","3941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2008","2008","hg/ha","3483","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2009","2009","hg/ha","4148","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2010","2010","hg/ha","4494","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2011","2011","hg/ha","4095","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2012","2012","hg/ha","4706","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2013","2013","hg/ha","4966","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2014","2014","hg/ha","4836","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2015","2015","hg/ha","5458","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","333","Linseed","2016","2016","hg/ha","4266","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1961","1961","hg/ha","9567","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1962","1962","hg/ha","9922","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1963","1963","hg/ha","9954","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1964","1964","hg/ha","10100","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1965","1965","hg/ha","10050","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1966","1966","hg/ha","9645","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1967","1967","hg/ha","11228","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1968","1968","hg/ha","9974","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1969","1969","hg/ha","9679","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1970","1970","hg/ha","12791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1971","1971","hg/ha","8999","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1972","1972","hg/ha","10943","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1973","1973","hg/ha","9648","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1974","1974","hg/ha","9481","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1975","1975","hg/ha","12031","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1976","1976","hg/ha","10601","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1977","1977","hg/ha","10511","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1978","1978","hg/ha","10762","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1979","1979","hg/ha","9794","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1980","1980","hg/ha","11586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1981","1981","hg/ha","11622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1982","1982","hg/ha","11448","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1983","1983","hg/ha","13521","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1984","1984","hg/ha","14556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1985","1985","hg/ha","11460","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1986","1986","hg/ha","12819","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1987","1987","hg/ha","10288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1988","1988","hg/ha","13955","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1989","1989","hg/ha","16316","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1990","1990","hg/ha","15178","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1991","1991","hg/ha","13763","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1992","1992","hg/ha","16758","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1993","1993","hg/ha","16015","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1994","1994","hg/ha","14480","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1995","1995","hg/ha","15946","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1996","1996","hg/ha","17094","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1997","1997","hg/ha","17111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1998","1998","hg/ha","17969","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","1999","1999","hg/ha","17922","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2000","2000","hg/ha","18216","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2001","2001","hg/ha","19996","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2002","2002","hg/ha","16807","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2003","2003","hg/ha","20405","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2004","2004","hg/ha","19073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2005","2005","hg/ha","19385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2006","2006","hg/ha","19125","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2007","2007","hg/ha","23352","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2008","2008","hg/ha","24140","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2009","2009","hg/ha","20238","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2010","2010","hg/ha","25401","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2011","2011","hg/ha","24784","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2012","2012","hg/ha","25557","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2013","2013","hg/ha","25726","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2014","2014","hg/ha","26107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2015","2015","hg/ha","25972","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","56","Maize","2016","2016","hg/ha","25745","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1961","1961","hg/ha","82212","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1962","1962","hg/ha","82212","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1963","1963","hg/ha","82353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1964","1964","hg/ha","82353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1965","1965","hg/ha","82353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1966","1966","hg/ha","82353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1967","1967","hg/ha","82367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1968","1968","hg/ha","82367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1969","1969","hg/ha","82367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1970","1970","hg/ha","82367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1971","1971","hg/ha","82367","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1972","1972","hg/ha","82370","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1973","1973","hg/ha","82370","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1974","1974","hg/ha","82374","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1975","1975","hg/ha","82374","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1976","1976","hg/ha","82369","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1977","1977","hg/ha","82359","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1978","1978","hg/ha","81333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1979","1979","hg/ha","87172","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1980","1980","hg/ha","87260","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1981","1981","hg/ha","86927","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1982","1982","hg/ha","86495","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1983","1983","hg/ha","86418","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1984","1984","hg/ha","87799","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1985","1985","hg/ha","117453","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1986","1986","hg/ha","122621","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1987","1987","hg/ha","121263","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1988","1988","hg/ha","93040","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1989","1989","hg/ha","98884","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1990","1990","hg/ha","102156","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1991","1991","hg/ha","81217","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1992","1992","hg/ha","81143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1993","1993","hg/ha","82869","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1994","1994","hg/ha","89350","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1995","1995","hg/ha","85938","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1996","1996","hg/ha","83431","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1997","1997","hg/ha","91667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1998","1998","hg/ha","73071","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","1999","1999","hg/ha","69790","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2000","2000","hg/ha","70640","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2001","2001","hg/ha","66207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2002","2002","hg/ha","63588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2003","2003","hg/ha","78435","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2004","2004","hg/ha","60261","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2005","2005","hg/ha","60037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2006","2006","hg/ha","60860","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2007","2007","hg/ha","63760","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2008","2008","hg/ha","63594","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2009","2009","hg/ha","55219","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2010","2010","hg/ha","64986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2011","2011","hg/ha","66121","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2012","2012","hg/ha","68108","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2013","2013","hg/ha","72008","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2014","2014","hg/ha","73257","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2015","2015","hg/ha","85654","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","571","Mangoes, mangosteens, guavas","2016","2016","hg/ha","83947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1961","1961","hg/ha","136842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1962","1962","hg/ha","137755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1963","1963","hg/ha","140000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1964","1964","hg/ha","142857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1965","1965","hg/ha","142202","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1966","1966","hg/ha","143478","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1967","1967","hg/ha","150000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1968","1968","hg/ha","146400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1969","1969","hg/ha","150794","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1970","1970","hg/ha","150000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1971","1971","hg/ha","142857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1972","1972","hg/ha","146667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1973","1973","hg/ha","148387","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1974","1974","hg/ha","156250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1975","1975","hg/ha","158824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1976","1976","hg/ha","161765","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1977","1977","hg/ha","161111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1978","1978","hg/ha","167568","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1979","1979","hg/ha","170000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1980","1980","hg/ha","172093","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1981","1981","hg/ha","181818","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1982","1982","hg/ha","187234","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1983","1983","hg/ha","188000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1984","1984","hg/ha","188679","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1985","1985","hg/ha","189286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1986","1986","hg/ha","196429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1987","1987","hg/ha","200000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1988","1988","hg/ha","203390","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1989","1989","hg/ha","203333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1990","1990","hg/ha","201639","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1991","1991","hg/ha","218276","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1992","1992","hg/ha","200000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1993","1993","hg/ha","200102","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1994","1994","hg/ha","206097","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1995","1995","hg/ha","206755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1996","1996","hg/ha","204473","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1997","1997","hg/ha","208053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1998","1998","hg/ha","208629","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","1999","1999","hg/ha","209177","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2000","2000","hg/ha","204762","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2001","2001","hg/ha","210135","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2002","2002","hg/ha","210746","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2003","2003","hg/ha","212100","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2004","2004","hg/ha","213402","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2005","2005","hg/ha","214457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2006","2006","hg/ha","215387","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2007","2007","hg/ha","216335","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2008","2008","hg/ha","217282","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2009","2009","hg/ha","218224","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2010","2010","hg/ha","219162","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2011","2011","hg/ha","220095","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2012","2012","hg/ha","224719","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2013","2013","hg/ha","224719","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2014","2014","hg/ha","223205","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2015","2015","hg/ha","222451","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","568","Melons, other (inc.cantaloupes)","2016","2016","hg/ha","221363","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1961","1961","hg/ha","4141","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1962","1962","hg/ha","4312","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1963","1963","hg/ha","4353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1964","1964","hg/ha","4501","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1965","1965","hg/ha","3451","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1966","1966","hg/ha","3964","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1967","1967","hg/ha","4498","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1968","1968","hg/ha","3810","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1969","1969","hg/ha","4586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1970","1970","hg/ha","6035","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1971","1971","hg/ha","4925","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1972","1972","hg/ha","4022","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1973","1973","hg/ha","5540","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1974","1974","hg/ha","3854","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1975","1975","hg/ha","5540","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1976","1976","hg/ha","5383","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1977","1977","hg/ha","5288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1978","1978","hg/ha","5764","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1979","1979","hg/ha","4707","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1980","1980","hg/ha","5142","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1981","1981","hg/ha","5575","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1982","1982","hg/ha","5093","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1983","1983","hg/ha","6785","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1984","1984","hg/ha","6024","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1985","1985","hg/ha","4565","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1986","1986","hg/ha","5036","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1987","1987","hg/ha","4957","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1988","1988","hg/ha","6637","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1989","1989","hg/ha","6724","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1990","1990","hg/ha","6905","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1991","1991","hg/ha","5706","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1992","1992","hg/ha","8467","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1993","1993","hg/ha","6374","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1994","1994","hg/ha","7475","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1995","1995","hg/ha","6790","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1996","1996","hg/ha","8186","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1997","1997","hg/ha","8073","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1998","1998","hg/ha","8155","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","1999","1999","hg/ha","7277","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2000","2000","hg/ha","7745","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2001","2001","hg/ha","8998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2002","2002","hg/ha","6271","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2003","2003","hg/ha","10868","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2004","2004","hg/ha","9121","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2005","2005","hg/ha","8629","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2006","2006","hg/ha","8804","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2007","2007","hg/ha","10836","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2008","2008","hg/ha","10301","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2009","2009","hg/ha","7977","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2010","2010","hg/ha","11273","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2011","2011","hg/ha","11854","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2012","2012","hg/ha","9998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2013","2013","hg/ha","11886","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2014","2014","hg/ha","11789","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2015","2015","hg/ha","12758","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","79","Millet","2016","2016","hg/ha","11629","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1961","1961","hg/ha","600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1962","1962","hg/ha","714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1963","1963","hg/ha","702","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1964","1964","hg/ha","727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1965","1965","hg/ha","702","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1966","1966","hg/ha","533","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1967","1967","hg/ha","411","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1968","1968","hg/ha","400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1969","1969","hg/ha","405","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1970","1970","hg/ha","400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1971","1971","hg/ha","469","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1972","1972","hg/ha","382","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1973","1973","hg/ha","422","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1974","1974","hg/ha","538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1975","1975","hg/ha","521","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1976","1976","hg/ha","454","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1977","1977","hg/ha","471","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1978","1978","hg/ha","623","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1979","1979","hg/ha","596","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1980","1980","hg/ha","627","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1981","1981","hg/ha","934","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1982","1982","hg/ha","779","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1983","1983","hg/ha","790","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1984","1984","hg/ha","813","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1985","1985","hg/ha","851","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1986","1986","hg/ha","835","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1987","1987","hg/ha","780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1988","1988","hg/ha","723","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1989","1989","hg/ha","835","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1990","1990","hg/ha","809","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1991","1991","hg/ha","809","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1992","1992","hg/ha","953","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1993","1993","hg/ha","1075","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1994","1994","hg/ha","1066","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1995","1995","hg/ha","1153","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1996","1996","hg/ha","1273","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1997","1997","hg/ha","1241","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1998","1998","hg/ha","1059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","1999","1999","hg/ha","1262","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2000","2000","hg/ha","1569","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2001","2001","hg/ha","1659","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2002","2002","hg/ha","1740","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2003","2003","hg/ha","1747","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2004","2004","hg/ha","1775","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2005","2005","hg/ha","1858","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2006","2006","hg/ha","1635","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2007","2007","hg/ha","1666","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2008","2008","hg/ha","1680","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2009","2009","hg/ha","1743","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2010","2010","hg/ha","1811","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2011","2011","hg/ha","1777","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2012","2012","hg/ha","1964","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2013","2013","hg/ha","1727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2014","2014","hg/ha","2258","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2015","2015","hg/ha","2391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","702","Nutmeg, mace and cardamoms","2016","2016","hg/ha","3551","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1961","1961","hg/ha","2096","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1962","1962","hg/ha","2104","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1963","1963","hg/ha","1656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1964","1964","hg/ha","1980","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1965","1965","hg/ha","1743","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1966","1966","hg/ha","1670","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1967","1967","hg/ha","2094","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1968","1968","hg/ha","2018","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1969","1969","hg/ha","2033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1970","1970","hg/ha","2618","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1971","1971","hg/ha","2346","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1972","1972","hg/ha","1982","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1973","1973","hg/ha","2462","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1974","1974","hg/ha","2126","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1975","1975","hg/ha","2446","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1976","1976","hg/ha","1994","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1977","1977","hg/ha","2433","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1978","1978","hg/ha","2393","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1979","1979","hg/ha","1806","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1980","1980","hg/ha","2440","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1981","1981","hg/ha","2654","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1982","1982","hg/ha","2362","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1983","1983","hg/ha","2942","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1984","1984","hg/ha","2508","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1985","1985","hg/ha","3028","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1986","1986","hg/ha","2235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1987","1987","hg/ha","2806","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1988","1988","hg/ha","2941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1989","1989","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1990","1990","hg/ha","3048","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1991","1991","hg/ha","2803","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1992","1992","hg/ha","2769","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1993","1993","hg/ha","3272","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1994","1994","hg/ha","3209","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1995","1995","hg/ha","3161","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1996","1996","hg/ha","2779","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1997","1997","hg/ha","2991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1998","1998","hg/ha","3048","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","1999","1999","hg/ha","3043","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2000","2000","hg/ha","2997","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2001","2001","hg/ha","3023","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2002","2002","hg/ha","3039","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2003","2003","hg/ha","3003","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2004","2004","hg/ha","3003","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2005","2005","hg/ha","3000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2006","2006","hg/ha","3002","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2007","2007","hg/ha","3056","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2008","2008","hg/ha","3447","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2009","2009","hg/ha","2663","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2010","2010","hg/ha","2778","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2011","2011","hg/ha","3161","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2012","2012","hg/ha","3238","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2013","2013","hg/ha","3280","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2014","2014","hg/ha","3248","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2015","2015","hg/ha","2937","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","339","Oilseeds nes","2016","2016","hg/ha","3021","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1961","1961","hg/ha","51667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1962","1962","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1963","1963","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1964","1964","hg/ha","49706","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1965","1965","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1966","1966","hg/ha","50811","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1967","1967","hg/ha","51053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1968","1968","hg/ha","50505","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1969","1969","hg/ha","50000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1970","1970","hg/ha","52752","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1971","1971","hg/ha","52889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1972","1972","hg/ha","52991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1973","1973","hg/ha","54918","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1974","1974","hg/ha","55000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1975","1975","hg/ha","55000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1976","1976","hg/ha","55849","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1977","1977","hg/ha","55636","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1978","1978","hg/ha","55357","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1979","1979","hg/ha","56034","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1980","1980","hg/ha","57627","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1981","1981","hg/ha","58000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1982","1982","hg/ha","58033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1983","1983","hg/ha","58730","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1984","1984","hg/ha","59375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1985","1985","hg/ha","59091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1986","1986","hg/ha","60294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1987","1987","hg/ha","60983","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1988","1988","hg/ha","62040","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1989","1989","hg/ha","62500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1990","1990","hg/ha","62466","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1991","1991","hg/ha","62892","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1992","1992","hg/ha","64000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1993","1993","hg/ha","63963","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1994","1994","hg/ha","101000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1995","1995","hg/ha","92857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1996","1996","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1997","1997","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1998","1998","hg/ha","100313","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","1999","1999","hg/ha","102424","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2000","2000","hg/ha","97714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2001","2001","hg/ha","95429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2002","2002","hg/ha","94857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2003","2003","hg/ha","95405","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2004","2004","hg/ha","102843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2005","2005","hg/ha","98304","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2006","2006","hg/ha","101445","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2007","2007","hg/ha","102778","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2008","2008","hg/ha","102678","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2009","2009","hg/ha","104815","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2010","2010","hg/ha","106261","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2011","2011","hg/ha","116145","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2012","2012","hg/ha","120830","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2013","2013","hg/ha","119633","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2014","2014","hg/ha","119145","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2015","2015","hg/ha","113274","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","430","Okra","2016","2016","hg/ha","113546","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1961","1961","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1962","1962","hg/ha","102500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1963","1963","hg/ha","105000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1964","1964","hg/ha","107500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1965","1965","hg/ha","105600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1966","1966","hg/ha","108000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1967","1967","hg/ha","108600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1968","1968","hg/ha","113333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1969","1969","hg/ha","109375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1970","1970","hg/ha","109091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1971","1971","hg/ha","107345","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1972","1972","hg/ha","108475","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1973","1973","hg/ha","108791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1974","1974","hg/ha","109051","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1975","1975","hg/ha","108247","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1976","1976","hg/ha","118830","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1977","1977","hg/ha","118680","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1978","1978","hg/ha","102900","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1979","1979","hg/ha","102321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1980","1980","hg/ha","99614","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1981","1981","hg/ha","105620","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1982","1982","hg/ha","103304","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1983","1983","hg/ha","99819","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1984","1984","hg/ha","111391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1985","1985","hg/ha","102021","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1986","1986","hg/ha","96590","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1987","1987","hg/ha","98566","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1988","1988","hg/ha","106196","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1989","1989","hg/ha","101763","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1990","1990","hg/ha","106863","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1991","1991","hg/ha","110878","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1992","1992","hg/ha","107883","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1993","1993","hg/ha","109116","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1994","1994","hg/ha","106709","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1995","1995","hg/ha","106084","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1996","1996","hg/ha","103465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1997","1997","hg/ha","90141","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1998","1998","hg/ha","113905","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","1999","1999","hg/ha","99321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2000","2000","hg/ha","104913","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2001","2001","hg/ha","105932","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2002","2002","hg/ha","99117","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2003","2003","hg/ha","113174","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2004","2004","hg/ha","126435","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2005","2005","hg/ha","134061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2006","2006","hg/ha","141237","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2007","2007","hg/ha","169306","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2008","2008","hg/ha","162650","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2009","2009","hg/ha","160788","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2010","2010","hg/ha","142086","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2011","2011","hg/ha","161062","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2012","2012","hg/ha","159819","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2013","2013","hg/ha","158578","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2014","2014","hg/ha","161201","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2015","2015","hg/ha","161355","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","403","Onions, dry","2016","2016","hg/ha","161815","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1961","1961","hg/ha","139259","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1962","1962","hg/ha","124074","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1963","1963","hg/ha","121818","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1964","1964","hg/ha","123393","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1965","1965","hg/ha","132203","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1966","1966","hg/ha","128571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1967","1967","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1968","1968","hg/ha","127684","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1969","1969","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1970","1970","hg/ha","129032","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1971","1971","hg/ha","127551","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1972","1972","hg/ha","130000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1973","1973","hg/ha","120000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1974","1974","hg/ha","127451","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1975","1975","hg/ha","117347","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1976","1976","hg/ha","137255","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1977","1977","hg/ha","119789","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1978","1978","hg/ha","116304","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1979","1979","hg/ha","124176","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1980","1980","hg/ha","123263","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1981","1981","hg/ha","117379","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1982","1982","hg/ha","117570","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1983","1983","hg/ha","108640","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1984","1984","hg/ha","117130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1985","1985","hg/ha","117391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1986","1986","hg/ha","128190","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1987","1987","hg/ha","133929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1988","1988","hg/ha","116667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1989","1989","hg/ha","146565","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1990","1990","hg/ha","145652","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1991","1991","hg/ha","145385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1992","1992","hg/ha","118750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1993","1993","hg/ha","149213","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1994","1994","hg/ha","98804","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1995","1995","hg/ha","76545","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1996","1996","hg/ha","94156","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1997","1997","hg/ha","111965","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1998","1998","hg/ha","101125","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","1999","1999","hg/ha","107646","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2000","2000","hg/ha","97581","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2001","2001","hg/ha","103194","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2002","2002","hg/ha","88242","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2003","2003","hg/ha","66525","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2004","2004","hg/ha","86351","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2005","2005","hg/ha","87672","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2006","2006","hg/ha","77928","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2007","2007","hg/ha","91329","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2008","2008","hg/ha","93774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2009","2009","hg/ha","92332","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2010","2010","hg/ha","94510","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2011","2011","hg/ha","95031","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2012","2012","hg/ha","88843","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2013","2013","hg/ha","101296","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2014","2014","hg/ha","110054","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2015","2015","hg/ha","134024","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","490","Oranges","2016","2016","hg/ha","129810","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1961","1961","hg/ha","380000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1962","1962","hg/ha","331429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1963","1963","hg/ha","337143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1964","1964","hg/ha","251667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1965","1965","hg/ha","298333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1966","1966","hg/ha","257500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1967","1967","hg/ha","261250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1968","1968","hg/ha","227778","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1969","1969","hg/ha","246667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1970","1970","hg/ha","197111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1971","1971","hg/ha","224125","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1972","1972","hg/ha","189759","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1973","1973","hg/ha","222274","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1974","1974","hg/ha","219069","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1975","1975","hg/ha","207014","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1976","1976","hg/ha","190945","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1977","1977","hg/ha","193671","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1978","1978","hg/ha","159400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1979","1979","hg/ha","163131","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1980","1980","hg/ha","160982","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1981","1981","hg/ha","92344","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1982","1982","hg/ha","132467","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1983","1983","hg/ha","120751","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1984","1984","hg/ha","79375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1985","1985","hg/ha","77419","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1986","1986","hg/ha","84580","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1987","1987","hg/ha","83759","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1988","1988","hg/ha","108949","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1989","1989","hg/ha","99652","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1990","1990","hg/ha","123637","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1991","1991","hg/ha","178164","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1992","1992","hg/ha","169497","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1993","1993","hg/ha","226422","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1994","1994","hg/ha","223509","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1995","1995","hg/ha","216488","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1996","1996","hg/ha","203721","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1997","1997","hg/ha","233148","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1998","1998","hg/ha","233487","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","1999","1999","hg/ha","273978","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2000","2000","hg/ha","255170","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2001","2001","hg/ha","351479","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2002","2002","hg/ha","315765","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2003","2003","hg/ha","290739","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2004","2004","hg/ha","343509","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2005","2005","hg/ha","315531","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2006","2006","hg/ha","342359","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2007","2007","hg/ha","350482","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2008","2008","hg/ha","370306","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2009","2009","hg/ha","408934","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2010","2010","hg/ha","395849","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2011","2011","hg/ha","379651","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2012","2012","hg/ha","407727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2013","2013","hg/ha","410667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2014","2014","hg/ha","422863","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2015","2015","hg/ha","427217","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","600","Papayas","2016","2016","hg/ha","428496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1961","1961","hg/ha","43000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1962","1962","hg/ha","43333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1963","1963","hg/ha","45370","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1964","1964","hg/ha","45000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1965","1965","hg/ha","43636","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1966","1966","hg/ha","42857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1967","1967","hg/ha","44545","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1968","1968","hg/ha","41667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1969","1969","hg/ha","42609","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1970","1970","hg/ha","44091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1971","1971","hg/ha","44000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1972","1972","hg/ha","45000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1973","1973","hg/ha","44167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1974","1974","hg/ha","47000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1975","1975","hg/ha","43636","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1976","1976","hg/ha","50400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1977","1977","hg/ha","50769","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1978","1978","hg/ha","45000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1979","1979","hg/ha","54074","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1980","1980","hg/ha","53061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1981","1981","hg/ha","54286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1982","1982","hg/ha","50323","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1983","1983","hg/ha","44304","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1984","1984","hg/ha","44444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1985","1985","hg/ha","41935","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1986","1986","hg/ha","44444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1987","1987","hg/ha","77458","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1988","1988","hg/ha","42969","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1989","1989","hg/ha","44508","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1990","1990","hg/ha","45161","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1991","1991","hg/ha","46875","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1992","1992","hg/ha","47059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1993","1993","hg/ha","47429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1994","1994","hg/ha","47222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1995","1995","hg/ha","48634","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1996","1996","hg/ha","51351","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1997","1997","hg/ha","52155","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1998","1998","hg/ha","53479","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","1999","1999","hg/ha","54755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2000","2000","hg/ha","55987","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2001","2001","hg/ha","57180","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2002","2002","hg/ha","58579","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2003","2003","hg/ha","58279","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2004","2004","hg/ha","59279","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2005","2005","hg/ha","60688","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2006","2006","hg/ha","61556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2007","2007","hg/ha","62421","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2008","2008","hg/ha","63288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2009","2009","hg/ha","64163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2010","2010","hg/ha","65946","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2011","2011","hg/ha","65852","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2012","2012","hg/ha","66667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2013","2013","hg/ha","66667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2014","2014","hg/ha","68783","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2015","2015","hg/ha","69926","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","534","Peaches and nectarines","2016","2016","hg/ha","70600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1961","1961","hg/ha","54098","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1962","1962","hg/ha","59677","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1963","1963","hg/ha","59701","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1964","1964","hg/ha","59740","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1965","1965","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1966","1966","hg/ha","60256","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1967","1967","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1968","1968","hg/ha","60494","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1969","1969","hg/ha","60241","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1970","1970","hg/ha","60465","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1971","1971","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1972","1972","hg/ha","59770","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1973","1973","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1974","1974","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1975","1975","hg/ha","60215","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1976","1976","hg/ha","59794","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1977","1977","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1978","1978","hg/ha","60194","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1979","1979","hg/ha","60194","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1980","1980","hg/ha","60377","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1981","1981","hg/ha","59091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1982","1982","hg/ha","59091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1983","1983","hg/ha","59829","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1984","1984","hg/ha","61538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1985","1985","hg/ha","60714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1986","1986","hg/ha","59854","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1987","1987","hg/ha","33848","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1988","1988","hg/ha","36796","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1989","1989","hg/ha","52157","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1990","1990","hg/ha","53306","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1991","1991","hg/ha","60526","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1992","1992","hg/ha","60000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1993","1993","hg/ha","59091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1994","1994","hg/ha","61855","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1995","1995","hg/ha","63712","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1996","1996","hg/ha","66667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1997","1997","hg/ha","68113","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1998","1998","hg/ha","70514","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","1999","1999","hg/ha","77391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2000","2000","hg/ha","74772","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2001","2001","hg/ha","76119","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2002","2002","hg/ha","77419","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2003","2003","hg/ha","78666","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2004","2004","hg/ha","76585","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2005","2005","hg/ha","76009","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2006","2006","hg/ha","76045","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2007","2007","hg/ha","76180","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2008","2008","hg/ha","76821","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2009","2009","hg/ha","74705","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2010","2010","hg/ha","74469","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2011","2011","hg/ha","74518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2012","2012","hg/ha","74608","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2013","2013","hg/ha","74665","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2014","2014","hg/ha","74905","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2015","2015","hg/ha","72143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","521","Pears","2016","2016","hg/ha","78235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1961","1961","hg/ha","8919","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1962","1962","hg/ha","8770","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1963","1963","hg/ha","7743","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1964","1964","hg/ha","5157","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1965","1965","hg/ha","8250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1966","1966","hg/ha","7273","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1967","1967","hg/ha","6028","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1968","1968","hg/ha","9226","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1969","1969","hg/ha","9213","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1970","1970","hg/ha","7808","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1971","1971","hg/ha","8451","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1972","1972","hg/ha","7569","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1973","1973","hg/ha","5719","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1974","1974","hg/ha","4938","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1975","1975","hg/ha","6870","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1976","1976","hg/ha","7687","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1977","1977","hg/ha","6432","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1978","1978","hg/ha","5927","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1979","1979","hg/ha","5827","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1980","1980","hg/ha","4800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1981","1981","hg/ha","6873","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1982","1982","hg/ha","6912","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1983","1983","hg/ha","7542","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1984","1984","hg/ha","8191","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1985","1985","hg/ha","7459","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1986","1986","hg/ha","8510","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1987","1987","hg/ha","8102","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1988","1988","hg/ha","8748","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1989","1989","hg/ha","9420","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1990","1990","hg/ha","9093","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1991","1991","hg/ha","10903","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1992","1992","hg/ha","9544","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1993","1993","hg/ha","9030","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1994","1994","hg/ha","9266","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1995","1995","hg/ha","8791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1996","1996","hg/ha","8361","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1997","1997","hg/ha","9866","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1998","1998","hg/ha","8915","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","1999","1999","hg/ha","8451","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2000","2000","hg/ha","10294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2001","2001","hg/ha","8602","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2002","2002","hg/ha","9065","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2003","2003","hg/ha","8914","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2004","2004","hg/ha","10221","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2005","2005","hg/ha","9929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2006","2006","hg/ha","9127","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2007","2007","hg/ha","8053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2008","2008","hg/ha","7482","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2009","2009","hg/ha","9163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2010","2010","hg/ha","8827","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2011","2011","hg/ha","8157","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2012","2012","hg/ha","9329","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2013","2013","hg/ha","11016","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2014","2014","hg/ha","9614","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2015","2015","hg/ha","9463","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","187","Peas, dry","2016","2016","hg/ha","9272","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1961","1961","hg/ha","91667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1962","1962","hg/ha","88710","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1963","1963","hg/ha","89063","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1964","1964","hg/ha","92308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1965","1965","hg/ha","93284","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1966","1966","hg/ha","94928","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1967","1967","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1968","1968","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1969","1969","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1970","1970","hg/ha","101299","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1971","1971","hg/ha","101250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1972","1972","hg/ha","101205","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1973","1973","hg/ha","102326","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1974","1974","hg/ha","103333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1975","1975","hg/ha","103226","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1976","1976","hg/ha","105263","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1977","1977","hg/ha","103093","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1978","1978","hg/ha","105000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1979","1979","hg/ha","104902","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1980","1980","hg/ha","105140","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1981","1981","hg/ha","109091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1982","1982","hg/ha","111712","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1983","1983","hg/ha","108696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1984","1984","hg/ha","106838","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1985","1985","hg/ha","115000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1986","1986","hg/ha","114400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1987","1987","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1988","1988","hg/ha","125185","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1989","1989","hg/ha","127857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1990","1990","hg/ha","131034","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1991","1991","hg/ha","143265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1992","1992","hg/ha","143959","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1993","1993","hg/ha","145270","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1994","1994","hg/ha","133333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1995","1995","hg/ha","113636","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1996","1996","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1997","1997","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1998","1998","hg/ha","89630","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","1999","1999","hg/ha","96429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2000","2000","hg/ha","100370","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2001","2001","hg/ha","94063","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2002","2002","hg/ha","68000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2003","2003","hg/ha","67556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2004","2004","hg/ha","66662","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2005","2005","hg/ha","70387","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2006","2006","hg/ha","79343","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2007","2007","hg/ha","80875","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2008","2008","hg/ha","79585","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2009","2009","hg/ha","83793","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2010","2010","hg/ha","83020","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2011","2011","hg/ha","95054","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2012","2012","hg/ha","91739","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2013","2013","hg/ha","95182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2014","2014","hg/ha","89229","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2015","2015","hg/ha","97731","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","417","Peas, green","2016","2016","hg/ha","96861","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1961","1961","hg/ha","2718","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1962","1962","hg/ha","2549","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1963","1963","hg/ha","2353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1964","1964","hg/ha","2330","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1965","1965","hg/ha","2255","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1966","1966","hg/ha","2231","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1967","1967","hg/ha","2031","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1968","1968","hg/ha","2120","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1969","1969","hg/ha","2120","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1970","1970","hg/ha","2181","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1971","1971","hg/ha","2205","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1972","1972","hg/ha","2186","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1973","1973","hg/ha","2358","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1974","1974","hg/ha","2311","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1975","1975","hg/ha","2284","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1976","1976","hg/ha","2765","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1977","1977","hg/ha","2288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1978","1978","hg/ha","2542","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1979","1979","hg/ha","2502","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1980","1980","hg/ha","2698","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1981","1981","hg/ha","2657","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1982","1982","hg/ha","2631","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1983","1983","hg/ha","2409","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1984","1984","hg/ha","2116","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1985","1985","hg/ha","1665","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1986","1986","hg/ha","2718","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1987","1987","hg/ha","2360","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1988","1988","hg/ha","3207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1989","1989","hg/ha","2747","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1990","1990","hg/ha","3218","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1991","1991","hg/ha","2765","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1992","1992","hg/ha","2824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1993","1993","hg/ha","2680","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1994","1994","hg/ha","2686","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1995","1995","hg/ha","3140","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1996","1996","hg/ha","3109","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1997","1997","hg/ha","3111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1998","1998","hg/ha","3132","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","1999","1999","hg/ha","3167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2000","2000","hg/ha","3010","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2001","2001","hg/ha","2991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2002","2002","hg/ha","2831","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2003","2003","hg/ha","2963","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2004","2004","hg/ha","3136","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2005","2005","hg/ha","3198","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2006","2006","hg/ha","3570","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2007","2007","hg/ha","2805","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2008","2008","hg/ha","2382","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2009","2009","hg/ha","1986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2010","2010","hg/ha","2604","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2011","2011","hg/ha","2826","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2012","2012","hg/ha","2050","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2013","2013","hg/ha","4240","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2014","2014","hg/ha","4113","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2015","2015","hg/ha","5039","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","687","Pepper (piper spp.)","2016","2016","hg/ha","4264","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1961","1961","hg/ha","8492","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1962","1962","hg/ha","5586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1963","1963","hg/ha","6452","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1964","1964","hg/ha","5483","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1965","1965","hg/ha","7331","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1966","1966","hg/ha","6780","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1967","1967","hg/ha","4481","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1968","1968","hg/ha","6534","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1969","1969","hg/ha","7180","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1970","1970","hg/ha","6903","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1971","1971","hg/ha","7093","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1972","1972","hg/ha","7175","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1973","1973","hg/ha","7952","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1974","1974","hg/ha","5321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1975","1975","hg/ha","7253","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1976","1976","hg/ha","7860","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1977","1977","hg/ha","6724","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1978","1978","hg/ha","7348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1979","1979","hg/ha","7163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1980","1980","hg/ha","6434","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1981","1981","hg/ha","6887","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1982","1982","hg/ha","7445","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1983","1983","hg/ha","6797","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1984","1984","hg/ha","8005","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1985","1985","hg/ha","8194","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1986","1986","hg/ha","7667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1987","1987","hg/ha","7217","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1988","1988","hg/ha","6847","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1989","1989","hg/ha","7790","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1990","1990","hg/ha","7630","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1991","1991","hg/ha","6726","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1992","1992","hg/ha","5881","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1993","1993","hg/ha","6518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1994","1994","hg/ha","7622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1995","1995","hg/ha","6470","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1996","1996","hg/ha","6699","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1997","1997","hg/ha","7559","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1998","1998","hg/ha","5507","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","1999","1999","hg/ha","7874","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2000","2000","hg/ha","7861","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2001","2001","hg/ha","6185","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2002","2002","hg/ha","6791","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2003","2003","hg/ha","6507","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2004","2004","hg/ha","6674","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2005","2005","hg/ha","6670","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2006","2006","hg/ha","7647","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2007","2007","hg/ha","6497","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2008","2008","hg/ha","8250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2009","2009","hg/ha","6716","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2010","2010","hg/ha","7089","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2011","2011","hg/ha","6471","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2012","2012","hg/ha","6559","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2013","2013","hg/ha","7770","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2014","2014","hg/ha","8128","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2015","2015","hg/ha","7574","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","197","Pigeon peas","2016","2016","hg/ha","7334","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1961","1961","hg/ha","109039","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1962","1962","hg/ha","108696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1963","1963","hg/ha","108696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1964","1964","hg/ha","109290","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1965","1965","hg/ha","108949","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1966","1966","hg/ha","108626","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1967","1967","hg/ha","108761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1968","1968","hg/ha","108761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1969","1969","hg/ha","108824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1970","1970","hg/ha","108883","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1971","1971","hg/ha","108883","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1972","1972","hg/ha","108635","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1973","1973","hg/ha","108696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1974","1974","hg/ha","108753","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1975","1975","hg/ha","108808","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1976","1976","hg/ha","108861","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1977","1977","hg/ha","108767","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1978","1978","hg/ha","112425","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1979","1979","hg/ha","113834","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1980","1980","hg/ha","120390","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1981","1981","hg/ha","123230","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1982","1982","hg/ha","77027","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1983","1983","hg/ha","77044","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1984","1984","hg/ha","137249","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1985","1985","hg/ha","137248","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1986","1986","hg/ha","129149","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1987","1987","hg/ha","126593","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1988","1988","hg/ha","158177","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1989","1989","hg/ha","145361","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1990","1990","hg/ha","161394","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1991","1991","hg/ha","120666","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1992","1992","hg/ha","150546","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1993","1993","hg/ha","168248","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1994","1994","hg/ha","144286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1995","1995","hg/ha","132500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1996","1996","hg/ha","146341","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1997","1997","hg/ha","144948","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1998","1998","hg/ha","134286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","1999","1999","hg/ha","135580","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2000","2000","hg/ha","145714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2001","2001","hg/ha","152500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2002","2002","hg/ha","147500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2003","2003","hg/ha","145556","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2004","2004","hg/ha","152559","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2005","2005","hg/ha","154457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2006","2006","hg/ha","153228","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2007","2007","hg/ha","156552","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2008","2008","hg/ha","155625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2009","2009","hg/ha","159643","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2010","2010","hg/ha","150903","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2011","2011","hg/ha","158989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2012","2012","hg/ha","147059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2013","2013","hg/ha","149619","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2014","2014","hg/ha","158058","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2015","2015","hg/ha","171034","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","574","Pineapples","2016","2016","hg/ha","178545","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1961","1961","hg/ha","36667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1962","1962","hg/ha","40625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1963","1963","hg/ha","40741","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1964","1964","hg/ha","40541","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1965","1965","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1966","1966","hg/ha","40541","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1967","1967","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1968","1968","hg/ha","40476","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1969","1969","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1970","1970","hg/ha","40426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1971","1971","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1972","1972","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1973","1973","hg/ha","40426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1974","1974","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1975","1975","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1976","1976","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1977","1977","hg/ha","40323","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1978","1978","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1979","1979","hg/ha","40299","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1980","1980","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1981","1981","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1982","1982","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1983","1983","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1984","1984","hg/ha","39773","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1985","1985","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1986","1986","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1987","1987","hg/ha","23708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1988","1988","hg/ha","23375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1989","1989","hg/ha","24088","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1990","1990","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1991","1991","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1992","1992","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1993","1993","hg/ha","39855","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1994","1994","hg/ha","40000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1995","1995","hg/ha","41120","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1996","1996","hg/ha","42400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1997","1997","hg/ha","44066","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1998","1998","hg/ha","48145","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","1999","1999","hg/ha","51143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2000","2000","hg/ha","54425","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2001","2001","hg/ha","58383","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2002","2002","hg/ha","62426","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2003","2003","hg/ha","66667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2004","2004","hg/ha","70000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2005","2005","hg/ha","73275","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2006","2006","hg/ha","76190","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2007","2007","hg/ha","77459","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2008","2008","hg/ha","78506","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2009","2009","hg/ha","79294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2010","2010","hg/ha","80000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2011","2011","hg/ha","80769","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2012","2012","hg/ha","79630","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2013","2013","hg/ha","80000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2014","2014","hg/ha","81522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2015","2015","hg/ha","81803","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","536","Plums and sloes","2016","2016","hg/ha","83383","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1961","1961","hg/ha","72507","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1962","1962","hg/ha","67041","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1963","1963","hg/ha","81477","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1964","1964","hg/ha","62482","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1965","1965","hg/ha","84033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1966","1966","hg/ha","85094","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1967","1967","hg/ha","74403","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1968","1968","hg/ha","84410","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1969","1969","hg/ha","90113","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1970","1970","hg/ha","78883","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1971","1971","hg/ha","99755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1972","1972","hg/ha","98099","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1973","1973","hg/ha","88208","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1974","1974","hg/ha","89457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1975","1975","hg/ha","105982","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1976","1976","hg/ha","117384","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1977","1977","hg/ha","115731","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1978","1978","hg/ha","122282","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1979","1979","hg/ha","125548","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1980","1980","hg/ha","121521","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1981","1981","hg/ha","132104","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1982","1982","hg/ha","129957","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1983","1983","hg/ha","135456","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1984","1984","hg/ha","152988","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1985","1985","hg/ha","148064","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1986","1986","hg/ha","123639","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1987","1987","hg/ha","153221","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1988","1988","hg/ha","158694","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1989","1989","hg/ha","159290","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1990","1990","hg/ha","157136","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1991","1991","hg/ha","162540","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1992","1992","hg/ha","160294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1993","1993","hg/ha","149024","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1994","1994","hg/ha","166101","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1995","1995","hg/ha","162720","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1996","1996","hg/ha","169913","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1997","1997","hg/ha","193913","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1998","1998","hg/ha","146020","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","1999","1999","hg/ha","175712","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2000","2000","hg/ha","186443","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2001","2001","hg/ha","183627","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2002","2002","hg/ha","194173","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2003","2003","hg/ha","173208","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2004","2004","hg/ha","188091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2005","2005","hg/ha","188908","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2006","2006","hg/ha","185920","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2007","2007","hg/ha","164101","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2008","2008","hg/ha","192973","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2009","2009","hg/ha","188103","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2010","2010","hg/ha","199299","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2011","2011","hg/ha","227240","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2012","2012","hg/ha","217530","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2013","2013","hg/ha","227606","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2014","2014","hg/ha","229224","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2015","2015","hg/ha","231257","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","116","Potatoes","2016","2016","hg/ha","205493","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1961","1961","hg/ha","4037","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1962","1962","hg/ha","4146","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1963","1963","hg/ha","4019","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1964","1964","hg/ha","4502","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1965","1965","hg/ha","4440","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1966","1966","hg/ha","3828","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1967","1967","hg/ha","3953","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1968","1968","hg/ha","4376","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1969","1969","hg/ha","4446","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1970","1970","hg/ha","4744","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1971","1971","hg/ha","4573","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1972","1972","hg/ha","4526","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1973","1973","hg/ha","3597","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1974","1974","hg/ha","3884","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1975","1975","hg/ha","4324","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1976","1976","hg/ha","4400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1977","1977","hg/ha","3378","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1978","1978","hg/ha","3681","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1979","1979","hg/ha","3608","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1980","1980","hg/ha","2930","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1981","1981","hg/ha","3512","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1982","1982","hg/ha","3213","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1983","1983","hg/ha","3701","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1984","1984","hg/ha","4384","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1985","1985","hg/ha","3766","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1986","1986","hg/ha","4074","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1987","1987","hg/ha","4107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1988","1988","hg/ha","3909","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1989","1989","hg/ha","4247","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1990","1990","hg/ha","3312","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1991","1991","hg/ha","7096","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1992","1992","hg/ha","1896","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1993","1993","hg/ha","4746","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1994","1994","hg/ha","5917","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1995","1995","hg/ha","6580","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1996","1996","hg/ha","5611","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1997","1997","hg/ha","6600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1998","1998","hg/ha","5363","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","1999","1999","hg/ha","6222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2000","2000","hg/ha","6444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2001","2001","hg/ha","7879","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2002","2002","hg/ha","5882","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2003","2003","hg/ha","4622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2004","2004","hg/ha","5512","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2005","2005","hg/ha","4379","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2006","2006","hg/ha","4904","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2007","2007","hg/ha","4667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2008","2008","hg/ha","4188","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2009","2009","hg/ha","4321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2010","2010","hg/ha","4242","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2011","2011","hg/ha","4118","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2012","2012","hg/ha","4364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2013","2013","hg/ha","4964","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2014","2014","hg/ha","5133","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2015","2015","hg/ha","4635","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","211","Pulses, nes","2016","2016","hg/ha","4518","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1961","1961","hg/ha","65200","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1962","1962","hg/ha","65414","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1963","1963","hg/ha","67143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1964","1964","hg/ha","67007","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1965","1965","hg/ha","66667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1966","1966","hg/ha","70000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1967","1967","hg/ha","69412","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1968","1968","hg/ha","69714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1969","1969","hg/ha","69444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1970","1970","hg/ha","72678","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1971","1971","hg/ha","72632","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1972","1972","hg/ha","72000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1973","1973","hg/ha","71951","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1974","1974","hg/ha","73810","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1975","1975","hg/ha","74419","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1976","1976","hg/ha","75000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1977","1977","hg/ha","75111","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1978","1978","hg/ha","77586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1979","1979","hg/ha","79498","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1980","1980","hg/ha","80000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1981","1981","hg/ha","84000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1982","1982","hg/ha","83846","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1983","1983","hg/ha","84906","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1984","1984","hg/ha","88889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1985","1985","hg/ha","91727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1986","1986","hg/ha","92933","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1987","1987","hg/ha","93881","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1988","1988","hg/ha","96552","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1989","1989","hg/ha","95000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1990","1990","hg/ha","93464","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1991","1991","hg/ha","95227","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1992","1992","hg/ha","95161","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1993","1993","hg/ha","98413","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1994","1994","hg/ha","96107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1995","1995","hg/ha","95455","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1996","1996","hg/ha","95522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1997","1997","hg/ha","95652","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1998","1998","hg/ha","95714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","1999","1999","hg/ha","95775","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2000","2000","hg/ha","95833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2001","2001","hg/ha","95785","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2002","2002","hg/ha","95812","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2003","2003","hg/ha","95838","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2004","2004","hg/ha","95866","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2005","2005","hg/ha","95894","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2006","2006","hg/ha","95888","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2007","2007","hg/ha","95909","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2008","2008","hg/ha","95931","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2009","2009","hg/ha","95952","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2010","2010","hg/ha","95973","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2011","2011","hg/ha","95993","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2012","2012","hg/ha","96078","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2013","2013","hg/ha","96078","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2014","2014","hg/ha","96064","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2015","2015","hg/ha","96027","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","394","Pumpkins, squash and gourds","2016","2016","hg/ha","95956","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1961","1961","hg/ha","4672","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1962","1962","hg/ha","4249","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1963","1963","hg/ha","4167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1964","1964","hg/ha","3004","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1965","1965","hg/ha","5065","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1966","1966","hg/ha","4456","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1967","1967","hg/ha","4085","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1968","1968","hg/ha","4833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1969","1969","hg/ha","4692","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1970","1970","hg/ha","4928","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1971","1971","hg/ha","5944","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1972","1972","hg/ha","3965","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1973","1973","hg/ha","5447","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1974","1974","hg/ha","4931","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1975","1975","hg/ha","6118","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1976","1976","hg/ha","5797","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1977","1977","hg/ha","4957","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1978","1978","hg/ha","4603","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1979","1979","hg/ha","5249","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1980","1980","hg/ha","4115","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1981","1981","hg/ha","5603","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1982","1982","hg/ha","5413","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1983","1983","hg/ha","5768","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1984","1984","hg/ha","6733","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1985","1985","hg/ha","7708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1986","1986","hg/ha","6737","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1987","1987","hg/ha","7005","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1988","1988","hg/ha","7479","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1989","1989","hg/ha","9058","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1990","1990","hg/ha","8305","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1991","1991","hg/ha","9044","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1992","1992","hg/ha","8946","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1993","1993","hg/ha","7751","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1994","1994","hg/ha","8471","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1995","1995","hg/ha","9502","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1996","1996","hg/ha","9165","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1997","1997","hg/ha","10172","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1998","1998","hg/ha","6679","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","1999","1999","hg/ha","8696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2000","2000","hg/ha","9604","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2001","2001","hg/ha","9353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2002","2002","hg/ha","10019","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2003","2003","hg/ha","8538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2004","2004","hg/ha","11590","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2005","2005","hg/ha","10378","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2006","2006","hg/ha","11175","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2007","2007","hg/ha","10954","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2008","2008","hg/ha","10007","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2009","2009","hg/ha","11433","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2010","2010","hg/ha","11842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2011","2011","hg/ha","12571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2012","2012","hg/ha","11205","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2013","2013","hg/ha","12334","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2014","2014","hg/ha","11853","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2015","2015","hg/ha","10848","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","270","Rapeseed","2016","2016","hg/ha","11796","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1961","1961","hg/ha","15419","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1962","1962","hg/ha","13959","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1963","1963","hg/ha","15498","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1964","1964","hg/ha","16171","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1965","1965","hg/ha","12936","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1966","1966","hg/ha","12952","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1967","1967","hg/ha","15484","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1968","1968","hg/ha","16134","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1969","1969","hg/ha","16094","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1970","1970","hg/ha","16849","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1971","1971","hg/ha","17110","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1972","1972","hg/ha","16046","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1973","1973","hg/ha","17259","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1974","1974","hg/ha","15744","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1975","1975","hg/ha","18582","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1976","1976","hg/ha","16372","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1977","1977","hg/ha","19613","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1978","1978","hg/ha","19912","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1979","1979","hg/ha","16105","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1980","1980","hg/ha","20002","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1981","1981","hg/ha","19623","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1982","1982","hg/ha","18497","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1983","1983","hg/ha","21833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1984","1984","hg/ha","21272","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1985","1985","hg/ha","23292","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1986","1986","hg/ha","22052","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1987","1987","hg/ha","21991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1988","1988","hg/ha","25486","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1989","1989","hg/ha","26160","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1990","1990","hg/ha","26125","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1991","1991","hg/ha","26271","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1992","1992","hg/ha","26092","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1993","1993","hg/ha","28303","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1994","1994","hg/ha","28645","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1995","1995","hg/ha","26972","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1996","1996","hg/ha","28226","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1997","1997","hg/ha","28457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1998","1998","hg/ha","28805","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","1999","1999","hg/ha","29782","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2000","2000","hg/ha","28508","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2001","2001","hg/ha","31158","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2002","2002","hg/ha","26163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2003","2003","hg/ha","31177","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2004","2004","hg/ha","29756","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2005","2005","hg/ha","31537","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2006","2006","hg/ha","31759","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2007","2007","hg/ha","32924","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2008","2008","hg/ha","32509","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2009","2009","hg/ha","32366","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2010","2010","hg/ha","33587","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2011","2011","hg/ha","35878","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2012","2012","hg/ha","36909","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2013","2013","hg/ha","36070","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2014","2014","hg/ha","35638","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2015","2015","hg/ha","36077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","27","Rice, paddy","2016","2016","hg/ha","36950","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1961","1961","hg/ha","5998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1962","1962","hg/ha","6030","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1963","1963","hg/ha","6200","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1964","1964","hg/ha","5979","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1965","1965","hg/ha","6023","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1966","1966","hg/ha","6045","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1967","1967","hg/ha","6128","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1968","1968","hg/ha","6259","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1969","1969","hg/ha","6663","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1970","1970","hg/ha","6515","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1971","1971","hg/ha","6539","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1972","1972","hg/ha","6792","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1973","1973","hg/ha","7252","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1974","1974","hg/ha","7542","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1975","1975","hg/ha","7608","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1976","1976","hg/ha","7742","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1977","1977","hg/ha","8043","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1978","1978","hg/ha","7696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1979","1979","hg/ha","7115","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1980","1980","hg/ha","7709","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1981","1981","hg/ha","7884","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1982","1982","hg/ha","7793","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1983","1983","hg/ha","8307","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1984","1984","hg/ha","8572","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1985","1985","hg/ha","8860","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1986","1986","hg/ha","8979","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1987","1987","hg/ha","9258","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1988","1988","hg/ha","9442","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1989","1989","hg/ha","9741","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1990","1990","hg/ha","10284","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1991","1991","hg/ha","10757","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1992","1992","hg/ha","11353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1993","1993","hg/ha","11088","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1994","1994","hg/ha","11622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1995","1995","hg/ha","13258","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1996","1996","hg/ha","13852","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1997","1997","hg/ha","14589","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1998","1998","hg/ha","15633","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","1999","1999","hg/ha","15747","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2000","2000","hg/ha","15750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2001","2001","hg/ha","15736","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2002","2002","hg/ha","15918","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2003","2003","hg/ha","16627","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2004","2004","hg/ha","17038","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2005","2005","hg/ha","17956","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2006","2006","hg/ha","18786","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2007","2007","hg/ha","17981","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2008","2008","hg/ha","18672","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2009","2009","hg/ha","17765","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2010","2010","hg/ha","18071","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2011","2011","hg/ha","18182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2012","2012","hg/ha","20362","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2013","2013","hg/ha","20000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2014","2014","hg/ha","20659","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2015","2015","hg/ha","20757","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","836","Rubber, natural","2016","2016","hg/ha","20985","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1961","1961","hg/ha","1500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1962","1962","hg/ha","1506","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1963","1963","hg/ha","1511","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1964","1964","hg/ha","1363","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1965","1965","hg/ha","1554","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1966","1966","hg/ha","1494","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1967","1967","hg/ha","1506","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1968","1968","hg/ha","1516","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1969","1969","hg/ha","1622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1970","1970","hg/ha","2454","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1971","1971","hg/ha","2618","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1972","1972","hg/ha","2183","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1973","1973","hg/ha","1932","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1974","1974","hg/ha","3112","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1975","1975","hg/ha","3271","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1976","1976","hg/ha","3538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1977","1977","hg/ha","3215","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1978","1978","hg/ha","2658","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1979","1979","hg/ha","2973","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1980","1980","hg/ha","3810","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1981","1981","hg/ha","4655","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1982","1982","hg/ha","5631","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1983","1983","hg/ha","5062","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1984","1984","hg/ha","6026","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1985","1985","hg/ha","5612","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1986","1986","hg/ha","3818","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1987","1987","hg/ha","3951","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1988","1988","hg/ha","4394","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1989","1989","hg/ha","5456","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1990","1990","hg/ha","5776","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1991","1991","hg/ha","3888","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1992","1992","hg/ha","4047","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1993","1993","hg/ha","4745","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1994","1994","hg/ha","6583","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1995","1995","hg/ha","5348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1996","1996","hg/ha","5604","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1997","1997","hg/ha","6141","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1998","1998","hg/ha","6000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","1999","1999","hg/ha","5502","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2000","2000","hg/ha","5938","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2001","2001","hg/ha","4755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2002","2002","hg/ha","5689","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2003","2003","hg/ha","4831","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2004","2004","hg/ha","3707","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2005","2005","hg/ha","4703","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2006","2006","hg/ha","6270","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2007","2007","hg/ha","6857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2008","2008","hg/ha","6419","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2009","2009","hg/ha","6422","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2010","2010","hg/ha","6213","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2011","2011","hg/ha","6549","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2012","2012","hg/ha","8146","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2013","2013","hg/ha","7267","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2014","2014","hg/ha","6358","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2015","2015","hg/ha","4265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","280","Safflower seed","2016","2016","hg/ha","5056","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1961","1961","hg/ha","3579","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1962","1962","hg/ha","4274","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1963","1963","hg/ha","4358","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1964","1964","hg/ha","4032","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1965","1965","hg/ha","3923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1966","1966","hg/ha","3978","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1967","1967","hg/ha","4371","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1968","1968","hg/ha","4339","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1969","1969","hg/ha","4263","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1970","1970","hg/ha","3918","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1971","1971","hg/ha","5040","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1972","1972","hg/ha","4738","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1973","1973","hg/ha","4947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1974","1974","hg/ha","5333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1975","1975","hg/ha","4861","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1976","1976","hg/ha","4870","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1977","1977","hg/ha","4894","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1978","1978","hg/ha","5207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1979","1979","hg/ha","5065","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1980","1980","hg/ha","5164","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1981","1981","hg/ha","5195","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1982","1982","hg/ha","5082","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1983","1983","hg/ha","4395","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1984","1984","hg/ha","6122","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1985","1985","hg/ha","6154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1986","1986","hg/ha","5279","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1987","1987","hg/ha","5248","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1988","1988","hg/ha","6326","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1989","1989","hg/ha","7885","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1990","1990","hg/ha","7027","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1991","1991","hg/ha","6736","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1992","1992","hg/ha","8032","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1993","1993","hg/ha","7794","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1994","1994","hg/ha","8024","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1995","1995","hg/ha","7562","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1996","1996","hg/ha","8289","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1997","1997","hg/ha","6501","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1998","1998","hg/ha","6987","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","1999","1999","hg/ha","7032","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2000","2000","hg/ha","5979","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2001","2001","hg/ha","5836","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2002","2002","hg/ha","5974","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2003","2003","hg/ha","9600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2004","2004","hg/ha","9933","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2005","2005","hg/ha","11326","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2006","2006","hg/ha","13151","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2007","2007","hg/ha","14613","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2008","2008","hg/ha","12576","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2009","2009","hg/ha","12377","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2010","2010","hg/ha","15940","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2011","2011","hg/ha","15748","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2012","2012","hg/ha","15174","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2013","2013","hg/ha","16179","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2014","2014","hg/ha","14131","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2015","2015","hg/ha","13493","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","328","Seed cotton","2016","2016","hg/ha","13727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1961","1961","hg/ha","1652","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1962","1962","hg/ha","1928","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1963","1963","hg/ha","1820","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1964","1964","hg/ha","1947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1965","1965","hg/ha","1690","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1966","1966","hg/ha","1489","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1967","1967","hg/ha","1677","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1968","1968","hg/ha","1744","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1969","1969","hg/ha","1941","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1970","1970","hg/ha","2311","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1971","1971","hg/ha","1880","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1972","1972","hg/ha","1684","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1973","1973","hg/ha","2031","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1974","1974","hg/ha","1755","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1975","1975","hg/ha","2208","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1976","1976","hg/ha","1851","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1977","1977","hg/ha","2182","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1978","1978","hg/ha","2152","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1979","1979","hg/ha","1463","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1980","1980","hg/ha","1803","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1981","1981","hg/ha","2276","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1982","1982","hg/ha","2489","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1983","1983","hg/ha","2536","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1984","1984","hg/ha","2459","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1985","1985","hg/ha","2259","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1986","1986","hg/ha","2069","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1987","1987","hg/ha","2708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1988","1988","hg/ha","2785","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1989","1989","hg/ha","3122","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1990","1990","hg/ha","3321","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1991","1991","hg/ha","2687","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1992","1992","hg/ha","3570","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1993","1993","hg/ha","2544","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1994","1994","hg/ha","2993","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1995","1995","hg/ha","2908","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1996","1996","hg/ha","3215","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1997","1997","hg/ha","3422","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1998","1998","hg/ha","3277","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","1999","1999","hg/ha","3076","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2000","2000","hg/ha","3010","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2001","2001","hg/ha","4177","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2002","2002","hg/ha","3055","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2003","2003","hg/ha","4600","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2004","2004","hg/ha","3656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2005","2005","hg/ha","3720","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2006","2006","hg/ha","3752","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2007","2007","hg/ha","4207","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2008","2008","hg/ha","3539","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2009","2009","hg/ha","3030","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2010","2010","hg/ha","4295","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2011","2011","hg/ha","4259","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2012","2012","hg/ha","4015","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2013","2013","hg/ha","4261","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2014","2014","hg/ha","4657","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2015","2015","hg/ha","4250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","289","Sesame seed","2016","2016","hg/ha","4198","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1961","1961","hg/ha","4400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1962","1962","hg/ha","5294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1963","1963","hg/ha","5005","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1964","1964","hg/ha","5363","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1965","1965","hg/ha","4288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1966","1966","hg/ha","5109","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1967","1967","hg/ha","5454","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1968","1968","hg/ha","5234","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1969","1969","hg/ha","5225","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1970","1970","hg/ha","4665","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1971","1971","hg/ha","4603","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1972","1972","hg/ha","4492","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1973","1973","hg/ha","5442","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1974","1974","hg/ha","6433","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1975","1975","hg/ha","5906","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1976","1976","hg/ha","6673","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1977","1977","hg/ha","7393","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1978","1978","hg/ha","7083","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1979","1979","hg/ha","6986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1980","1980","hg/ha","6598","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1981","1981","hg/ha","7267","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1982","1982","hg/ha","6566","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1983","1983","hg/ha","7254","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1984","1984","hg/ha","7154","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1985","1985","hg/ha","6335","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1986","1986","hg/ha","5760","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1987","1987","hg/ha","7623","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1988","1988","hg/ha","6966","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1989","1989","hg/ha","8693","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1990","1990","hg/ha","8136","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1991","1991","hg/ha","6553","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1992","1992","hg/ha","9820","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1993","1993","hg/ha","8981","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1994","1994","hg/ha","7786","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1995","1995","hg/ha","8235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1996","1996","hg/ha","9591","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1997","1997","hg/ha","6920","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1998","1998","hg/ha","8592","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","1999","1999","hg/ha","8472","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2000","2000","hg/ha","7639","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2001","2001","hg/ha","7715","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2002","2002","hg/ha","7602","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2003","2003","hg/ha","7540","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2004","2004","hg/ha","7161","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2005","2005","hg/ha","7968","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2006","2006","hg/ha","8803","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2007","2007","hg/ha","8443","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2008","2008","hg/ha","10209","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2009","2009","hg/ha","9621","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2010","2010","hg/ha","8602","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2011","2011","hg/ha","9487","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2012","2012","hg/ha","9568","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2013","2013","hg/ha","8502","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2014","2014","hg/ha","9568","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2015","2015","hg/ha","8847","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","83","Sorghum","2016","2016","hg/ha","7805","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1961","1961","hg/ha","4545","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1962","1962","hg/ha","4545","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1963","1963","hg/ha","4444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1964","1964","hg/ha","4444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1965","1965","hg/ha","4348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1966","1966","hg/ha","4348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1967","1967","hg/ha","4444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1968","1968","hg/ha","4444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1969","1969","hg/ha","4375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1970","1970","hg/ha","4375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1971","1971","hg/ha","4375","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1972","1972","hg/ha","8235","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1973","1973","hg/ha","8125","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1974","1974","hg/ha","7612","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1975","1975","hg/ha","9785","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1976","1976","hg/ha","9840","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1977","1977","hg/ha","9385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1978","1978","hg/ha","9771","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1979","1979","hg/ha","5685","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1980","1980","hg/ha","7270","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1981","1981","hg/ha","7411","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1982","1982","hg/ha","6377","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1983","1983","hg/ha","7348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1984","1984","hg/ha","7683","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1985","1985","hg/ha","7644","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1986","1986","hg/ha","5838","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1987","1987","hg/ha","5823","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1988","1988","hg/ha","8922","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1989","1989","hg/ha","8014","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1990","1990","hg/ha","10145","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1991","1991","hg/ha","7825","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1992","1992","hg/ha","8947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1993","1993","hg/ha","10857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1994","1994","hg/ha","9106","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1995","1995","hg/ha","10121","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1996","1996","hg/ha","10319","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1997","1997","hg/ha","10789","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1998","1998","hg/ha","11001","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","1999","1999","hg/ha","11380","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2000","2000","hg/ha","8222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2001","2001","hg/ha","9400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2002","2002","hg/ha","7624","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2003","2003","hg/ha","11929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2004","2004","hg/ha","9082","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2005","2005","hg/ha","10734","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2006","2006","hg/ha","10628","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2007","2007","hg/ha","12351","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2008","2008","hg/ha","10415","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2009","2009","hg/ha","10236","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2010","2010","hg/ha","13330","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2011","2011","hg/ha","11998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2012","2012","hg/ha","13530","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2013","2013","hg/ha","10123","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2014","2014","hg/ha","9358","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2015","2015","hg/ha","7344","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","236","Soybeans","2016","2016","hg/ha","12181","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1962","1962","hg/ha","7000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1963","1963","hg/ha","7250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1964","1964","hg/ha","8016","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1965","1965","hg/ha","7280","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1966","1966","hg/ha","6783","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1967","1967","hg/ha","6731","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1968","1968","hg/ha","6300","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1969","1969","hg/ha","7010","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1970","1970","hg/ha","7138","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1971","1971","hg/ha","5907","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1972","1972","hg/ha","6341","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1973","1973","hg/ha","6766","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1974","1974","hg/ha","7676","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1975","1975","hg/ha","7712","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1976","1976","hg/ha","6826","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1977","1977","hg/ha","6122","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1978","1978","hg/ha","7088","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1979","1979","hg/ha","8831","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1980","1980","hg/ha","8484","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1981","1981","hg/ha","7469","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1982","1982","hg/ha","7522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1983","1983","hg/ha","7097","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1984","1984","hg/ha","7727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1985","1985","hg/ha","9855","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1986","1986","hg/ha","9947","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1987","1987","hg/ha","8645","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1988","1988","hg/ha","10608","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1989","1989","hg/ha","13088","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1990","1990","hg/ha","11312","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1991","1991","hg/ha","11313","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1992","1992","hg/ha","11725","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1993","1993","hg/ha","14858","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1994","1994","hg/ha","14076","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1995","1995","hg/ha","12048","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1996","1996","hg/ha","13350","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1997","1997","hg/ha","12287","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1998","1998","hg/ha","12969","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","1999","1999","hg/ha","16319","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2000","2000","hg/ha","17341","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2001","2001","hg/ha","14795","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2002","2002","hg/ha","18586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2003","2003","hg/ha","15068","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2004","2004","hg/ha","19033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2005","2005","hg/ha","20982","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2006","2006","hg/ha","20429","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2007","2007","hg/ha","19732","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2008","2008","hg/ha","18391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2009","2009","hg/ha","19033","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2010","2010","hg/ha","20327","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2011","2011","hg/ha","21890","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2012","2012","hg/ha","20203","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2013","2013","hg/ha","20268","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2014","2014","hg/ha","22118","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2015","2015","hg/ha","17531","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","723","Spices, nes","2016","2016","hg/ha","18872","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1961","1961","hg/ha","455868","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1962","1962","hg/ha","423318","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1963","1963","hg/ha","409960","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1964","1964","hg/ha","463428","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1965","1965","hg/ha","469004","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1966","1966","hg/ha","437200","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1967","1967","hg/ha","403420","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1968","1968","hg/ha","466536","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1969","1969","hg/ha","492363","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1970","1970","hg/ha","491354","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1971","1971","hg/ha","483243","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1972","1972","hg/ha","475107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1973","1973","hg/ha","509327","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1974","1974","hg/ha","511628","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1975","1975","hg/ha","498545","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1976","1976","hg/ha","509027","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1977","1977","hg/ha","533832","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1978","1978","hg/ha","561598","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1979","1979","hg/ha","491143","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1980","1980","hg/ha","493577","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1981","1981","hg/ha","578444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1982","1982","hg/ha","583589","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1983","1983","hg/ha","564408","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1984","1984","hg/ha","559784","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1985","1985","hg/ha","576728","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1986","1986","hg/ha","599864","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1987","1987","hg/ha","604442","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1988","1988","hg/ha","600064","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1989","1989","hg/ha","609922","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1990","1990","hg/ha","655915","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1991","1991","hg/ha","653949","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1992","1992","hg/ha","661458","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1993","1993","hg/ha","638739","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1994","1994","hg/ha","671550","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1995","1995","hg/ha","711990","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1996","1996","hg/ha","677349","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1997","1997","hg/ha","664958","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1998","1998","hg/ha","711338","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","1999","1999","hg/ha","765328","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2000","2000","hg/ha","709349","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2001","2001","hg/ha","685766","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2002","2002","hg/ha","673696","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2003","2003","hg/ha","635761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2004","2004","hg/ha","593799","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2005","2005","hg/ha","647517","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2006","2006","hg/ha","669281","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2007","2007","hg/ha","690330","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2008","2008","hg/ha","688772","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2009","2009","hg/ha","645535","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2010","2010","hg/ha","700191","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2011","2011","hg/ha","692466","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2012","2012","hg/ha","709306","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2013","2013","hg/ha","674308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2014","2014","hg/ha","705695","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2015","2015","hg/ha","714661","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","156","Sugar cane","2016","2016","hg/ha","703935","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1970","1970","hg/ha","6496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1971","1971","hg/ha","6496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1972","1972","hg/ha","6496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1973","1973","hg/ha","7131","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1974","1974","hg/ha","6706","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1975","1975","hg/ha","6867","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1976","1976","hg/ha","5412","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1977","1977","hg/ha","5222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1978","1978","hg/ha","5440","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1979","1979","hg/ha","5188","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1980","1980","hg/ha","5553","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1981","1981","hg/ha","5642","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1982","1982","hg/ha","4970","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1983","1983","hg/ha","4305","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1984","1984","hg/ha","5267","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1985","1985","hg/ha","3737","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1986","1986","hg/ha","4107","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1987","1987","hg/ha","3847","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1988","1988","hg/ha","3353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1989","1989","hg/ha","5295","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1990","1990","hg/ha","5346","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1991","1991","hg/ha","5648","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1992","1992","hg/ha","5669","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1993","1993","hg/ha","5060","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1994","1994","hg/ha","6106","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1995","1995","hg/ha","5943","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1996","1996","hg/ha","6477","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1997","1997","hg/ha","5115","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1998","1998","hg/ha","5172","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","1999","1999","hg/ha","5385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2000","2000","hg/ha","6020","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2001","2001","hg/ha","5774","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2002","2002","hg/ha","5314","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2003","2003","hg/ha","4644","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2004","2004","hg/ha","5492","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2005","2005","hg/ha","6151","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2006","2006","hg/ha","5685","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2007","2007","hg/ha","7660","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2008","2008","hg/ha","6388","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2009","2009","hg/ha","5761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2010","2010","hg/ha","7000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2011","2011","hg/ha","7082","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2012","2012","hg/ha","6634","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2013","2013","hg/ha","7506","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2014","2014","hg/ha","7862","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2015","2015","hg/ha","6298","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","267","Sunflower seed","2016","2016","hg/ha","8300","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1961","1961","hg/ha","77362","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1962","1962","hg/ha","62174","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1963","1963","hg/ha","63910","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1964","1964","hg/ha","65769","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1965","1965","hg/ha","70839","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1966","1966","hg/ha","55363","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1967","1967","hg/ha","62961","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1968","1968","hg/ha","74619","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1969","1969","hg/ha","84539","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1970","1970","hg/ha","75395","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1971","1971","hg/ha","84029","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1972","1972","hg/ha","80104","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1973","1973","hg/ha","71910","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1974","1974","hg/ha","70776","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1975","1975","hg/ha","71948","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1976","1976","hg/ha","72061","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1977","1977","hg/ha","66409","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1978","1978","hg/ha","66744","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1979","1979","hg/ha","73806","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1980","1980","hg/ha","63374","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1981","1981","hg/ha","72034","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1982","1982","hg/ha","75512","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1983","1983","hg/ha","73230","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1984","1984","hg/ha","73510","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1985","1985","hg/ha","84688","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1986","1986","hg/ha","80457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1987","1987","hg/ha","83601","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1988","1988","hg/ha","77582","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1989","1989","hg/ha","80750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1990","1990","hg/ha","79663","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1991","1991","hg/ha","83453","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1992","1992","hg/ha","82835","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1993","1993","hg/ha","85962","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1994","1994","hg/ha","84823","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1995","1995","hg/ha","80643","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1996","1996","hg/ha","80716","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1997","1997","hg/ha","84850","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1998","1998","hg/ha","86907","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","1999","1999","hg/ha","85744","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2000","2000","hg/ha","97421","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2001","2001","hg/ha","88368","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2002","2002","hg/ha","85694","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2003","2003","hg/ha","85694","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2004","2004","hg/ha","88588","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2005","2005","hg/ha","88477","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2006","2006","hg/ha","86849","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2007","2007","hg/ha","86976","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2008","2008","hg/ha","88943","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2009","2009","hg/ha","90080","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2010","2010","hg/ha","92069","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2011","2011","hg/ha","92456","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2012","2012","hg/ha","97174","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2013","2013","hg/ha","101288","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2014","2014","hg/ha","102756","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2015","2015","hg/ha","114766","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","122","Sweet potatoes","2016","2016","hg/ha","113231","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1961","1961","hg/ha","10699","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1962","1962","hg/ha","10427","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1963","1963","hg/ha","10371","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1964","1964","hg/ha","10899","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1965","1965","hg/ha","10612","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1966","1966","hg/ha","10815","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1967","1967","hg/ha","10960","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1968","1968","hg/ha","11390","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1969","1969","hg/ha","11114","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1970","1970","hg/ha","11739","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1971","1971","hg/ha","12141","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1972","1972","hg/ha","12663","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1973","1973","hg/ha","13049","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1974","1974","hg/ha","13473","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1975","1975","hg/ha","13373","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1976","1976","hg/ha","13974","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1977","1977","hg/ha","15067","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1978","1978","hg/ha","15086","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1979","1979","hg/ha","14369","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1980","1980","hg/ha","14914","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1981","1981","hg/ha","14563","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1982","1982","hg/ha","14196","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1983","1983","hg/ha","14681","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1984","1984","hg/ha","16059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1985","1985","hg/ha","16407","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1986","1986","hg/ha","15080","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1987","1987","hg/ha","15079","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1988","1988","hg/ha","16280","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1989","1989","hg/ha","16923","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1990","1990","hg/ha","16581","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1991","1991","hg/ha","17109","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1992","1992","hg/ha","16986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1993","1993","hg/ha","15712","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1994","1994","hg/ha","17676","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1995","1995","hg/ha","17614","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1996","1996","hg/ha","17705","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1997","1997","hg/ha","18097","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1998","1998","hg/ha","18664","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","1999","1999","hg/ha","18439","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2000","2000","hg/ha","16857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2001","2001","hg/ha","16806","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2002","2002","hg/ha","16745","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2003","2003","hg/ha","16395","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2004","2004","hg/ha","16904","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2005","2005","hg/ha","17409","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2006","2006","hg/ha","17080","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2007","2007","hg/ha","17160","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2008","2008","hg/ha","17063","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2009","2009","hg/ha","16800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2010","2010","hg/ha","17119","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2011","2011","hg/ha","18258","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2012","2012","hg/ha","18761","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2013","2013","hg/ha","21433","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2014","2014","hg/ha","19989","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2015","2015","hg/ha","21762","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","667","Tea","2016","2016","hg/ha","21372","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1961","1961","hg/ha","7656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1962","1962","hg/ha","8110","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1963","1963","hg/ha","8420","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1964","1964","hg/ha","8163","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1965","1965","hg/ha","8782","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1966","1966","hg/ha","7772","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1967","1967","hg/ha","8345","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1968","1968","hg/ha","8706","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1969","1969","hg/ha","8208","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1970","1970","hg/ha","7698","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1971","1971","hg/ha","8098","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1972","1972","hg/ha","9140","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1973","1973","hg/ha","8366","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1974","1974","hg/ha","10013","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1975","1975","hg/ha","9540","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1976","1976","hg/ha","9500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1977","1977","hg/ha","9685","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1978","1978","hg/ha","9786","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1979","1979","hg/ha","11087","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1980","1980","hg/ha","10308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1981","1981","hg/ha","10649","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1982","1982","hg/ha","11719","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1983","1983","hg/ha","11570","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1984","1984","hg/ha","11201","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1985","1985","hg/ha","11129","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1986","1986","hg/ha","11113","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1987","1987","hg/ha","11865","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1988","1988","hg/ha","11553","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1989","1989","hg/ha","13072","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1990","1990","hg/ha","13353","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1991","1991","hg/ha","13532","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1992","1992","hg/ha","13686","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1993","1993","hg/ha","14253","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1994","1994","hg/ha","14628","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1995","1995","hg/ha","14874","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1996","1996","hg/ha","13584","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1997","1997","hg/ha","14439","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1998","1998","hg/ha","13922","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","1999","1999","hg/ha","14489","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2000","2000","hg/ha","11998","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2001","2001","hg/ha","13077","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2002","2002","hg/ha","15714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2003","2003","hg/ha","14848","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2004","2004","hg/ha","14874","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2005","2005","hg/ha","14982","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2006","2006","hg/ha","14812","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2007","2007","hg/ha","14054","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2008","2008","hg/ha","14000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2009","2009","hg/ha","15942","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2010","2010","hg/ha","15531","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2011","2011","hg/ha","16939","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2012","2012","hg/ha","17826","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2013","2013","hg/ha","17212","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2014","2014","hg/ha","16610","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2015","2015","hg/ha","16831","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","826","Tobacco, unmanufactured","2016","2016","hg/ha","16946","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1961","1961","hg/ha","92800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1962","1962","hg/ha","92308","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1963","1963","hg/ha","93396","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1964","1964","hg/ha","92727","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1965","1965","hg/ha","92105","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1966","1966","hg/ha","93103","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1967","1967","hg/ha","93333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1968","1968","hg/ha","93548","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1969","1969","hg/ha","95238","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1970","1970","hg/ha","95385","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1971","1971","hg/ha","95522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1972","1972","hg/ha","94203","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1973","1973","hg/ha","94286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1974","1974","hg/ha","83333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1975","1975","hg/ha","83000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1976","1976","hg/ha","91304","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1977","1977","hg/ha","85000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1978","1978","hg/ha","95000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1979","1979","hg/ha","86667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1980","1980","hg/ha","93750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1981","1981","hg/ha","94737","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1982","1982","hg/ha","97222","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1983","1983","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1984","1984","hg/ha","91304","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1985","1985","hg/ha","88462","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1986","1986","hg/ha","91200","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1987","1987","hg/ha","81268","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1988","1988","hg/ha","131621","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1989","1989","hg/ha","133560","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1990","1990","hg/ha","158587","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1991","1991","hg/ha","146825","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1992","1992","hg/ha","157120","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1993","1993","hg/ha","161290","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1994","1994","hg/ha","140857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1995","1995","hg/ha","150286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1996","1996","hg/ha","157725","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1997","1997","hg/ha","175000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1998","1998","hg/ha","150732","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","1999","1999","hg/ha","175957","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2000","2000","hg/ha","161522","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2001","2001","hg/ha","157391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2002","2002","hg/ha","162897","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2003","2003","hg/ha","159079","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2004","2004","hg/ha","161607","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2005","2005","hg/ha","174622","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2006","2006","hg/ha","179828","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2007","2007","hg/ha","168708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2008","2008","hg/ha","182032","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2009","2009","hg/ha","186092","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2010","2010","hg/ha","195984","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2011","2011","hg/ha","191052","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2012","2012","hg/ha","205656","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2013","2013","hg/ha","207125","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2014","2014","hg/ha","212418","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2015","2015","hg/ha","213625","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","388","Tomatoes","2016","2016","hg/ha","242092","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1961","1961","hg/ha","65054","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1962","1962","hg/ha","60333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1963","1963","hg/ha","66000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1964","1964","hg/ha","66995","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1965","1965","hg/ha","66983","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1966","1966","hg/ha","69031","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1967","1967","hg/ha","70000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1968","1968","hg/ha","71090","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1969","1969","hg/ha","72093","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1970","1970","hg/ha","73059","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1971","1971","hg/ha","73991","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1972","1972","hg/ha","74348","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1973","1973","hg/ha","75053","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1974","1974","hg/ha","76596","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1975","1975","hg/ha","76507","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1976","1976","hg/ha","78586","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1977","1977","hg/ha","79503","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1978","1978","hg/ha","78571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1979","1979","hg/ha","79508","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1980","1980","hg/ha","81573","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1981","1981","hg/ha","83333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1982","1982","hg/ha","84400","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1983","1983","hg/ha","84706","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1984","1984","hg/ha","87302","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1985","1985","hg/ha","87500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1986","1986","hg/ha","88433","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1987","1987","hg/ha","88398","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1988","1988","hg/ha","95062","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1989","1989","hg/ha","95914","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1990","1990","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1991","1991","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1992","1992","hg/ha","108421","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1993","1993","hg/ha","105238","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1994","1994","hg/ha","124138","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1995","1995","hg/ha","81411","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1996","1996","hg/ha","100000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1997","1997","hg/ha","109665","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1998","1998","hg/ha","110822","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","1999","1999","hg/ha","131854","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2000","2000","hg/ha","138309","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2001","2001","hg/ha","141928","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2002","2002","hg/ha","117662","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2003","2003","hg/ha","103086","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2004","2004","hg/ha","110391","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2005","2005","hg/ha","110057","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2006","2006","hg/ha","122278","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2007","2007","hg/ha","127721","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2008","2008","hg/ha","130083","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2009","2009","hg/ha","123083","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2010","2010","hg/ha","136038","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2011","2011","hg/ha","132295","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2012","2012","hg/ha","129503","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2013","2013","hg/ha","117986","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2014","2014","hg/ha","140442","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2015","2015","hg/ha","136602","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","463","Vegetables, fresh nes","2016","2016","hg/ha","132275","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1961","1961","hg/ha","8571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1962","1962","hg/ha","8571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1963","1963","hg/ha","8667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1964","1964","hg/ha","8750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1965","1965","hg/ha","8750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1966","1966","hg/ha","8889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1967","1967","hg/ha","8800","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1968","1968","hg/ha","8750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1969","1969","hg/ha","9091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1970","1970","hg/ha","8750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1971","1971","hg/ha","9167","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1972","1972","hg/ha","8750","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1973","1973","hg/ha","9000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1974","1974","hg/ha","8636","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1975","1975","hg/ha","8824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1976","1976","hg/ha","8889","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1977","1977","hg/ha","8571","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1978","1978","hg/ha","9130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1979","1979","hg/ha","8500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1980","1980","hg/ha","9000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1981","1981","hg/ha","8500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1982","1982","hg/ha","9091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1983","1983","hg/ha","9091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1984","1984","hg/ha","8824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1985","1985","hg/ha","8824","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1986","1986","hg/ha","9000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1987","1987","hg/ha","10455","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1988","1988","hg/ha","9091","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1989","1989","hg/ha","6939","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1990","1990","hg/ha","8130","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1991","1991","hg/ha","6977","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1992","1992","hg/ha","8902","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1993","1993","hg/ha","8000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1994","1994","hg/ha","9859","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1995","1995","hg/ha","8681","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1996","1996","hg/ha","9959","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1997","1997","hg/ha","8013","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1998","1998","hg/ha","10017","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","1999","1999","hg/ha","9241","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2000","2000","hg/ha","10265","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2001","2001","hg/ha","9603","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2002","2002","hg/ha","9934","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2003","2003","hg/ha","10164","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2004","2004","hg/ha","11148","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2005","2005","hg/ha","10390","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2006","2006","hg/ha","11688","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2007","2007","hg/ha","10714","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2008","2008","hg/ha","12013","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2009","2009","hg/ha","11688","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2010","2010","hg/ha","12338","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2011","2011","hg/ha","11688","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2012","2012","hg/ha","12698","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2013","2013","hg/ha","11613","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2014","2014","hg/ha","13871","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2015","2015","hg/ha","11290","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","222","Walnuts, with shell","2016","2016","hg/ha","10645","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1961","1961","hg/ha","109231","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1962","1962","hg/ha","110294","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1963","1963","hg/ha","110000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1964","1964","hg/ha","106667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1965","1965","hg/ha","111842","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1966","1966","hg/ha","111392","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1967","1967","hg/ha","111250","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1968","1968","hg/ha","114286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1969","1969","hg/ha","114943","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1970","1970","hg/ha","114607","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1971","1971","hg/ha","114737","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1972","1972","hg/ha","115152","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1973","1973","hg/ha","116000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1974","1974","hg/ha","115686","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1975","1975","hg/ha","114286","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1976","1976","hg/ha","116822","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1977","1977","hg/ha","115596","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1978","1978","hg/ha","116364","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1979","1979","hg/ha","115652","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1980","1980","hg/ha","116667","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1981","1981","hg/ha","116935","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1982","1982","hg/ha","117692","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1983","1983","hg/ha","118519","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1984","1984","hg/ha","117857","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1985","1985","hg/ha","118881","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1986","1986","hg/ha","125170","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1987","1987","hg/ha","125333","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1988","1988","hg/ha","125806","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1989","1989","hg/ha","125478","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1990","1990","hg/ha","125000","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1991","1991","hg/ha","127146","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1992","1992","hg/ha","127607","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1993","1993","hg/ha","127273","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1994","1994","hg/ha","127976","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1995","1995","hg/ha","129412","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1996","1996","hg/ha","130058","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1997","1997","hg/ha","131579","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1998","1998","hg/ha","130542","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","1999","1999","hg/ha","130596","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2000","2000","hg/ha","127500","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2001","2001","hg/ha","131054","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2002","2002","hg/ha","131593","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2003","2003","hg/ha","132166","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2004","2004","hg/ha","132702","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2005","2005","hg/ha","134173","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2006","2006","hg/ha","134950","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2007","2007","hg/ha","135740","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2008","2008","hg/ha","136532","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2009","2009","hg/ha","137316","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2010","2010","hg/ha","138085","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2011","2011","hg/ha","138833","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2012","2012","hg/ha","140351","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2013","2013","hg/ha","140351","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2014","2014","hg/ha","140691","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2015","2015","hg/ha","141319","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","567","Watermelons","2016","2016","hg/ha","141847","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1961","1961","hg/ha","8507","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1962","1962","hg/ha","8896","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1963","1963","hg/ha","7929","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1964","1964","hg/ha","7299","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1965","1965","hg/ha","9132","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1966","1966","hg/ha","8268","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1967","1967","hg/ha","8874","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1968","1968","hg/ha","11028","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1969","1969","hg/ha","11688","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1970","1970","hg/ha","12086","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1971","1971","hg/ha","13066","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1972","1972","hg/ha","13799","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1973","1973","hg/ha","12708","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1974","1974","hg/ha","11719","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1975","1975","hg/ha","13384","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1976","1976","hg/ha","14103","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1977","1977","hg/ha","13866","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1978","1978","hg/ha","14798","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1979","1979","hg/ha","15683","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1980","1980","hg/ha","14356","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1981","1981","hg/ha","16299","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1982","1982","hg/ha","16913","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1983","1983","hg/ha","18158","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1984","1984","hg/ha","18432","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1985","1985","hg/ha","18701","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1986","1986","hg/ha","20460","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1987","1987","hg/ha","19162","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1988","1988","hg/ha","20019","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1989","1989","hg/ha","22444","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1990","1990","hg/ha","21211","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1991","1991","hg/ha","22814","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1992","1992","hg/ha","23940","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1993","1993","hg/ha","23267","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1994","1994","hg/ha","23796","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1995","1995","hg/ha","25590","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1996","1996","hg/ha","24828","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1997","1997","hg/ha","26789","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1998","1998","hg/ha","24852","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","1999","1999","hg/ha","25901","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2000","2000","hg/ha","27785","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2001","2001","hg/ha","27081","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2002","2002","hg/ha","27621","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2003","2003","hg/ha","26100","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2004","2004","hg/ha","27132","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2005","2005","hg/ha","26016","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2006","2006","hg/ha","26188","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2007","2007","hg/ha","27079","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2008","2008","hg/ha","28022","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2009","2009","hg/ha","29071","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2010","2010","hg/ha","28395","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2011","2011","hg/ha","29886","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2012","2012","hg/ha","31775","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2013","2013","hg/ha","31538","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2014","2014","hg/ha","31457","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2015","2015","hg/ha","27496","Fc","Calculated data" +"QC","Crops","100","India","5419","Yield","15","Wheat","2016","2016","hg/ha","30930","Fc","Calculated data" diff --git a/WBDI.dta b/WBDI.dta new file mode 100644 index 0000000..290f79f Binary files /dev/null and b/WBDI.dta differ diff --git a/cultivation_data.dta b/cultivation_data.dta new file mode 100644 index 0000000..b0b5202 Binary files /dev/null and b/cultivation_data.dta differ diff --git a/household_data.dta b/household_data.dta new file mode 100644 index 0000000..b8516db Binary files /dev/null and b/household_data.dta differ