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
//! Linnerud dataset (scikit-learn `load_linnerud`).
//!
//! Dr. A. C. Linnerud collected this small multi-output regression dataset at
//! North Carolina State University. He measured three exercise variables and
//! three physiological variables on 20 middle-aged men in a fitness club. The
//! task is to predict the three physiological measurements from the three
//! exercise measurements (multi-output regression).
//!
//! This loader reproduces scikit-learn's `load_linnerud()` output. Scikit-learn
//! distributes the two underlying files: the whitespace-separated
//! `linnerud_exercise.csv` and `linnerud_physiological.csv`.
//!
//! **Columns (6):** in scikit-learn column order
//!
//! | Name | Type | Description |
//! |----------|-----------|-------------------------|
//! | `Chins` | `Numeric` | number of chin-ups |
//! | `Situps` | `Numeric` | number of sit-ups |
//! | `Jumps` | `Numeric` | number of jumping jacks |
//! | `Weight` | `Numeric` | body weight |
//! | `Waist` | `Numeric` | waist circumference |
//! | `Pulse` | `Numeric` | resting pulse |
//!
//! The source designates the three exercise measurements as the inputs
//! ([`Linnerud::FEATURE_NAMES`](crate::Linnerud::FEATURE_NAMES)) and the three physiological measurements as
//! the labels ([`Linnerud::TARGET_NAMES`](crate::Linnerud::TARGET_NAMES)).
//!
//! **Samples:** 20
//! **Application:** Multi-output regression / fitness modeling
//!
//! **Source:** Tenenhaus, M. (1998), *La régression PLS: théorie et pratique*,
//! Paris: Editions Technip. Distributed with scikit-learn as
//! `linnerud_exercise.csv` and `linnerud_physiological.csv`.
use crateDOWNLOAD_RETRIES;
use crate;
use crateimpl_ml_dataset;
use ;
use Array1;
use Path;
/// The URL for the Linnerud exercise (feature) file that scikit-learn distributes.
const LINNERUD_EXERCISE_URL: &str = "https://raw.githubusercontent.com/scikit-learn/scikit-learn/main/sklearn/datasets/data/linnerud_exercise.csv";
/// The URL for the Linnerud physiological (target) file that scikit-learn distributes.
const LINNERUD_PHYSIOLOGICAL_URL: &str = "https://raw.githubusercontent.com/scikit-learn/scikit-learn/main/sklearn/datasets/data/linnerud_physiological.csv";
/// The cache filename for the Linnerud exercise (feature) file.
const LINNERUD_EXERCISE_FILENAME: &str = "linnerud_exercise.csv";
/// The cache filename for the Linnerud physiological (target) file.
const LINNERUD_PHYSIOLOGICAL_FILENAME: &str = "linnerud_physiological.csv";
/// The SHA256 hash of the Linnerud exercise (feature) file.
const LINNERUD_EXERCISE_SHA256: &str =
"cb8d8c24937643fa2459682efb86c5e667bcd6dd93109eef81964d9e9f11bf8c";
/// The SHA256 hash of the Linnerud physiological (target) file.
const LINNERUD_PHYSIOLOGICAL_SHA256: &str =
"2bf7e05c1cd7d0adf0eca1e456941f624bed0a4fc96694d60d0ff7853ec5fcf7";
/// The name of the dataset.
const LINNERUD_DATASET_NAME: &str = "linnerud";
/// The number of columns in each of the two files (exercise: 3, physiological: 3).
const N_COLUMNS: usize = 3;
/// Parse one of the Linnerud whitespace-separated files into named columns.
///
/// The files have a single header row (column names) followed by 20 data rows,
/// each holding exactly [`N_COLUMNS`] whitespace-separated numeric values. The
/// function skips the header and splits every data row on arbitrary whitespace.
///
/// # Parameters
///
/// - `file_path` - The file to read.
/// - `array_name` - The name this file carries in error messages.
/// - `names` - The column names, in file column order.
/// A struct that represents the Linnerud 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 Linnerud dataset records three exercise variables and three physiological
/// variables, measured on 20 middle-aged men in a fitness club. This loader
/// reproduces scikit-learn's `load_linnerud()` output. Three target columns
/// make this a multi-output regression task.
///
/// # Columns
///
/// | Name | Type | Description |
/// |----------|-----------|-------------------------|
/// | `Chins` | `Numeric` | number of chin-ups |
/// | `Situps` | `Numeric` | number of sit-ups |
/// | `Jumps` | `Numeric` | number of jumping jacks |
/// | `Weight` | `Numeric` | body weight |
/// | `Waist` | `Numeric` | waist circumference |
/// | `Pulse` | `Numeric` | resting pulse |
///
/// The source designates the three exercise measurements as the inputs
/// ([`Linnerud::FEATURE_NAMES`]) and the three physiological measurements as
/// the labels ([`Linnerud::TARGET_NAMES`]).
///
/// See more information at <https://scikit-learn.org/stable/datasets/toy_dataset.html#linnerrud-dataset>
///
/// # Citation
///
/// M. Tenenhaus, *La régression PLS: théorie et pratique*. Paris: Editions
/// Technip, 1998. Distributed with scikit-learn as `linnerud_exercise.csv` and
/// `linnerud_physiological.csv`.
///
/// # 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::Linnerud;
///
/// // the loader creates the directory if it does not exist
/// let download_dir = "./linnerud";
///
/// let mut dataset = Linnerud::new(download_dir);
/// let table = dataset.data().unwrap();
///
/// assert_eq!(table.n_samples(), 20);
/// assert_eq!(table.n_columns(), 6);
///
/// // Ask for the feature matrix when you want it.
/// let features = table.numeric_matrix(&Linnerud::FEATURE_NAMES).unwrap();
/// assert_eq!(features.shape(), &[20, 3]);
///
/// // The three target columns form the multi-output target matrix.
/// let targets = table.numeric_matrix(&Linnerud::TARGET_NAMES).unwrap();
/// assert_eq!(targets.shape(), &[20, 3]);
///
/// // Reach one column by name.
/// let weight = table.column("Weight").unwrap().as_numeric().unwrap();
/// assert_eq!(weight.len(), 20);
///
/// // `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("Chins") {
/// if let dataset_ml::ColumnData::Numeric(values) = column.data_mut() {
/// values[0] = 6.0;
/// }
/// }
/// }
/// 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(), 20);
///
/// // `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(), 20);
/// ```
impl_ml_dataset!;