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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
//! # Data Structures for Formula Metadata
//!
//! This module defines the data structures used to represent the parsed formula metadata.
//! The structures are designed to be serializable to JSON and provide comprehensive
//! information about variables, their roles, transformations, and relationships.
//!
//! ## Overview
//!
//! The metadata structure is variable-centric, meaning each variable is a first-class
//! citizen with detailed information about its role in the model. This approach makes
//! it easy to understand the complete model structure and generate appropriate design matrices.
//!
//! ## Key Concepts
//!
//! - **Variable Roles**: Each variable can have multiple roles (Response, FixedEffect, etc.)
//! - **Transformations**: Functions applied to variables that generate new columns
//! - **Interactions**: Relationships between variables in fixed or random effects
//! - **Random Effects**: Information about grouping structures and correlation patterns
//! - **Generated Columns**: All columns that will be created for the model
//!
//! ## Example Output Structure
//!
//! ```json
//! {
//! "formula": "y ~ x + poly(x, 2) + (1 | group), family = gaussian",
//! "metadata": {
//! "has_intercept": true,
//! "is_random_effects_model": true,
//! "has_uncorrelated_slopes_and_intercepts": false,
//! "family": "gaussian"
//! },
//! "all_generated_columns": ["y", "x", "x_poly_1", "x_poly_2", "group"],
//! "columns": {
//! "y": {
//! "id": 1,
//! "roles": ["Response"],
//! "generated_columns": ["y"],
//! "transformations": [],
//! "interactions": [],
//! "random_effects": []
//! }
//! }
//! }
//! ```
use ;
use HashMap;
/// Roles that variables can play in a statistical model
///
/// Variables can have multiple roles, allowing for complex model specifications
/// where a variable might be both a fixed effect and have random effects.
///
/// # Examples
///
/// ```rust
/// use fiasto::internal::data_structures::VariableRole;
///
/// // Response variable
/// let response = VariableRole::Response;
///
/// // Fixed effect predictor
/// let fixed = VariableRole::FixedEffect;
///
/// // Variable with random effects
/// let random = VariableRole::RandomEffect;
///
/// // Grouping variable for random effects
/// let grouping = VariableRole::GroupingVariable;
/// ```
/// A transformation applied to a variable
///
/// Transformations represent functions that are applied to variables to create
/// new columns for the model. Each transformation specifies the function name,
/// its parameters, and the columns it generates.
///
/// # Examples
///
/// ```rust
/// use fiasto::internal::data_structures::Transformation;
/// use serde_json::json;
///
/// // Polynomial transformation: poly(x, 3)
/// let poly_transform = Transformation {
/// function: "poly".to_string(),
/// parameters: json!({
/// "degree": 3,
/// "orthogonal": true
/// }),
/// generates_columns: vec!["x_poly_1".to_string(), "x_poly_2".to_string(), "x_poly_3".to_string()]
/// };
///
/// // Logarithm transformation: log(y)
/// let log_transform = Transformation {
/// function: "log".to_string(),
/// parameters: json!({}),
/// generates_columns: vec!["y_log".to_string()]
/// };
///
/// // Scaling transformation: scale(z)
/// let scale_transform = Transformation {
/// function: "scale".to_string(),
/// parameters: json!({
/// "center": true,
/// "scale": true
/// }),
/// generates_columns: vec!["z_scaled".to_string()]
/// };
/// ```
/// An interaction between variables
///
/// Interactions represent relationships between variables in either fixed effects
/// or random effects contexts. They specify which variables interact and provide
/// context about the interaction.
///
/// # Examples
///
/// ```rust
/// use fiasto::internal::data_structures::Interaction;
///
/// // Fixed effects interaction: x:z
/// let fixed_interaction = Interaction {
/// with: vec!["z".to_string()],
/// order: 2,
/// context: "fixed_effects".to_string(),
/// grouping_variable: None
/// };
///
/// // Random effects interaction: (x:z | group)
/// let random_interaction = Interaction {
/// with: vec!["z".to_string()],
/// order: 2,
/// context: "random_effects".to_string(),
/// grouping_variable: Some("group".to_string())
/// };
/// ```
/// Information about random effects for a variable
///
/// Random effects information describes how a variable participates in random effects
/// structures, including the type of random effect and grouping information.
///
/// # Examples
///
/// ```rust
/// use fiasto::internal::data_structures::RandomEffectInfo;
///
/// // Random intercept: (1 | group)
/// let random_intercept = RandomEffectInfo {
/// kind: "grouping".to_string(),
/// grouping_variable: "group".to_string(),
/// has_intercept: true,
/// correlated: true,
/// includes_interactions: vec![],
/// variables: Some(vec![])
/// };
///
/// // Random slope: (x | group)
/// let random_slope = RandomEffectInfo {
/// kind: "slope".to_string(),
/// grouping_variable: "group".to_string(),
/// has_intercept: false,
/// correlated: true,
/// includes_interactions: vec![],
/// variables: None
/// };
/// ```
/// Complete information about a variable in the model
///
/// VariableInfo provides comprehensive information about each variable in the model,
/// including its roles, transformations, interactions, and random effects.
///
/// # Examples
///
/// ```rust
/// use fiasto::internal::data_structures::{VariableInfo, VariableRole, Transformation, Interaction, RandomEffectInfo};
/// use serde_json::json;
///
/// // Response variable
/// let response_var = VariableInfo {
/// id: 1,
/// roles: vec![VariableRole::Response],
/// transformations: vec![],
/// interactions: vec![],
/// random_effects: vec![],
/// generated_columns: vec!["y".to_string()]
/// };
///
/// // Variable with transformation and random effects
/// let complex_var = VariableInfo {
/// id: 2,
/// roles: vec![VariableRole::FixedEffect, VariableRole::RandomEffect],
/// transformations: vec![Transformation {
/// function: "poly".to_string(),
/// parameters: json!({"degree": 2}),
/// generates_columns: vec!["x_poly_1".to_string(), "x_poly_2".to_string()]
/// }],
/// interactions: vec![Interaction {
/// with: vec!["z".to_string()],
/// order: 2,
/// context: "fixed_effects".to_string(),
/// grouping_variable: None
/// }],
/// random_effects: vec![RandomEffectInfo {
/// kind: "slope".to_string(),
/// grouping_variable: "group".to_string(),
/// has_intercept: false,
/// correlated: true,
/// includes_interactions: vec![],
/// variables: None
/// }],
/// generated_columns: vec!["x_poly_1".to_string(), "x_poly_2".to_string()]
/// };
/// ```
/// Metadata about the overall formula
///
/// FormulaMetadataInfo provides high-level information about the formula structure,
/// including whether it has an intercept, uses random effects, and specifies a family.
///
/// # Examples
///
/// ```rust
/// use fiasto::internal::data_structures::FormulaMetadataInfo;
///
/// // Simple linear model
/// let linear_meta = FormulaMetadataInfo {
/// has_intercept: true,
/// is_random_effects_model: false,
/// has_uncorrelated_slopes_and_intercepts: false,
/// family: Some("gaussian".to_string())
/// };
///
/// // Mixed effects model with uncorrelated effects
/// let mixed_meta = FormulaMetadataInfo {
/// has_intercept: true,
/// is_random_effects_model: true,
/// has_uncorrelated_slopes_and_intercepts: true,
/// family: Some("gaussian".to_string())
/// };
/// ```
/// Complete formula metadata structure
///
/// FormulaMetaData is the top-level structure that contains all information
/// about a parsed statistical formula. It provides both the original formula
/// and comprehensive metadata about all variables and their relationships.
///
/// # Examples
///
/// ```rust
/// use fiasto::internal::data_structures::{FormulaMetaData, FormulaMetadataInfo, VariableInfo, VariableRole};
/// use std::collections::HashMap;
///
/// let mut columns = HashMap::new();
/// columns.insert("y".to_string(), VariableInfo {
/// id: 1,
/// roles: vec![VariableRole::Response],
/// transformations: vec![],
/// interactions: vec![],
/// random_effects: vec![],
/// generated_columns: vec!["y".to_string()]
/// });
///
/// let metadata = FormulaMetaData {
/// formula: "y ~ x + (1 | group), family = gaussian".to_string(),
/// metadata: FormulaMetadataInfo {
/// has_intercept: true,
/// is_random_effects_model: true,
/// has_uncorrelated_slopes_and_intercepts: false,
/// family: Some("gaussian".to_string())
/// },
/// columns,
/// all_generated_columns: vec!["y".to_string(), "x".to_string(), "group".to_string()]
/// };
/// ```
// Legacy structures for backward compatibility
// These structures are maintained for compatibility with older versions
// but are not used in the current variable-centric approach.
/// Legacy structure for column names (deprecated)
///
/// This structure was used in the old effect-centric metadata format.
/// It is maintained for backward compatibility but should not be used
/// in new code. Use `VariableInfo` instead.
/// Legacy structure for transformations (deprecated)
///
/// This structure was used in the old effect-centric metadata format.
/// It is maintained for backward compatibility but should not be used
/// in new code. Use `Transformation` within `VariableInfo` instead.
/// Legacy structure for suggested column names (deprecated)
///
/// This structure was used in the old effect-centric metadata format.
/// It is maintained for backward compatibility but should not be used
/// in new code. Use `generated_columns` within `VariableInfo` instead.