Baselight

Water Pollution In EU Countries

Selection of assessments of the degree of water pollution in European countries

@kaggle.hydramst_water_pollution

About this Dataset

Water Pollution In EU Countries

Files
Train.csv - Data training set
Target.csv - target values ​​for a training set
Test.csv - Test data set
SubMission.csv - an example of a file for downloading a solution

Columns
'Code' is a unique code of the controlled determinant determined in the list of codes,
'year' - the year during which the data was selected,
'Period' is the period of the year during which the data was selected,
'ID' is a unique international identifier of the water body in which the data was obtained,
'Country' - information about the country created using coordinates,
'Tourists' - the average number of tourists in the country from 1990 to 2020,
'Venue' - the number of enterprises next to the indicated coordinates,
'Rate' - literacy level in the country from 2010 to 2018,
'Food' - share of food waste,
'Glass' - share of glass waste,
'Metal' is a share of metal waste,
'Other' - share of other waste,
'Paper' is a share of paper waste,
'plastic' is a share of plastic waste,
'leather' - share of leather waste,
'green_waste' - share of green waste,
'Waste_Recycling' - share of processed garbage.

Tables

Submission

@kaggle.hydramst_water_pollution.submission
  • 6 KB
  • 732 rows
  • 2 columns
Loading...

CREATE TABLE submission (
  "idx" BIGINT,
  "polution_clf" BIGINT
);

Target

@kaggle.hydramst_water_pollution.target
  • 18.44 KB
  • 2928 rows
  • 2 columns
Loading...

CREATE TABLE target (
  "unnamed_0" BIGINT,
  "polution_clf" BIGINT
);

Test

@kaggle.hydramst_water_pollution.test
  • 27.64 KB
  • 732 rows
  • 18 columns
Loading...

CREATE TABLE test (
  "unnamed_0" BIGINT,
  "code" VARCHAR,
  "year" BIGINT,
  "period" VARCHAR,
  "id" VARCHAR,
  "country" VARCHAR,
  "tourists" DOUBLE,
  "venue" DOUBLE,
  "rate" DOUBLE,
  "food" DOUBLE,
  "glass" DOUBLE,
  "metal" DOUBLE,
  "other" DOUBLE,
  "paper" DOUBLE,
  "plastic" DOUBLE,
  "leather" DOUBLE,
  "green_waste" DOUBLE,
  "waste_recycling" DOUBLE
);

Train

@kaggle.hydramst_water_pollution.train
  • 57.99 KB
  • 2928 rows
  • 18 columns
Loading...

CREATE TABLE train (
  "unnamed_0" BIGINT,
  "code" VARCHAR,
  "year" BIGINT,
  "period" VARCHAR,
  "id" VARCHAR,
  "country" VARCHAR,
  "tourists" DOUBLE,
  "venue" DOUBLE,
  "rate" DOUBLE,
  "food" DOUBLE,
  "glass" DOUBLE,
  "metal" DOUBLE,
  "other" DOUBLE,
  "paper" DOUBLE,
  "plastic" DOUBLE,
  "leather" DOUBLE,
  "green_waste" DOUBLE,
  "waste_recycling" DOUBLE
);