Skip to content

Instantly share code, notes, and snippets.

@AbhiOnGithub
Created July 28, 2018 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhiOnGithub/bc19ad064f41f29bd14cac5e674bfbe5 to your computer and use it in GitHub Desktop.
Save AbhiOnGithub/bc19ad064f41f29bd14cac5e674bfbe5 to your computer and use it in GitHub Desktop.
TestTitanicData.cs
public class TestTitanicData
{
public static readonly TitanicData Passenger = new TitanicData()
{
Pclass = 2,
Name = "Shelley, Mrs. William (Imanita Parrish Hall)",
Sex = "female",
Age = 25,
SibSp = 0,
Parch = 1,
Ticket = "230433",
Fare = "26",
Cabin = "",
Embarked = "S"
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment