Baselight

Coffee Dataset

Coffee economic indicatores from the International Coffee Organization dataset

@kaggle.michals22_coffee_dataset

Coffee Export
@kaggle.michals22_coffee_dataset.coffee_export

  • 31.84 KB
  • 55 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_export

Total Export

Angola50400004260000480000023400004800002460000312000030000003240000300000013200008400005400001020000360000300000300000240000360000420000240000480000480000360000540000660000660000540000540000138000043320000
Bolivia (Plurinational State of)936000044400005760000282000050400005640000738000066600005820000744000063600004200000474000043800005580000504000055800005040000408000049800004680000444000037800003300000372000018000001320000156000013200001200000137460000
Brazil1016160000127098000011274600001070280000103638000086808000091506000010080600001088640000138894000010809600001390320000167892000015426600001588680000157188000016421400001691040000177060000018226800001990020000202836000017129400001899060000-2147483648-2147483648205614000018555000002138220000-214748364833807709056
Burundi351000004128000038760000250800003048000031680000134400003174000022440000245400002664000018180000173400002856000020340000222600001686000021360000150600001734000018420000130800002352000011700000151200001380000012240000101400001212000017580000646200000
Cameroon156660000105120000987600004230000032760000244200003384000082080000447600006924000072300000675000003840000048840000440400004224000044340000432600003162000037080000476400002940000037320000163200002250000023400000168600001470000017220000150000001399920000
Central African Republic118200008460000600000082200008220000139200005880000121800006120000117000001218000056400005700000240000038400002820000102000073200001980000372000057000004680000468000060000450000025800004800000108000023400001140000170700000
Colombia83664000075594000099384000081408000070608000058884000063528000065514000067560000059970000055062000059664000061638000061464000061164000065226000065670000067800000066510000047364000046932000046404000043020000058020000065724000076296000076986000077910000076848000082032000019878480000
Congo12000060000600006000011400007800001800002400000
Costa Rica135960000144000000145860000141840000126300000124020000145800000125940000122700000131700000117900000121080000107040000102120000854400008880000078600000818400008640000074160000720000007458000082440000806400007254000067680000604200005922000072480000623400002991840000
Côte d'Ivoire256980000228300000272760000241980000146640000149640000165060000282780000261900000144360000366600000245700000195180000158820000154380000105240000105060000131760000894000001084200001147200004632000010272000011772000089340000850800008592000051300000913200001262400004721640000

CREATE TABLE coffee_export (
  "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_export" BIGINT
);

Share link

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