REVIEW 3 major objections 5 minor 234 references
Exact GLR changepoint detection is now fast enough to run online
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-01 11:10 UTC pith:MTVFGRNR
load-bearing objection A solid, useful software paper for the focus changepoint family; the abstract's unconditional 'exact, without approximations' claim is too broad because the high-dimensional projection mode is approximate. the 3 major comments →
focus and focus-cpt: Fast Online Changepoint Detection in R and Python
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper establishes that the GLR statistic for a single changepoint can be maintained exactly in an online fashion by exploiting a convex-hull geometry: each candidate changepoint τ is mapped to a point P(τ) = (τ, Σ_{t≤τ} T(y_t)) in dimension d+1, and the log-likelihood difference for a change at τ is a scalar product of P(τ) with a model-dependent vector. Proposition 1 shows that if P(τ′) lies in the interior of the convex hull of all candidate points, then τ′ can never be the maximiser for any pre- and post-change parameters and can be permanently discarded. Hence the active candidate set is contained in the hull vertices, whose expected size grows only as O(log(n)^d). The package implem
What carries the argument
The key object is the geometric map from changepoint candidates to points P(τ) = (τ, cumulative sufficient statistics) in R^{d+1}, together with the convex hull of those points. The log-likelihood of a change at τ is the scalar product of P(τ) with a model-dependent vector ψ(θ0, θ1), so the argmax over τ is exactly the support point of the hull in the direction ψ. Pruning candidates that lie in the interior of the hull removes all points that cannot win, and the number of hull vertices bounds the per-iteration cost. This geometry is what carries the exactness and the logarithmic complexity claim.
Load-bearing premise
The claimed logarithmic per-iteration cost rests on the expected number of convex-hull vertices growing only as log(n)^d, and on the pruning rule correctly discarding every candidate whose point lies in the interior of the hull; if a stream produces a hull with linearly many vertices, or if the projection shortcut in high dimensions drops a vertex that carries the true change, the speed or exactness is lost.
What would settle it
Run the univariate detector on a deterministically convex sequence (e.g., y_t = exp(t)) and count the number of active candidates after each update; if the count grows linearly or per-step wall-clock time grows linearly, the log-cost claim is false for that stream. Separately, compare the full-hull and projection-based statistics on a high-dimensional stream with a change confined to dimensions not covered by the chosen projections; a large discrepancy in the statistic or a missed detection would show the approximation sacrifices exactness.
If this is right
- Real-time monitoring of counts, means, variances, and other exponential-family streams can now use exact GLR statistics at each time step instead of approximations, at logarithmic per-observation cost.
- Offline threshold calibration becomes practical: focus_offline computes full statistic traces in one pass, enabling Monte Carlo-based false-positive-rate thresholds without rerunning the algorithm for every threshold.
- Because R and Python share the same C++ backend, results are identical across interfaces, which reduces replication risk and makes the package a reliable common tool for practitioners.
- For high-dimensional streams, the projection-based hull approximation offers a large speedup at the cost of a small difference in the statistic, as illustrated by the paper's comparison on six-dimensional data.
- The AR(p) detector accounts for the transient residual behaviour after a change, preserving detection power near the end of the stream where naive pre-whitening would lose it.
Where Pith is reading between the lines
- The convex-hull pruning insight is not limited to GLR: any sequential test whose statistic is a maximum of linear functions over candidates could reuse the same hull maintenance to update its argmax exactly in sublinear time.
- The projection-based approximation for high dimensions may miss changes whose signal is concentrated entirely in dimensions not jointly projected; the exposed dim_indexes argument turns this into a modelling choice, but the paper does not quantify worst-case power loss.
- The lambda weighting mechanism generalises the detector to covariate-scaled rates (e.g., Poisson data with time-varying background), which suggests the same geometric pruning could support non-stationary exposure models without algorithmic change.
- If a stream's convex hull grows linearly rather than logarithmically, the speed guarantee would degrade gracefully but not hold; a window-limited fallback or a size cap on the candidate set would be a natural robustness extension.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper describes an R and Python package (focus / focus-cpt) implementing the focus family of online changepoint detectors. The core algorithmic idea, imported from previous work by the same group, is to reduce the set of candidate changepoints to geometric extreme points of a data-dependent convex hull, so that the generalized likelihood ratio statistic can be evaluated exactly at a claimed per-iteration cost of roughly log(n)^d for a d-dimensional stream. The package covers one-parameter exponential family models (Gaussian, Poisson, Binomial, Exponential, Gamma), a nonparametric eCDF-based detector, and a detector for autoregressive data, and it provides both online and offline interfaces backed by a shared C++ implementation. The manuscript gives an algorithmic overview, a detailed interface description, and several simulated and real-data examples. The central advertised contribution is that the implementation delivers exact GLR statistics without approximations while remaining fast enough for real-time use.
Significance. If the claims are properly qualified, this is a useful software contribution: it unifies several methodological papers into one maintained package with R and Python interfaces, a shared C++ backend, and reproducible example code on GitHub. The package is available on CRAN and PyPI, which is a concrete strength. However, the headline exactness claim is currently overstated: the body of the paper explicitly introduces an approximate high-dimensional mode that does not compute the full exact GLR statistic. The complexity guarantee is also stated inconsistently and is inherited from an expected-size result rather than established here. These issues are fixable, but they affect the central claims of the paper and should be addressed before publication.
major comments (3)
- [Abstract; Section 2.3; Section 4.2] The abstract and Section 1 state that focus computes the GLR statistic 'exactly, without introducing approximations' at O(log(n)^d) cost. Section 2.3, however, introduces for d>5 a projection-based mode: data are projected onto overlapping subsets of d-tilde <= 5 coordinates, hulls are computed in each projection, and the union of the lower-dimensional hull vertices is used as the candidate set. A vertex of the full (d+1)-dimensional hull whose supporting hyperplane uses all coordinates need not be a vertex of any projection, so this candidate set can miss the GLR maximizer. Section 4.2 confirms the issue: all.equal reports a mean relative difference of 0.003782673 between the full-hull and projection-based statistics. Exactness therefore holds only for the full-hull mode; the abstract's unconditional 'without introducing approximations' claim is not supported as written and should be qu
- [Section 2.3; Section 1] The paper advertises two incompatible complexity statements. The abstract and Section 1 say the per-iteration cost is approximately log(n)^d, while Section 2.3 says the univariate pruning is amortised O(1); for d=1 these differ by a factor of log n. More importantly, the O(log(n)^d) growth is cited from Corollary 1 of Pishchagina et al. (2025) as an expected hull-size result, but the present paper gives no statement of the conditions under which this expectation holds. Because real-time performance is central to the paper's motivation, either reproduce the relevant bound with its assumptions or clearly state that the efficiency guarantee is inherited and is expected/average-case rather than worst-case.
- [Section 2.2, Proposition 1] Proposition 1 prunes only points in the interior of the convex hull, yet the text immediately concludes that D_n is contained in the set of hull vertices. This inference is not immediate: a point on a facet of the hull but not a vertex is not interior, and it can be an argmax of <P(tau), psi> only when the same maximum value is also attained by a hull vertex. To support the stated exactness for general exponential-family models, the paper should either prove that omitting boundary non-vertices cannot change the value of max_tau q_tau, or specify that the algorithm retains such points or resolves ties in a way that preserves the maximum. As written, the proposition alone does not establish the claimed reduction to vertices.
minor comments (5)
- [Section 1] Typo: 'unvariate' should be 'univariate'.
- [Section 4.1] Only 500 Monte Carlo replications are used to estimate a 99th percentile threshold. This gives a noisy estimate; please report a standard error or use more replications.
- [Section 4.2] The text says the projection-based approximation produces 'extremely similar results' despite a reported mean relative difference of 0.0038. Please quantify this more carefully, e.g., with the maximum relative difference and the effect on detection times, since the difference is exactly the kind of approximation error the abstract denies.
- [Figure 6] The x-axis of Figure 6 appears to be game index, but the text refers to '640 games' and later to 1000; please clarify the sample size and axis labeling.
- [Appendix A] The Python and R examples intentionally produce different stopping times due to different RNGs. This is fine, but the discrepancy may confuse readers; consider a sentence noting that the algorithms are identical and the difference is purely the random seed/stream.
Circularity Check
No significant circularity: the derivation is either self-contained or rests on independently published geometry results, and the projection-mode caveat is an accuracy limitation rather than a circular step.
full rationale
I walked the claimed derivation chain. The paper's core contribution is an implementation; it does not attempt a from-scratch proof of the focus/GLR geometry. Section 2.1 defines the GLR statistic by standard likelihood maximization. Proposition 1 then gives a self-contained convex-hull pruning proof: any interior point P(tau') is dominated for every (theta0, theta1) by a convex combination of hull points. The logarithmic per-iteration cost is inherited from Corollary 1 of Pishchagina et al. (2025), an externally published theoretical bound. Citing that bound, even with overlapping authorship, is legitimate evidence rather than circular reasoning, because the bound is not assumed true by fitting it here and is not equivalent to the paper's own outputs. No model parameter is fitted to a subset of the target data and then renamed a prediction; the Monte Carlo thresholds in Section 4.1 are calibration/operating parameters, not predicted GLR values. The only tension is that the abstract states that the algorithms compute GLR 'exactly ... without introducing approximations,' while Section 2.3 explicitly describes an 'approximate algorithm' for d>5 using projections and Section 4.2 reports a mean relative difference of 0.003782673 between full-hull and projection-based statistics. This is an internal consistency/scope-of-claim concern, not a circularity: the exact claim is restricted to the full-hull mode, and the high-dimensional mode is openly labeled approximate. I found no self-definitional reduction, no fitted-input-called-prediction, no uniqueness theorem imported to force the answer, and no ansatz smuggled in by self-citation. Therefore the paper receives a circularity score of 0.
Axiom & Free-Parameter Ledger
free parameters (4)
- pruning_mult =
2 (default)
- pruning_offset =
1 (default)
- Monte Carlo threshold =
31.221 in §4.1; 32.796 in §5.1
- anomaly_intensity =
NULL (disabled); 1.5 in examples
axioms (5)
- standard math A point in the interior of a convex hull can be written as a convex combination of d+2 hull points, so it cannot maximize a linear functional.
- domain assumption Data are generated i.i.d. from a one-parameter exponential family before and after the change, with independence across dimensions.
- domain assumption The expected number of convex hull vertices of the P(τ) random walk is O(log(n)^d), as stated in Corollary 1 of Pishchagina et al. (2025).
- domain assumption Pruning never discards a candidate that can be the GLR maximizer: D_n ⊆ D_{n-1} ∪ {n} and vertices of the hull suffice.
- domain assumption For the AR(p) detector, AR coefficients and residual variance are known or estimated over a training period; Fan et al. (2026) provides the extension.
read the original abstract
We present an R and Python package for fast online changepoint detection in univariate and multivariate data streams for a variety of models. The package implements the focus family of algorithms, which compute the Generalised Likelihood Ratio test for a single changepoint exactly and efficiently, with a per-iteration cost of approximately $\log(n)^d$ for a d-dimensional sequence, without introducing approximations. This is achieved by exploiting a connection between the location of the changepoint candidates and the geometry of the data. The package supports a broad range of models from the natural exponential family, including Gaussian, Poisson, Binomial, Exponential and Gamma distributions, as well as a non-parametric detector based on the empirical cumulative distribution function and a detector for autoregressive data.
Figures
Reference graph
Works this paper leans on
-
[1]
and Killick, Rebecca , year =
Hyndman, Rob J. and Killick, Rebecca , year =
-
[2]
2026 , eprint=
An Efficient Likelihood Ratio Test for Online Changepoint Detection in the Presence of Autocorrelation , author=. 2026 , eprint=
2026
-
[3]
Journal of Statistical Software , volume=
cpop: detecting changes in piecewise-linear signals , author=. Journal of Statistical Software , volume=
-
[4]
Journal of Computational and Graphical Statistics , volume=
Efficient implementations of the generalized lasso dual path algorithm , author=. Journal of Computational and Graphical Statistics , volume=. 2016 , publisher=
2016
-
[5]
SIAM review , volume=
ell\_1 trend filtering , author=. SIAM review , volume=. 2009 , publisher=
2009
-
[6]
and Romano, Gaetano , year =
Talagala, Priyanga Dilini and Hyndman, Rob J. and Romano, Gaetano , year =
-
[7]
2024 , note =
breakfast: Methods for Fast Multiple Change-Point/Break-Point Detection and Estimation , author =. 2024 , note =
2024
-
[8]
Journal of statistical Software , volume=
bcp: an R package for performing a Bayesian analysis of change point problems , author=. Journal of statistical Software , volume=
-
[9]
IEEE transactions on biomedical circuits and systems , volume=
FPGA-based in-vivo calcium image decoding for closed-loop feedback applications , author=. IEEE transactions on biomedical circuits and systems , volume=. 2023 , publisher=
2023
-
[10]
arXiv preprint arXiv:0710.3742 , year=
Bayesian online changepoint detection , author=. arXiv preprint arXiv:0710.3742 , year=
-
[11]
Neurophotonics , volume=
Closed-loop experiments and brain machine interfaces with multiphoton microscopy , author=. Neurophotonics , volume=. 2024 , publisher=
2024
-
[12]
2019 , note =
ocp: Bayesian Online Changepoint Detection , author =. 2019 , note =
2019
-
[13]
Cell Reports Methods , volume=
A real-time all-optical interface for dynamic perturbation of neural activity during behavior , author=. Cell Reports Methods , volume=. 2025 , publisher=
2025
-
[14]
Mathematica Scandinavica , pages=
On the fluctuations of sums of random variables II , author=. Mathematica Scandinavica , pages=. 1955 , publisher=
1955
-
[15]
Some minorants and majorants of random walks and L
Abramson, Joshua Simon , year=. Some minorants and majorants of random walks and L
-
[16]
Procedures for Reacting to a Change in Distribution
Lorden, G. Procedures for Reacting to a Change in Distribution. Ann. Math. Statist. 1971. doi:10.1214/aoms/1177693055
arXiv 1971
-
[17]
Ross and Niall M
Gordon J. Ross and Niall M. Adams , title =. Journal of Quality Technology , volume =. 2012 , publisher =
2012
-
[18]
Proceedings of the 25th International Conference on Neural Information Processing Systems - Volume 2 , pages =
Khaleghi, Azadeh and Ryabko, Daniil , title =. Proceedings of the 25th International Conference on Neural Information Processing Systems - Volume 2 , pages =. 2012 , publisher =
2012
-
[19]
Scott , title =
Oscar Hernan Madrid Padilla and Alex Athey and Alex Reinhart and James G. Scott , title =. Journal of the American Statistical Association , volume =. 2019 , publisher =
2019
-
[20]
Hawkins and Qiqi Deng , title =
Douglas M. Hawkins and Qiqi Deng , title =. Journal of Quality Technology , volume =. 2010 , publisher =
2010
-
[21]
Ross and Dimitris K
Gordon J. Ross and Dimitris K. Tasoulis and Niall M. Adams , title =. Technometrics , volume =. 2011 , publisher =
2011
-
[22]
Polunchenko, Aleksey S. and Tartakovsky, Alexander G. State-of-the-Art in Sequential Change-Point Detection. Methodology and Computing in Applied Probability. 2012. doi:10.1007/s11009-011-9256-5
-
[23]
1961 , journal=
PROBLEM OF MOST RAPID DETECTION OF A DISTURBANCE IN StATIONARY PROCESSES , author=. 1961 , journal=
1961
-
[24]
Communications in Statistics - Theory and Methods , volume =
Dabuxilatu Wang and Liang Zhang and Qiang Xiong , title =. Communications in Statistics - Theory and Methods , volume =. 2017 , publisher =
2017
-
[25]
Sequential Analysis: Hypothesis Testing and Changepoint Detection , isbn =
Tartakovsky, Alexander and Nikiforov, Igor and Basseville, Michèle , year =. Sequential Analysis: Hypothesis Testing and Changepoint Detection , isbn =
-
[26]
Biometrika , volume=
Continuous inspection schemes , author=. Biometrika , volume=. 1954 , publisher=
1954
-
[27]
Knowledge and Information Systems , year=
A survey of methods for time series change point detection , author=. Knowledge and Information Systems , year=
-
[28]
Signal Process
A review of change point detection methods , author=. Signal Process. , year=
-
[29]
Signal processing , volume=
Selective review of offline change point detection methods , author=. Signal processing , volume=. 2020 , publisher=
2020
-
[30]
Real-time financial surveillance via quickest change-point detection methods , volume =
Pepelyshev, Andrey and Polunchenko, Aleksey , year =. Real-time financial surveillance via quickest change-point detection methods , volume =. Statistics and its interface , doi =
-
[31]
Data Science , volume=
Predictive maintenance solution for industrial systems—an unsupervised approach based on log periodic power law , author=. Data Science , volume=. 2025 , publisher=
2025
-
[32]
Sequential change-point detection based on nearest neighbors
Chen, Hao. Sequential change-point detection based on nearest neighbors. Ann. Statist. 2019. doi:10.1214/18-AOS1718
-
[33]
Change-Points: From Sequential Detection to Biology and Back , year =
David Siegmund , journal =. Change-Points: From Sequential Detection to Biology and Back , year =. doi:10.1080/07474946.2013.751834 , publisher =
arXiv 2013
-
[34]
and Arabhi, S
Jackson, Brad and Scargle, Jeffrey and Barnes, D. and Arabhi, S. and Alt, A. and Gioumousis, P. and Gwin, E. and Sangtrakulcharoen, P. and Tan, L. and Tsai, Tun , year =. An algorithm for optimal partitioning of data on an interval , volume =. Signal Processing Letters, IEEE , doi =
-
[35]
ACM Transactions on Mathematical Software (TOMS) , volume=
The quickhull algorithm for convex hulls , author=. ACM Transactions on Mathematical Software (TOMS) , volume=. 1996 , publisher=
1996
-
[36]
The Annals of Statistics , volume=
Nonparametric maximum likelihood approach to multiple change-point problems , author=. The Annals of Statistics , volume=. 2014 , publisher=
2014
-
[37]
A Note on Bernoulli Trials with Dependence , volume =
Bo Lindqvist , journal =. A Note on Bernoulli Trials with Dependence , volume =
-
[38]
2014 , publisher=
An Introduction to Statistical Modeling of Extreme Values , author=. 2014 , publisher=
2014
-
[39]
2013 , publisher=
Modelling Extremal Events: for Insurance and Finance , author=. 2013 , publisher=
2013
-
[40]
Extreme value theory in mixture distributions and a statistical method to control the possible bias
Wonseon Gwak and Hyein Goo and Yang Ho Choi and Jae Youn Ahn. Extreme value theory in mixture distributions and a statistical method to control the possible bias. Journal of the Korean Statistical Society. 2016. doi:https://doi.org/10.1016/j.jkss.2016.04.003
-
[41]
Approximated distributions of the weighted sum of correlated chi-squared random variables
Li-Ling Chuang and Yu-Shan Shih. Approximated distributions of the weighted sum of correlated chi-squared random variables. Journal of Statistical Planning and Inference. 2012. doi:https://doi.org/10.1016/j.jspi.2011.08.004
-
[42]
A pruned dynamic programming algorithm to recover the best segmentations with 1 to Kmax change-points , year=
Guillem Rigaill , journal=. A pruned dynamic programming algorithm to recover the best segmentations with 1 to Kmax change-points , year=
-
[43]
Changepoint Detection in the Presence of Outliers
Paul Fearnhead and Guillem Rigaill. Changepoint Detection in the Presence of Outliers. Journal of the American Statistical Association. 2019
2019
-
[44]
On optimal multiple changepoint algorithms for large data
Maidstone, Robert and Hocking, Toby and Rigaill, Guillem and Fearnhead, Paul. On optimal multiple changepoint algorithms for large data. Statistics and Computing. 2017
2017
-
[45]
arXiv preprint arXiv:1703.03352 , year=
A log-linear time algorithm for constrained changepoint detection , author=. arXiv preprint arXiv:1703.03352 , year=
-
[46]
Journal of Statistical Software , author=
gfpop: An R Package for Univariate Graph-Constrained Change-Point Detection , volume=. Journal of Statistical Software , author=. 2023 , pages=. doi:10.18637/jss.v106.i06 , number=
-
[47]
Journal of the American Statistical Association , pages=
Detecting abrupt changes in the presence of local fluctuations and autocorrelated noise , author=. Journal of the American Statistical Association , pages=. 2021 , publisher=
2021
-
[48]
arXiv preprint arXiv:1801.00826 , year=
ruptures: change point detection in Python , author=. arXiv preprint arXiv:1801.00826 , year=
-
[49]
2020 , note =
ocd: High-Dimensional Multiscale Online Changepoint Detection , author =. 2020 , note =
2020
-
[50]
Information Processing Letters , volume=
On-line construction of the convex hull of a simple polyline , author=. Information Processing Letters , volume=. 1987 , publisher=
1987
-
[51]
Electronic Journal of Statistics , volume=
Modified sequential change point procedures based on estimating functions , author=. Electronic Journal of Statistics , volume=. 2018 , publisher=
2018
-
[52]
arXiv preprint arXiv:2003.02682 , year=
Backward CUSUM for testing and monitoring structural change , author=. arXiv preprint arXiv:2003.02682 , year=
Pith/arXiv arXiv 2003
-
[53]
2015 IEEE 14th International Conference on Machine Learning and Applications (ICMLA) , pages=
Evaluating Real-Time anomaly detection algorithms--The Numenta anomaly benchmark , author=. 2015 IEEE 14th International Conference on Machine Learning and Applications (ICMLA) , pages=. 2015 , organization=
2015
-
[54]
Neurocomputing , volume=
Unsupervised real-time anomaly detection for streaming data , author=. Neurocomputing , volume=. 2017 , publisher=
2017
-
[55]
Neural computation , volume=
Continuous online sequence learning with an unsupervised neural network model , author=. Neural computation , volume=. 2016 , publisher=
2016
-
[56]
2004 , publisher=
Robust statistics , author=. 2004 , publisher=
2004
-
[57]
Journal of the American Statistical Association , volume=
A likelihood ratio approach to sequential change point detection for a general class of parameters , author=. Journal of the American Statistical Association , volume=. 2020 , publisher=
2020
-
[58]
Sequential Analysis , volume=
A note on online change point detection , author=. Sequential Analysis , volume=. 2023 , publisher=
2023
-
[59]
Journal of the Royal Statistical Society Series B: Statistical Methodology , volume=
High-dimensional, multiscale online changepoint detection , author=. Journal of the Royal Statistical Society Series B: Statistical Methodology , volume=. 2022 , publisher=
2022
-
[60]
Biometrika , volume=
The state of cumulative sum sequential changepoint testing 70 years after Page , author=. Biometrika , volume=. 2024 , publisher=
2024
-
[61]
IEEE Transactions on Information Theory , volume=
Window-limited CUSUM for sequential change detection , author=. IEEE Transactions on Information Theory , volume=. 2023 , publisher=
2023
-
[62]
Biometrika , volume=
A test for a change in a parameter occurring at an unknown point , author=. Biometrika , volume=. 1955 , publisher=
1955
-
[63]
2015 Computing in Cardiology Conference (CinC) , pages=
The PhysioNet/computing in cardiology challenge 2015: reducing false arrhythmia alarms in the ICU , author=. 2015 Computing in Cardiology Conference (CinC) , pages=. 2015 , organization=
2015
-
[64]
arXiv preprint arXiv:1906.03225 , year=
A new approach for open-end sequential change point monitoring , author=. arXiv preprint arXiv:1906.03225 , year=
Pith/arXiv arXiv 1906
-
[65]
arXiv preprint arXiv:2009.06670 , year=
Real Time Anomaly Detection And Categorisation , author=. arXiv preprint arXiv:2009.06670 , year=
Pith/arXiv arXiv 2009
-
[66]
arXiv preprint arXiv:1608.04585 , year=
Conformalized density-and distance-based anomaly detection in time-series data , author=. arXiv preprint arXiv:1608.04585 , year=
-
[67]
Econometrica: Journal of the Econometric Society , pages=
Monitoring structural change , author=. Econometrica: Journal of the Econometric Society , pages=. 1996 , publisher=
1996
-
[68]
2010 , pages=
Gamma , author=. 2010 , pages=
2010
-
[69]
Mathematics and computers in simulation , volume=
Modified procedures for change point monitoring in linear models , author=. Mathematics and computers in simulation , volume=. 2010 , publisher=
2010
-
[70]
Journal of Statistical Planning and Inference , volume=
Monitoring changes in linear models , author=. Journal of Statistical Planning and Inference , volume=. 2004 , publisher=
2004
-
[71]
Biometrika , volume=
MOSUM tests for parameter constancy , author=. Biometrika , volume=. 1995 , publisher=
1995
-
[72]
Technometrics , volume=
The use of MOSUMS for quality control , author=. Technometrics , volume=. 1978 , publisher=
1978
-
[73]
2010 , publisher=
Structural health monitoring , author=. 2010 , publisher=
2010
-
[74]
IEEE Transactions on signal processing , volume=
Anomaly detection in IP networks , author=. IEEE Transactions on signal processing , volume=. 2003 , publisher=
2003
-
[75]
International conference on research in networking , pages=
Proactively detecting distributed denial of service attacks using source IP address monitoring , author=. International conference on research in networking , pages=. 2004 , organization=
2004
-
[76]
Renewable and Sustainable energy reviews , volume=
Condition monitoring and fault detection of wind turbines and related algorithms: A review , author=. Renewable and Sustainable energy reviews , volume=. 2009 , publisher=
2009
-
[77]
2013 , publisher=
Real time fault monitoring of industrial processes , author=. 2013 , publisher=
2013
-
[78]
Mechanical Systems and Signal Processing , volume=
In-flight and wireless damage detection in a UAV composite wing using fiber optic sensors and strain field pattern recognition , author=. Mechanical Systems and Signal Processing , volume=. 2020 , publisher=
2020
-
[79]
IEEE Control Systems Magazine , volume=
In-flight vibration monitoring of aeronautical structures , author=. IEEE Control Systems Magazine , volume=. 2007 , publisher=
2007
-
[80]
Monthly Notices of the Royal Astronomical Society , volume=
A method of detecting radio transients , author=. Monthly Notices of the Royal Astronomical Society , volume=. 2010 , publisher=
2010
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.