Titanic With Names Replaced By Honorifics
@kaggle.pietromaldini1_titanic_with_names_replaced_by_honorifics
@kaggle.pietromaldini1_titanic_with_names_replaced_by_honorifics
CREATE TABLE test (
"passengerid" BIGINT,
"pclass" BIGINT,
"sex" VARCHAR,
"age" DOUBLE,
"sibsp" BIGINT,
"parch" BIGINT,
"ticket" VARCHAR,
"fare" DOUBLE,
"embarked" VARCHAR,
"honorific" VARCHAR,
"cabin_code" VARCHAR,
"cabin_amount" BIGINT,
"missing_age" BIGINT
);
CREATE TABLE train (
"passengerid" BIGINT,
"survived" BIGINT,
"pclass" BIGINT,
"sex" VARCHAR,
"age" DOUBLE,
"sibsp" BIGINT,
"parch" BIGINT,
"ticket" VARCHAR,
"fare" DOUBLE,
"embarked" VARCHAR,
"honorific" VARCHAR,
"cabin_code" VARCHAR,
"cabin_amount" BIGINT,
"missing_age" BIGINT
);
Anyone who has the link will be able to view this.