We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee8fff commit 0291b43Copy full SHA for 0291b43
1 file changed
README.md
@@ -60,14 +60,24 @@ print(database_api.read_resume_files())
60
61
62
projection = Projection()
63
-non_required_columns = ["Name", "Ticket", "Cabin",
64
- "Embarked", "Sex", "Initial"]
+required_columns = [ "PassengerId",
+ "Pclass",
65
+ "Age",
66
+ "SibSp",
67
+ "Parch",
68
+ "Fare",
69
+ "Name",
70
+ "Sex",
71
+ "Embarked"]
72
print(projection.create("titanic_training",
73
"titanic_training_projection",
- non_required_columns))
74
+ required_columns))
75
+
76
+required_columns.remove("Survived")
77
78
print(projection.create("titanic_testing",
79
"titanic_testing_projection",
80
81
82
83
data_type_handler = DataTypeHandler()
0 commit comments