Titanic Time Travel Voyage
Unveiling the Extraordinary Journeys of Adventurers Across Eras and Destinations
@kaggle.joebeachcapital_titanic_time_travel_voyage
Unveiling the Extraordinary Journeys of Adventurers Across Eras and Destinations
@kaggle.joebeachcapital_titanic_time_travel_voyage
Updated dataset to version v2, as of july 25, 2024.
Inspired by the Spaceship Titanic dataset and competition, this is a fictional and synthetically generated dataset.
Can you predict if a time traveler will return to present time or not?
Updated the dataset to v2. Code showing how the data was generated is available in this Notebook. Let me know what you think and how it can be improved.
| Feature | Description | Type | Values |
|---|---|---|---|
| PassengerId | Unique identifier for each passenger. | Integer | - |
| TimePeriod | The time period in which the travel occurs. | Categorical | Past, Future |
| Destination | The destination of the travel. | Categorical | Ancient Rome, Medieval Europe, Jurassic World, Future Mars, Future Tokyo |
| Purpose | The purpose of the travel. | Categorical | Research, Tourism, History Modification |
| Age | Age of the passenger. | Integer | - |
| Gender | Gender of the passenger. | Categorical | Male, Female |
| TicketClass | Class of the travel ticket. | Integer | 1, 2, 3 |
| Fare | Fare paid for the ticket. | Float | - |
| Return | Indicates if the passenger returned from the travel. | Categorical | Yes, No |
| ExplorationRating | Rating of the exploration experience. | Float | - |
| PassengerType | Type of the passenger. | Categorical | Explorer, Tourist, Scientist |
CREATE TABLE test (
"passengerid" BIGINT,
"timeperiod" VARCHAR,
"destination" VARCHAR,
"purpose" VARCHAR,
"age" BIGINT,
"gender" VARCHAR,
"ticketclass" BIGINT,
"fare" DOUBLE,
"return" VARCHAR,
"explorationrating" DOUBLE,
"passengertype" VARCHAR,
"preferredtransport" VARCHAR,
"temporalimpact" DOUBLE,
"name" VARCHAR
);CREATE TABLE train (
"passengerid" BIGINT,
"timeperiod" VARCHAR,
"destination" VARCHAR,
"purpose" VARCHAR,
"age" BIGINT,
"gender" VARCHAR,
"ticketclass" BIGINT,
"fare" DOUBLE,
"return" VARCHAR,
"explorationrating" DOUBLE,
"passengertype" VARCHAR,
"preferredtransport" VARCHAR,
"temporalimpact" DOUBLE,
"name" VARCHAR
);Anyone who has the link will be able to view this.