ilya-s000 commited on
Commit
387bd70
·
verified ·
1 Parent(s): ae9bf27

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +115 -3
README.md CHANGED
@@ -1,3 +1,115 @@
1
- ---
2
- license: cc
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Amazon US Orders
3
+ license: cc-by-4.0
4
+ language:
5
+ - en
6
+ task_categories:
7
+ - other
8
+ size_categories:
9
+ - 1K<n<10K
10
+ tags:
11
+ - tabular
12
+ - csv
13
+ - ecommerce
14
+ - orders
15
+ - amazon
16
+ - transactions
17
+ dataset_info:
18
+ features:
19
+ - name: user_id
20
+ dtype: string
21
+ - name: order_id
22
+ dtype: string
23
+ - name: asin
24
+ dtype: string
25
+ - name: product_name
26
+ dtype: string
27
+ - name: product_condition
28
+ dtype: string
29
+ - name: order_date
30
+ dtype: date32
31
+ - name: quantity
32
+ dtype: int64
33
+ - name: unit_price
34
+ dtype: float64
35
+ - name: unit_price_tax
36
+ dtype: float64
37
+ - name: currency
38
+ dtype: string
39
+ - name: total_amount
40
+ dtype: float64
41
+ - name: website
42
+ dtype: string
43
+ - name: shipping_city_country
44
+ dtype: string
45
+ configs:
46
+ - config_name: default
47
+ data_files:
48
+ - split: train
49
+ path: data/orders.csv
50
+ ---
51
+
52
+ This is a sample dataset. To access the full version or request any custom dataset tailored to your needs, contact DataHive at contact@datahive.ai.
53
+
54
+ # Amazon US Orders
55
+
56
+ ## Dataset Summary
57
+
58
+ A structured e-commerce order dataset built from real Amazon purchase histories voluntarily shared by users on the datahive platform. Each record represents a single order line item with full pricing breakdown (unit price, tax, discounts, shipping), fulfilment status, and shipping location.
59
+
60
+ The sample includes:
61
+
62
+ - **10 users**
63
+ - **1k order line items**
64
+ - Marketplace: Amazon.com
65
+
66
+
67
+ ### Dataset Description
68
+
69
+ - **Access:** Free sample dataset
70
+ - **Curated by:** https://datahive.ai
71
+ - **Language(s):** English
72
+ - **License:** Creative Commons Attribution 4.0 (CC BY 4.0)
73
+
74
+ ## Use Cases
75
+
76
+ - **E-commerce analytics**: basket analysis, spending patterns, seasonal trends
77
+ - **Price research**: cross-marketplace price comparison, tax structure analysis
78
+ - **Demand forecasting**: order frequency and product category modelling
79
+
80
+ ## Data Collection
81
+
82
+ Order data was exported directly from personal Amazon accounts by participating users who consented to share their purchase history.
83
+
84
+ ## Dataset Structure
85
+
86
+ ### Data Fields
87
+
88
+ | Column | Type | Description |
89
+ |---|---|---|
90
+ | `user_id` | string | User identifier |
91
+ | `order_id` | string | Order identifier |
92
+ | `asin` | string | Amazon Standard Identification Number |
93
+ | `product_name` | string | Full product title |
94
+ | `product_condition` | string | Item condition (e.g. New) |
95
+ | `order_date` | date | Date the order was placed |
96
+ | `quantity` | int | Number of units ordered |
97
+ | `unit_price` | float | Price per unit excluding tax (USD) |
98
+ | `unit_price_tax` | float | Tax per unit (USD) |
99
+ | `currency` | string | Currency code (USD) |
100
+ | `total_amount` | float | Total charged including tax (USD) |
101
+ | `website` | string | Amazon marketplace (Amazon.com) |
102
+ | `shipping_city_country` | string | Shipping destination city and country |
103
+
104
+ ### Data Splits
105
+
106
+ Single split containing all records. No train/test separation — this is a raw data export, not a benchmark.
107
+
108
+ ## Licensing Information
109
+
110
+ This dataset is released under the [Creative Commons Attribution 4.0 International (CC-BY-4.0)](https://creativecommons.org/licenses/by/4.0/) license.
111
+
112
+ ## Dataset Card Contact
113
+
114
+ contact@datahive.ai
115
+