Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
+
- tabular-classification
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- synthetic-data
|
| 10 |
+
- web-analytics
|
| 11 |
+
- event-stream
|
| 12 |
+
- clickstream
|
| 13 |
+
- time-series
|
| 14 |
+
size_categories:
|
| 15 |
+
- 10M<n<100M
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# FreeSyntheticWebEvents50M
|
| 19 |
+
|
| 20 |
+
A free dataset of 50 million fully synthetic web analytics events, built for developers and researchers who need realistic clickstream and event-stream data at scale — for testing analytics pipelines, funnel and conversion analysis, session-based recommendation, anomaly detection, or time-series and streaming tooling. No real people, sessions, or sites are represented in this data.
|
| 21 |
+
|
| 22 |
+
## Schema
|
| 23 |
+
|
| 24 |
+
| Column | Type | Description |
|
| 25 |
+
|---|---|---|
|
| 26 |
+
| event_id | string | Unique event identifier |
|
| 27 |
+
| session_id | string | Synthetic session identifier |
|
| 28 |
+
| user_id | string | Synthetic user identifier |
|
| 29 |
+
| event_type | string | Event type (page_view, click, add_to_cart, purchase, etc.) |
|
| 30 |
+
| page_url | string | Page path the event occurred on |
|
| 31 |
+
| device_type | string | mobile, desktop, or tablet |
|
| 32 |
+
| event_timestamp | string | Event time (YYYY-MM-DD HH:MM:SS) |
|
| 33 |
+
| session_duration_sec | int | Session duration in seconds, skewed |
|
| 34 |
+
|
| 35 |
+
## Format
|
| 36 |
+
|
| 37 |
+
Single Parquet file, Snappy compression, ~1.6 GB, 50,000,000 rows.
|
| 38 |
+
|
| 39 |
+
## Quick Start
|
| 40 |
+
|
| 41 |
+
**pandas**
|
| 42 |
+
```python
|
| 43 |
+
import pandas as pd
|
| 44 |
+
df = pd.read_parquet("events_50M.parquet")
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
**datasets**
|
| 48 |
+
```python
|
| 49 |
+
from datasets import load_dataset
|
| 50 |
+
ds = load_dataset("ziadatalabs/FreeSyntheticWebEvents50M")
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
**duckdb**
|
| 54 |
+
```python
|
| 55 |
+
import duckdb
|
| 56 |
+
duckdb.sql("SELECT * FROM 'events_50M.parquet' LIMIT 10").show()
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Notes
|
| 60 |
+
|
| 61 |
+
Event timestamps follow realistic temporal patterns — busier during daytime and weekdays, sparse overnight — rather than uniform-random times, so the data is usable for time-series and anomaly-detection work. Event types follow a realistic funnel (frequent page views and clicks, rare purchases), and device split reflects typical web traffic. All entirely synthetic.
|
| 62 |
+
|
| 63 |
+
## License & Usage
|
| 64 |
+
|
| 65 |
+
Released under CC BY-NC 4.0 — personal, research, and educational use permitted, attribution required, no commercial use.
|
| 66 |
+
|
| 67 |
+
---
|
| 68 |
+
|
| 69 |
+
Created by Zia Data Labs. Questions or feedback: zia.data.team@protonmail.com
|