Datasets:
Update dataset card with column docs and cross-links
Browse files
README.md
CHANGED
|
@@ -18,7 +18,13 @@ size_categories:
|
|
| 18 |
|
| 19 |
Whisky bottle catalog, price history, and auction market statistics exported from [dramvalue.com](https://dramvalue.com).
|
| 20 |
|
| 21 |
-
**Last export:** 2026-08-20 17:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
## Files
|
| 24 |
|
|
@@ -28,19 +34,40 @@ Whisky bottle catalog, price history, and auction market statistics exported fro
|
|
| 28 |
| `dramvalue_prices.csv` | 1,351,454 | Individual price records (auction, retail, import) |
|
| 29 |
| `dramvalue_market_stats.csv` | 1,719 | Monthly auction house aggregates |
|
| 30 |
|
| 31 |
-
##
|
| 32 |
|
| 33 |
-
```
|
| 34 |
-
|
| 35 |
-
``
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
-
|
| 38 |
|
| 39 |
```bash
|
| 40 |
pip install huggingface_hub
|
| 41 |
huggingface-cli download datamatters24/dramvalue-whisky-prices --repo-type dataset --local-dir ./data/huggingface
|
| 42 |
```
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
## License
|
| 45 |
|
| 46 |
CC0 1.0 Universal (public domain dedication).
|
|
|
|
| 18 |
|
| 19 |
Whisky bottle catalog, price history, and auction market statistics exported from [dramvalue.com](https://dramvalue.com).
|
| 20 |
|
| 21 |
+
**Last export:** 2026-08-20 17:43 UTC
|
| 22 |
+
|
| 23 |
+
| | |
|
| 24 |
+
|---|---|
|
| 25 |
+
| Bottles | 30,324 |
|
| 26 |
+
| Price records | 1,351,454 |
|
| 27 |
+
| Market stat rows | 1,719 |
|
| 28 |
|
| 29 |
## Files
|
| 30 |
|
|
|
|
| 34 |
| `dramvalue_prices.csv` | 1,351,454 | Individual price records (auction, retail, import) |
|
| 35 |
| `dramvalue_market_stats.csv` | 1,719 | Monthly auction house aggregates |
|
| 36 |
|
| 37 |
+
### `dramvalue_bottles.csv`
|
| 38 |
|
| 39 |
+
Key columns: `id`, `name`, `distillery`, `brand`, `category`, `age_statement`, `proof`, `size_ml`, `price_count`, `avg_price`, `min_price`, `max_price`, `last_price`, `last_price_date`.
|
| 40 |
+
|
| 41 |
+
### `dramvalue_prices.csv`
|
| 42 |
+
|
| 43 |
+
Key columns: `price_id`, `bottle_id`, `bottle_name`, `price`, `currency`, `price_usd`, `source`, `source_name`, `auction_house`, `source_url`, `transaction_date`.
|
| 44 |
+
|
| 45 |
+
### `dramvalue_market_stats.csv`
|
| 46 |
+
|
| 47 |
+
Key columns: `auction_name`, `auction_slug`, `period_date`, `winning_bid_mean`, `trading_volume`, `lots_count`.
|
| 48 |
+
|
| 49 |
+
## Download
|
| 50 |
|
| 51 |
+
**Hugging Face:** [datamatters24/dramvalue-whisky-prices](https://huggingface.co/datasets/datamatters24/dramvalue-whisky-prices)
|
| 52 |
|
| 53 |
```bash
|
| 54 |
pip install huggingface_hub
|
| 55 |
huggingface-cli download datamatters24/dramvalue-whisky-prices --repo-type dataset --local-dir ./data/huggingface
|
| 56 |
```
|
| 57 |
|
| 58 |
+
**Kaggle:** [theodorerubin/dramvalue-whisky-prices](https://www.kaggle.com/datasets/theodorerubin/dramvalue-whisky-prices)
|
| 59 |
+
|
| 60 |
+
```bash
|
| 61 |
+
pip install kaggle
|
| 62 |
+
kaggle datasets download -d theodorerubin/dramvalue-whisky-prices -p ./data/kaggle --unzip
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
One-liner (Hugging Face):
|
| 66 |
+
|
| 67 |
+
```bash
|
| 68 |
+
curl -fsSL https://raw.githubusercontent.com/tedrubin80/dramvalue/main/scripts/install_huggingface_dataset.sh | bash
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
## License
|
| 72 |
|
| 73 |
CC0 1.0 Universal (public domain dedication).
|