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
//! Traits and utilities for link functions.
//!
//! The link function $`g`$ maps the expected response $`\mu`$ to the linear predictor
//! $`\omega = \mathbf{x}^\mathsf{T}\boldsymbol{\beta}`$. Each family defaults to its canonical
//! link, but an alternative can be selected via the family's type parameter.
//!
//! # Using a provided non-canonical link
//!
//! Alternative links are re-exported for convenience: [`exp_link`](crate::exp_link) for
//! exponential regression and [`logistic_link`](crate::logistic_link) for logistic regression.
//! Provide a link as the family's type parameter:
//!
//! ```
//! use ndarray_glm::{Exponential, ModelBuilder, array, exp_link::Log};
//!
//! fn main() -> ndarray_glm::error::RegressionResult<(), f64> {
//! let data_y = array![1.0, 2.5, 0.8, 3.1];
//! let data_x = array![[0.0], [1.0], [0.5], [1.5]];
//! // Use the log link instead of the default negative-reciprocal canonical link.
//! let model = ModelBuilder::<Exponential<Log>>::data(&data_y, &data_x).build()?;
//! let fit = model.fit()?;
//! Ok(())
//! }
//! ```
//!
//! # Implementing a custom non-canonical link
//!
//! A non-canonical link requires two trait implementations:
//!
//! 1. [`Link<M>`] — the forward map $`g(\mu) = \omega`$ ([`Link::func`]) and its inverse
//! $`g^{-1}(\omega) = \mu`$ ([`Link::func_inv`]).
//! 2. [`Transform`] — the natural-parameter transformation
//! $`\eta(\omega) = g_0(g^{-1}(\omega))`$ ([`Transform::nat_param`]) and its derivative
//! ([`Transform::d_nat_param`]), where $`g_0`$ is the family's canonical link. The derivative
//! satisfies $`\eta'(\omega) = \frac{1}{g'(\mu)\,V(\mu)}`$ where $`V(\mu)`$ is the family's
//! variance function evaluated at $`\mu = g^{-1}(\omega)`$.
//!
//! Example: a square-root link $`g(\mu) = \sqrt{\mu}`$ for Poisson regression. The canonical
//! link is $`\log`$ and $`V(\mu) = \mu`$, so
//! $`\eta(\omega) = \log(\omega^2) = 2\log\omega`$ and $`\eta'(\omega) = 2/\omega`$:
//!
//! ```
//! use ndarray_glm::{Poisson, link::{Link, Transform}, num::Float};
//! use ndarray::Array1;
//!
//! pub struct Sqrt;
//!
//! impl Link<Poisson<Sqrt>> for Sqrt {
//! fn func<F: Float>(mu: F) -> F { num_traits::Float::sqrt(mu) }
//! fn func_inv<F: Float>(omega: F) -> F { omega * omega }
//! }
//!
//! impl Transform for Sqrt {
//! fn nat_param<F: Float>(lin_pred: Array1<F>) -> Array1<F> {
//! lin_pred.mapv(|w| F::two() * num_traits::Float::ln(w))
//! }
//! fn d_nat_param<F: Float>(lin_pred: &Array1<F>) -> Array1<F> {
//! lin_pred.mapv(|w| F::two() / w)
//! }
//! }
//! ```
//!
//! # Consistency tests with `TestLink`
//!
//! The `TestLink` trait (available only in `#[cfg(test)]` builds) provides canned assertions
//! that every correct link implementation should satisfy. Call them from your test module:
//!
//! ```no_run
//! #[cfg(test)]
//! mod tests {
//! use super::*;
//! use ndarray_glm::link::TestLink;
//! use ndarray::array;
//!
//! #[test]
//! fn sqrt_link_checks() {
//! // Linear-predictor values; must lie in the domain of ω (ω > 0 for sqrt).
//! let lin_vals = array![0.25, 1.0, 2.0, 4.0, 9.0];
//!
//! // Verify g(g⁻¹(ω)) ≈ ω.
//! Sqrt::check_closure(&lin_vals);
//!
//! // Verify g⁻¹(g(μ)) ≈ μ; values must lie in the response domain (μ > 0 for Poisson).
//! Sqrt::check_closure_y(&array![0.5, 1.0, 3.0, 10.0]);
//!
//! // For non-canonical links: verify nat_param(ω) = g₀(g⁻¹(ω)).
//! // Pass the *canonical* model variant as `Mc`. `Poisson` without a type parameter
//! // defaults to the canonical log link.
//! use ndarray_glm::Poisson;
//! Sqrt::check_nat_par::<Poisson>(&lin_vals);
//!
//! // Verify d_nat_param matches the numerical derivative.
//! Sqrt::check_nat_par_d(&lin_vals);
//! }
//! }
//! ```
use crate::;
use Array1;
/// Describes the link function $`g`$ that maps between the expected response $`\mu`$ and
/// the linear predictor $`\omega = \mathbf{x}^\mathsf{T}\boldsymbol{\beta}`$:
///
/// ```math
/// g(\mu) = \omega, \qquad \mu = g^{-1}(\omega)
/// ```
/// Establishes the relationship between the linear predictor $`\omega =
/// \mathbf{x}\cdot\boldsymbol\beta`$ and the natural parameter $`\eta`$.
/// The canonical transformation by definition equates the linear predictor with
/// the natural parameter of the response distribution. Implementing this trait
/// for a link function automatically defines the trivial transformation
/// functions.
/// Implement some common testing methods that every link function should satisfy.