Skip to content

Commit

Permalink
🎨 Add a toy dataset + demo schema (titanic 🚢)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borie, Niels authored and nielsborie committed Nov 21, 2023
1 parent e555e2d commit b415672
Show file tree
Hide file tree
Showing 3 changed files with 941 additions and 0 deletions.
48 changes: 48 additions & 0 deletions demo/titanic/schema.titanic.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"fields": {
"PassengerId": {
"type": "string",
"description": "feature1 is an integer field"
},
"Survived": {
"type": "boolean",
"description": "Survived (0 = No; 1 = Yes)"
},
"Pclass": {
"type": "string",
"description": "Passenger Class (1 = 1st; 2 = 2nd; 3 = 3rd)"
},
"Sex": {
"type": "string",
"description": "Sex"
},
"Age": {
"type": "integer",
"description": "Age"
},
"SibSp": {
"type": "integer",
"description": "Number of Siblings/Spouses Aboard"
},
"Parch": {
"type": "integer",
"description": "Number of Parents/Children Aboard"
},
"Ticket": {
"type": "string",
"description": "Ticket Number"
},
"Fare": {
"type": "double",
"description": "Passenger Fare (British pound)"
},
"Cabin": {
"type": "string",
"description": "Cabin"
},
"Embarked": {
"type": "string",
"description": "Port of Embarkation (C = Cherbourg; Q = Queenstown; S = Southampton)"
}
}
}
Loading

0 comments on commit b415672

Please sign in to comment.