Preprocessing-2 Of Titanic Dataset
Applied PCA to Preprocessing-1 of Titanic Dataset
@kaggle.spektrum_preprocessing2_of_titanic_dataset
Applied PCA to Preprocessing-1 of Titanic Dataset
@kaggle.spektrum_preprocessing2_of_titanic_dataset
PCA was performed on Preprocessing-1 of Titanic Dataset and this Dataset correspond to the projection of 8 of the features.
Dataset corresponding Kernel : https://www.kaggle.com/spektrum/intro-pca-kmeans-and-t-sne-on-titanic-dataset
CREATE TABLE preproc3_test_pca (
"n_0" DOUBLE -- 0,
"n_1" DOUBLE -- 1,
"n_2" DOUBLE -- 2,
"n_3" DOUBLE -- 3,
"n_4" DOUBLE -- 4,
"n_5" DOUBLE -- 5,
"n_6" DOUBLE -- 6,
"n_7" DOUBLE -- 7,
"passengerid" BIGINT
);
CREATE TABLE preproc3_train_pca (
"n_0" DOUBLE -- 0,
"n_1" DOUBLE -- 1,
"n_2" DOUBLE -- 2,
"n_3" DOUBLE -- 3,
"n_4" DOUBLE -- 4,
"n_5" DOUBLE -- 5,
"n_6" DOUBLE -- 6,
"n_7" DOUBLE -- 7,
"survived" BIGINT,
"passengerid" BIGINT
);
Anyone who has the link will be able to view this.