Locations Of Home Improvement Stores
Entry decisions of Lowe's and Home Depot with Census data
@kaggle.erichschulman_home_improvement_stores
Entry decisions of Lowe's and Home Depot with Census data
@kaggle.erichschulman_home_improvement_stores
CREATE TABLE cbsa (
"n_0" BIGINT,
"name" VARCHAR,
"cbsa" BIGINT,
"b19301_001e" DOUBLE,
"b01003_001e" BIGINT,
"metropolitan_statistical_area_micropolitan_statistical_area" BIGINT
);
CREATE TABLE census (
"name" VARCHAR,
"population" BIGINT,
"under44_1" DOUBLE,
"under44_2" DOUBLE,
"under44_3" DOUBLE,
"older65_1" DOUBLE,
"older_65_2" DOUBLE,
"income_per_capita" DOUBLE,
"industrial_managers" VARCHAR,
"construction_managers" VARCHAR,
"farmers" VARCHAR,
"realestate" VARCHAR,
"construction_workers" VARCHAR,
"state" BIGINT,
"place" BIGINT
);
CREATE TABLE entry (
"store" VARCHAR,
"address" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"zipcode" VARCHAR,
"url" VARCHAR,
"time" DOUBLE
);
CREATE TABLE entry_loc2 (
"unnamed_0_1" BIGINT,
"unnamed_0" BIGINT,
"city" VARCHAR,
"state" BIGINT,
"hd" BIGINT,
"low" BIGINT,
"population" BIGINT,
"income_per_capita" BIGINT,
"under44_1" DOUBLE,
"under44_2" DOUBLE,
"under44_3" DOUBLE,
"older65_1" DOUBLE,
"older_65_2" DOUBLE,
"stusab" VARCHAR,
"state_name" VARCHAR,
"statens" BIGINT,
"lat" DOUBLE,
"lon" DOUBLE,
"low_dist" DOUBLE,
"hd_dist" DOUBLE,
"lat_long" VARCHAR,
"low_mount_vernon" DOUBLE,
"low_valdosta" DOUBLE,
"low_rockford" DOUBLE,
"low_garysburg" DOUBLE,
"low_findlay" DOUBLE,
"low_cheyenne" DOUBLE,
"low_plainfield" DOUBLE,
"low_statesville" DOUBLE,
"low_north_vernon" DOUBLE,
"low_minersville" DOUBLE,
"low_perris" DOUBLE,
"low_kissimmee" DOUBLE,
"hd_hardeeville" DOUBLE,
"hd_tucson" DOUBLE,
"hd_lacey" DOUBLE,
"hd_hialeah" DOUBLE,
"hd_elk_grove_village" DOUBLE,
"hd_hiawatha" DOUBLE,
"hd_south_windsor" DOUBLE,
"hd_frederick" DOUBLE,
"hd_fresno" DOUBLE,
"hd_grove_city" DOUBLE,
"hd_north_las_vegas" DOUBLE,
"hd_houston" DOUBLE,
"hd_alpharetta" DOUBLE,
"hd_whitestown" DOUBLE,
"hd_cherry_hill" DOUBLE,
"hd_loveland" DOUBLE,
"hd_tulsa" DOUBLE,
"hd_jenkins_township" DOUBLE,
"hd_louisville" DOUBLE,
"hd_waukesha" DOUBLE,
"hd_hawthorne" DOUBLE,
"hd_greensboro" DOUBLE,
"hd_portland" DOUBLE,
"hd_la_vergne" DOUBLE,
"hd_suffolk" DOUBLE,
"hd_huntington" DOUBLE,
"hd_omaha" DOUBLE,
"hd_saint_louis" DOUBLE,
"hd_alabaster" DOUBLE,
"hd_farmington_hills" DOUBLE,
"hd_shawnee" DOUBLE,
"hd_harahan" DOUBLE,
"hd_saint_paul" DOUBLE,
"hd_draper" DOUBLE,
"hd_auburn" DOUBLE,
"low_warehouse_distance" DOUBLE,
"hd_warehouse_distance" DOUBLE
);
CREATE TABLE entry_loc3_w_filter (
"unnamed_0" BIGINT,
"name" VARCHAR,
"city" VARCHAR,
"state" BIGINT,
"hd" BIGINT,
"low" BIGINT,
"population" BIGINT,
"income_per_capita" BIGINT,
"stusab" VARCHAR,
"low_warehouse_distance" DOUBLE,
"hd_warehouse_distance" DOUBLE,
"northeast_x" BIGINT,
"midwest_x" BIGINT,
"south_x" BIGINT,
"west_x" BIGINT
);
CREATE TABLE states (
"state" BIGINT,
"stusab" VARCHAR,
"state_name" VARCHAR,
"statens" BIGINT
);
CREATE TABLE warehouse_loc (
"unnamed_0" BIGINT,
"city" VARCHAR,
"state" VARCHAR,
"store" VARCHAR,
"lat" DOUBLE,
"lon" DOUBLE
);
Anyone who has the link will be able to view this.