Baselight

Unsupervised Learning On Country Data

Dataset for Kmeans Clustering

@kaggle.rohan0301_unsupervised_learning_on_country_data

Country Data
@kaggle.rohan0301_unsupervised_learning_on_country_data.country_data

  • 16.49 KB
  • 167 rows
  • 10 columns
country

Country

child_mort

Child Mort

exports

Exports

health

Health

imports

Imports

income

Income

inflation

Inflation

life_expec

Life Expec

total_fer

Total Fer

gdpp

Gdpp

Afghanistan90.2107.5844.916109.4456.25.82553
Albania16.6286.5548.699304.4976.31.654090
Algeria27.338.44.1731.41290016.176.52.894460
Angola11962.32.8542.9590022.460.16.163530
Antigua and Barbuda10.345.56.0358.9191001.4476.82.1312200
Argentina14.518.98.1161870020.975.82.3710300
Armenia18.120.84.445.367007.7773.31.693220
Australia4.819.88.7320.9414001.16821.9351900
Austria4.351.31147.8432000.87380.51.4446900
Azerbaijan39.254.35.8820.71600013.869.11.925840

CREATE TABLE country_data (
  "country" VARCHAR,
  "child_mort" DOUBLE,
  "exports" DOUBLE,
  "health" DOUBLE,
  "imports" DOUBLE,
  "income" BIGINT,
  "inflation" DOUBLE,
  "life_expec" DOUBLE,
  "total_fer" DOUBLE,
  "gdpp" BIGINT
);

Share link

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