CoolFace
Datasetpublic

happyhackingspace/shipping-events-eu

Shipping Events EU Dataset Overview This dataset contains simulated yet realistic shipment tracking records from various European locations. It reflects common logistics patterns, including parcel movements, delivery statuses, geographic attributes, carriers, delivery attempts, region types, transit performance, and service-level indicators. It is designed to be suitable for machine learning, analytics, research, and operational benchmarking. The dataset structure… See the full description on the dataset page: https://huggingface.co/datasets/happyhackingspace/shipping-events-eu.

sourceHugging Facemitupdated 10mo agoView on Hugging Face
1likes17downloads
Dataset Card

Shipping Events EU Dataset

Overview

This dataset contains simulated yet realistic shipment tracking records from various European locations. It reflects common logistics patterns, including parcel movements, delivery statuses, geographic attributes, carriers, delivery attempts, region types, transit performance, and service-level indicators. It is designed to be suitable for machine learning, analytics, research, and operational benchmarking. The dataset structure is aligned with real-world logistics data models and includes temporal, geographic, categorical, and status event features.

Each row represents a shipment with key delivery and transit attributes.


Key Features

Column GroupDescription
Order InformationShipment ID, customer reference, carrier, service type
Location DetailsOrigin, destination, country, coordinates, region type
Time AttributesCreation date, transit timestamps, SLA windows
Status EventsDelivery status text, codes, exception flags
Performance FieldsTime in transit, attempts, cost, distance, delays

Example Columns

  • order_id
  • carrier
  • service_type
  • dest_city, dest_country
  • transit_time_hours
  • has_exception_flag
  • route_distance_km
  • shipping_cost
  • last_status_message

Usage

Load with Pandas

python
from datasets import load_dataset

ds = load_dataset("happyhackingspace/shipping-events-eu", split="train")
df = ds.to_pandas()
df.head()

Notes

  • Dataset is synthetic but modeled after realistic logistics structures.
  • Includes occasional missing values, minor inconsistencies, and noisy entries to mimic real operational data.
  • No personal or sensitive information is included.

License

This dataset is free to use for research, analysis, and educational purposes.

For feedback or contributions, please use the repository discussion page. ---