Titanic Dataset With Port Coordinates
Lat, lon coordinates assigned to ports of embarkation for geographical plots
@kaggle.amykzhang_titanic_dataset_with_coordinates
Lat, lon coordinates assigned to ports of embarkation for geographical plots
@kaggle.amykzhang_titanic_dataset_with_coordinates
CREATE TABLE titanic_coord (
"passengerid" BIGINT,
"survived" BIGINT,
"pclass" BIGINT,
"name" VARCHAR,
"sex" VARCHAR,
"age" DOUBLE,
"sibsp" BIGINT,
"parch" BIGINT,
"ticket" VARCHAR,
"fare" DOUBLE,
"cabin" VARCHAR,
"embarked" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE
);
Anyone who has the link will be able to view this.