Baselight

Coffee Dataset

Coffee economic indicatores from the International Coffee Organization dataset

@kaggle.michals22_coffee_dataset

Coffee Import
@kaggle.michals22_coffee_dataset.coffee_import

  • 28.55 KB
  • 35 rows
  • 32 columns
country

Country

n_1990

1990

n_1991

1991

n_1992

1992

n_1993

1993

n_1994

1994

n_1995

1995

n_1996

1996

n_1997

1997

n_1998

1998

n_1999

1999

n_2000

2000

n_2001

2001

n_2002

2002

n_2003

2003

n_2004

2004

n_2005

2005

n_2006

2006

n_2007

2007

n_2008

2008

n_2009

2009

n_2010

2010

n_2011

2011

n_2012

2012

n_2013

2013

n_2014

2014

n_2015

2015

n_2016

2016

n_2017

2017

n_2018

2018

n_2019

2019

total_import

Total Import

Austria1128000001234800001323600001101600008502000073860000726000007764000077580000900000007542000085920000868200008016000092280000946200009606000011808000011406000078540000821400008712000093540000933000009150000090780000897000008760000085740000868800002765760000
Belgium1801800002094600001925400002275200002290800002380800002437800002763000002408400004075200003549600003554400003496800003400800003301200003127200003320400003631200003406200003445200003719400006240540000
Belgium/Luxembourg1209000001047600001096800001237800001357200001440600001515600001526400002148000001257900000
Bulgaria160800001200000010920000238200002778000030900000163200001764000020520000220200001686000021300000205800002400000022020000264600002610000023580000310200003138000031680000289200003360000036540000372600004092000046740000424200004422000047100000830700000
Croatia1008000097800001158000019200000193200002310000020340000211200002064000021120000222600002358000023280000235200002424000024840000243000002364000023640000234600002304000024780000252000002622000028740000263400002676000027960000622080000
Cyprus300000032400002460000462000031200002640000312000024600003000000330000041400003540000342000035400003540000480000044400004260000468000043200004620000492000050400005640000564000053400005580000600000079800007980000130380000
Czechia39540000315000002850000030840000332400003318000031500000336000004590000043680000485400005394000053280000584400005574000063780000564000006222000062220000558000005706000057120000676200007104000010938000012408000010674000090420000114180000965400001816020000
Denmark5754000058980000637200005964000061980000526200006036000056940000608400006564000061320000661800006456000060120000671400005958000060240000597000005400000051600000609000005454000054780000552600005118000050460000543600005112000052080000544800001741860000
Estonia96000030600004980000642000070200008460000810000078600006300000966000072000008040000105600001326000015240000166200002004000021420000157800001002000094200009360000786000075600008100000798000088200008880000268980000
Finland6570000061980000633000007806000081660000461400005952000071160000700800007254000063780000650400006450000066300000691200006936000070080000724200007710000074580000764400007722000074280000765000007278000079260000833400008160000077100000909000002151840000

CREATE TABLE coffee_import (
  "country" VARCHAR,
  "n_1990" BIGINT,
  "n_1991" BIGINT,
  "n_1992" BIGINT,
  "n_1993" BIGINT,
  "n_1994" BIGINT,
  "n_1995" BIGINT,
  "n_1996" BIGINT,
  "n_1997" BIGINT,
  "n_1998" BIGINT,
  "n_1999" BIGINT,
  "n_2000" BIGINT,
  "n_2001" BIGINT,
  "n_2002" BIGINT,
  "n_2003" BIGINT,
  "n_2004" BIGINT,
  "n_2005" BIGINT,
  "n_2006" BIGINT,
  "n_2007" BIGINT,
  "n_2008" BIGINT,
  "n_2009" BIGINT,
  "n_2010" BIGINT,
  "n_2011" BIGINT,
  "n_2012" BIGINT,
  "n_2013" BIGINT,
  "n_2014" BIGINT,
  "n_2015" BIGINT,
  "n_2016" BIGINT,
  "n_2017" BIGINT,
  "n_2018" BIGINT,
  "n_2019" BIGINT,
  "total_import" BIGINT
);

Share link

Anyone who has the link will be able to view this.