1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
//! Wholesale Customers dataset.
//!
//! Annual spending of 440 clients of a Portuguese wholesale distributor, across
//! six product categories, with the sales channel and the region of each client.
//! The dataset has **no target column**. The usual task is to cluster the
//! clients by their spending, then compare the clusters against the channel and
//! the region.
//!
//! **Columns (8):**
//!
//! | Name | Type | Description |
//! |--------------------|-----------|---------------------------------|
//! | `Channel` | `Numeric` | `1` = Horeca (hotel, restaurant, or cafe), `2` = Retail |
//! | `Region` | `Numeric` | `1` = Lisbon, `2` = Oporto, `3` = other |
//! | `Fresh` | `Numeric` | annual spending on fresh products |
//! | `Milk` | `Numeric` | annual spending on milk products |
//! | `Grocery` | `Numeric` | annual spending on grocery products |
//! | `Frozen` | `Numeric` | annual spending on frozen products |
//! | `Detergents_Paper` | `Numeric` | annual spending on detergents and paper |
//! | `Delicassen` | `Numeric` | annual spending on delicatessen products |
//!
//! `Channel` and `Region` are categorical codes, stored as `Numeric`. The other
//! six columns are the annual spending on that product category, in monetary
//! units. The source has no label column. The eight columns above are the
//! model inputs ([`WholesaleCustomers::COLUMN_NAMES`](crate::WholesaleCustomers::COLUMN_NAMES)).
//!
//! **Samples:** 440
//! **Application:** Clustering / customer segmentation
//!
//! **Missing values:** none.
//!
//! **Source:** UCI Machine Learning Repository
//! <https://doi.org/10.24432/C5030X>
use crateDOWNLOAD_RETRIES;
use crate;
use crateimpl_ml_dataset;
use ReaderBuilder;
use ;
use Array1;
use File;
/// The URL for the Wholesale Customers dataset.
///
/// # Citation
///
/// Cardoso, M. (2013). Wholesale customers \[Dataset\]. UCI Machine Learning
/// Repository. <https://doi.org/10.24432/C5030X>
const WHOLESALE_DATA_URL: &str = "https://archive.ics.uci.edu/ml/machine-learning-databases/00292/Wholesale%20customers%20data.csv";
/// The name of the cached Wholesale Customers dataset file.
const WHOLESALE_FILENAME: &str = "wholesale_customers.csv";
/// The SHA256 hash of the cached Wholesale Customers dataset file.
const WHOLESALE_SHA256: &str = "c3d018c643565b85cee733c4a2ac76dd76e080e857cb23f0ccfcc2e15a6c17ef";
/// The name of the dataset.
const WHOLESALE_DATASET_NAME: &str = "wholesale_customers";
/// Number of samples.
const N_SAMPLES: usize = 440;
/// Number of feature columns.
const N_FEATURES: usize = 8;
/// A struct that represents the Wholesale Customers dataset with lazy loading.
///
/// The dataset loads only when you call a data accessor method. After the first
/// load, the dataset caches the data for later accesses.
///
/// # About Dataset
///
/// The Wholesale Customers dataset records the annual spending of 440 clients of
/// a wholesale distributor in Portugal, across six product categories. It also
/// records the sales channel and the region of each client.
///
/// The dataset has **no target column**, so every column is a model input. The
/// usual task is to cluster the clients by their spending, then compare the
/// clusters against `Channel` and `Region`.
///
/// # Columns
///
/// | Name | Type | Description |
/// |--------------------|-----------|---------------------------------|
/// | `Channel` | `Numeric` | `1` = Horeca (hotel, restaurant, or cafe), `2` = Retail |
/// | `Region` | `Numeric` | `1` = Lisbon, `2` = Oporto, `3` = other |
/// | `Fresh` | `Numeric` | annual spending on fresh products |
/// | `Milk` | `Numeric` | annual spending on milk products |
/// | `Grocery` | `Numeric` | annual spending on grocery products |
/// | `Frozen` | `Numeric` | annual spending on frozen products |
/// | `Detergents_Paper` | `Numeric` | annual spending on detergents and paper |
/// | `Delicassen` | `Numeric` | annual spending on delicatessen products |
///
/// [`WholesaleCustomers::COLUMN_NAMES`] holds these names in the same order.
///
/// The six spending columns hold monetary units. Every value is a whole number
/// in the source, and the loader stores all 8 columns as `Numeric`.
///
/// `Channel` and `Region` are categorical codes, not amounts. A distance-based
/// method reads them as numbers and treats `Region` `3` as three times `Region`
/// `1`. Cluster on the six spending columns, and keep the two codes to check the
/// result.
///
/// The six spending columns have a long right tail. `Fresh` runs from `3` to
/// `112,151` around a mean of `12,000`. Consider a log transform or
/// [`min_max_scale`](crate::preprocessing::min_max_scale) before a
/// distance-based method.
///
/// # Class balance of the two codes
///
/// | Code | Value | Clients |
/// |-----------|----------------|---------|
/// | `Channel` | `1` Horeca | 298 |
/// | `Channel` | `2` Retail | 142 |
/// | `Region` | `1` Lisbon | 77 |
/// | `Region` | `2` Oporto | 47 |
/// | `Region` | `3` other | 316 |
///
/// The UCI web page marks `Region` as the dataset's target. The published work
/// on this dataset clusters the clients instead, so this loader keeps `Region`
/// as a feature column and exposes no target.
///
/// Missing values: none. No field is empty.
///
/// See more information at <https://archive.ics.uci.edu/dataset/292/wholesale+customers>.
///
/// # Citation
///
/// Cardoso, M. (2013). Wholesale customers \[Dataset\]. UCI Machine Learning
/// Repository. <https://doi.org/10.24432/C5030X>
///
/// # Thread Safety
///
/// This struct implements `Send` and `Sync` automatically, because all fields
/// implement them. This makes the struct safe to share across threads. The
/// internal [`Dataset`] makes lazy initialization thread-safe.
///
/// # Example
/// ```no_run
/// use dataset_ml::WholesaleCustomers;
///
/// // the loader creates the directory if it does not exist
/// let download_dir = "./wholesale_customers";
///
/// let mut dataset = WholesaleCustomers::new(download_dir);
/// let table = dataset.data().unwrap();
///
/// assert_eq!(table.n_samples(), 440);
/// assert_eq!(table.n_columns(), 8);
///
/// // Ask for the feature matrix when you want it.
/// let features = table.numeric_matrix(&WholesaleCustomers::COLUMN_NAMES).unwrap();
/// assert_eq!(features.shape(), &[440, 8]);
///
/// // Reach one spending column by name.
/// let fresh = table.column("Fresh").unwrap().as_numeric().unwrap();
/// assert_eq!(fresh.len(), 440);
///
/// // `get_data_mut()` edits the table in place. This needs no clone and no
/// // reload. The change stays cached.
/// if let Some(table) = dataset.get_data_mut() {
/// if let Some(column) = table.column_mut("Fresh") {
/// if let dataset_ml::ColumnData::Numeric(values) = column.data_mut() {
/// values[0] = values[0].ln();
/// }
/// }
/// }
/// assert!(dataset.get_data().is_some());
///
/// // `take_data()` moves the owned table out with no clone. This leaves the
/// // instance reusable.
/// let owned = dataset.take_data().unwrap();
/// assert_eq!(owned.n_samples(), 440);
///
/// // `into_data()` also returns the owned table with no clone, but it consumes
/// // the instance.
/// let owned = dataset.into_data().unwrap();
/// assert_eq!(owned.n_samples(), 440);
/// ```
impl_ml_dataset!;