-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 Add a toy dataset + demo schema (titanic 🚢)
- Loading branch information
1 parent
e555e2d
commit b415672
Showing
3 changed files
with
941 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" | ||
} | ||
} | ||
} |
Oops, something went wrong.