Baselight

Any Effect Of Fertilizer & Pesticide On Cereals?

Analyzing effects of fertilizer & pesticide use on cereal crop yields worldwide

@kaggle.kkhandekar_any_effect_of_fertilizer_pesticide_on_cereals

About this Dataset

Any Effect Of Fertilizer & Pesticide On Cereals?

Analyzing the effects fertilizer and pesticide usage on Cereal crop yield worldwide.

  • CerealCropYield_1961-2018 : worldwide cereal crop yield from 1961 to 2018
  • FertilizerConsumption_1961-2018 : worldwide fertilizer consumption from 1961 - 2018
  • PesticideUsage_1990-2017 : worldwide pesticide usage from 1990 to 2017

Tables

Cerealcropyield 1961–2018

@kaggle.kkhandekar_any_effect_of_fertilizer_pesticide_on_cereals.cerealcropyield_1961_2018
  • 7.67 KB
  • 202 rows
  • 3 columns
Loading...

CREATE TABLE cerealcropyield_1961_2018 (
  "country" VARCHAR,
  "yield_hg_ha" BIGINT,
  "area_harvested_ha" BIGINT
);

Fertilizerconsumption 1961–2018

@kaggle.kkhandekar_any_effect_of_fertilizer_pesticide_on_cereals.fertilizerconsumption_1961_2018
  • 5.34 KB
  • 184 rows
  • 2 columns
Loading...

CREATE TABLE fertilizerconsumption_1961_2018 (
  "country" VARCHAR,
  "fertilizerquantity" BIGINT
);

Pesticideusage 1990–2017

@kaggle.kkhandekar_any_effect_of_fertilizer_pesticide_on_cereals.pesticideusage_1990_2017
  • 5.12 KB
  • 165 rows
  • 2 columns
Loading...

CREATE TABLE pesticideusage_1990_2017 (
  "country" VARCHAR,
  "total_pesticides_use_per_area_of_land_kg_ha" DOUBLE
);