| Type: | Package |
| Title: | Online Changepoint Detection in Univariate and Multivariate Data Streams |
| Version: | 0.1.10 |
| Date: | 2026-09-16 |
| Maintainer: | Gaetano Romano <g.romano@lancaster.ac.uk> |
| Description: | Provides high-performance online changepoint detection in univariate and multivariate data streams. Implements efficient 'C++' backends for the 'focus', 'md-focus' and 'np-focus' algorithms, with an 'R' interface for real-time monitoring and offline analysis. The package bundles code from 'Qhull' http://www.qhull.org/, by C. B. Barber and The Geometry Center. See 'inst/COPYRIGHTS' for details. |
| License: | GPL (≥ 3) |
| Imports: | graphics, Rcpp (≥ 1.1.0) |
| LinkingTo: | Rcpp |
| Encoding: | UTF-8 |
| Suggests: | testthat (≥ 3.0.0) |
| Config/roxygen2/version: | 8.1.0 |
| NeedsCompilation: | yes |
| Packaged: | 2026-09-16 16:39:49 UTC; romano |
| Author: | Gaetano Romano [aut, cre, trl], Kes Ward [aut], Yuntang Fan [aut], Guillem Rigaill [aut], Vincent Runge [aut], Idris A. Eckley [aut], Paul Fearnhead [aut], C. B. Barber [ctb, cph] (Author and copyright holder of bundled 'Qhull' library), The Geometry Center [cph] (Copyright holder of bundled 'Qhull' library) |
| Repository: | CRAN |
| Date/Publication: | 2026-09-16 23:40:11 UTC |
Online Changepoint Detection in Univariate and Multivariate Data Streams
Description
The focus package provides high-performance implementations of online and offline changepoint detection algorithms for univariate and multivariate data streams. The package exposes optimized C++ backends (FOCuS and md-FOCuS style algorithms) with R interfaces for both real-time monitoring (sequential updates) and batch/offline analysis.
Details
focus implements efficient changepoint detection for a range of statistical models and use-cases. The package supports multiple distributional families (Gaussian, Poisson, Bernoulli, Gamma) and a non-parametric NPFOCuS variant. It provides two primary modes:
- Offline mode (
focus_offline) Processes all observations in C++ for maximum efficiency. Useful for benchmarking, for computing full statistic trajectories, or for batch processing. By default the offline call stops when a threshold is exceeded; use
threshold = Infto compute statistics for all observations.- Online / sequential mode (
detector_create,detector_update,get_statistics) Create an online detector object and update it one observation at a time from R. This provides a flexible streaming API and access to candidate segments, at the cost of more R/C calls per observation.
Main features:
Multiple distributions: Gaussian, Poisson, Bernoulli, Gamma, and non-parametric NPFOCuS.
Univariate and multivariate observations.
Known or unknown pre-change parameters (generalised likelihood-ratio and Page–CUSUM style tests).
One-sided and two-sided detection.
Flexible interface: statistical cost functions are independent from the detector candidate-management strategy.
High-performance C++ backend designed for integration with R and direct use from C++ projects.
Important functions:
-
focus_offline(Y, threshold, type, family, ...): run complete offline detection; returns full statistic trajectories, detected changepoints, candidate segments, thresholds and metadata. -
detector_create(type, ...): construct an online detector object. -
detector_update(det, y): update the detector with a new observation. -
get_statistics(det, family, theta0 = NULL, shape = NULL): compute statistics for the current detector state. Inspection utilities:
detector_info_n(),detector_info_sn(),detector_cands_len(),detector_candidates().
The detector, the statistics and the offline results are S3 objects of
class "focus_detector", "focus_statistics" and
"focus_offline", respectively, with print methods and, for
offline results, summary and plot methods; see
focus-methods.
Author(s)
Gaetano Romano [aut, cre], g.romano@lancaster.ac.uk\ Kes Ward [aut], k.ward4@lancaster.ac.uk\ Yuntang Fan [aut], y.yuntang@lancaster.ac.uk\ Guillem Rigaill [aut], guillem.rigaill@inrae.fr\ Vincent Runge [aut], vincent.runge@univ-evry.fr\ Paul Fearnhead [aut], p.fearnhead@lancaster.ac.uk\ Idris A. Eckley [aut], i.eckley@lancaster.ac.uk\ Maintainer: Gaetano Romano g.romano@lancaster.ac.uk
References
Pishchagina, L., G. Romano, P. Fearnhead, V. Runge, and G. Rigaill (2025). Online Multivariate Changepoint Detection: Leveraging Links with Computational Geometry. JRSS B. doi:10.1093/jrsssb/qkaf046.
Romano, G., I. A. Eckley, and P. Fearnhead (2024). A Log-Linear Nonparametric Online Changepoint Detection Algorithm Based on Functional Pruning. IEEE Transactions on Signal Processing, 72.
Romano, G., I. A. Eckley, P. Fearnhead, and G. Rigaill (2023). Fast Online Changepoint Detection via Functional Pruning CUSUM Statistics. Journal of Machine Learning Research, 24(81):1–36.
Ward, K., G. Romano, I. Eckley, and P. Fearnhead (2024). A Constant-Per-Iteration Likelihood Ratio Test for Online Changepoint Detection for Exponential Family Models. Statistics and Computing, 34(3).
Note: The package bundles and links to code from Qhull (C. B. Barber et al., The Geometry Center). Qhull functions are used for convex-hull computations in multivariate pruning. See ‘inst/COPYRIGHTS/’ for the Qhull license and attribution details.
See Also
focus_offline, detector_create,
detector_update, get_statistics,
detector_candidates, generate_projection_indexes
Examples
## Offline (batch) example: univariate Gaussian change-in-mean
set.seed(123)
Y <- c(rnorm(500, mean = 0), rnorm(500, mean = 2))
# Run offline detection (C++ loop). Use threshold=Inf to compute full trajectory.
res <- focus_offline(Y, threshold = 20, type = "univariate", family = "gaussian")
if (!is.null(res$detection_time)) {
cat("Detection at time:", res$detection_time, "\n")
}
## Online (sequential) example
det <- detector_create(type = "univariate")
stat_trace <- numeric(length(Y))
threshold <- 20
for (i in seq_along(Y)) {
detector_update(det, Y[i])
r <- get_statistics(det, family = "gaussian")
stat_trace[i] <- r$stat
if (!is.null(r$stat) && r$stat > threshold) {
cat("Online detection at", i, "estimate tau =", r$changepoint, "\n")
break
}
}
## Multivariate offline example (p = 3)
set.seed(42)
p <- 3
Y_multi <- rbind(
matrix(rnorm(1000 * p, mean = 0), ncol = p),
matrix(rnorm(500 * p, mean = 1.2), ncol = p)
)
res_multi <- focus_offline(Y_multi, threshold = 30, type = "multivariate", family = "gaussian")
cat("Multivariate detection time:", res_multi$detection_time, "\n")
Get the Candidate Segments
Description
Returns detailed information about all candidate changepoint segments currently tracked by the detector.
Usage
detector_candidates(det_ptr)
Arguments
det_ptr |
A |
Details
Each row represents a candidate segment from time tau to the current
time. The sufficient statistics in st are used to efficiently compute
test statistics without reprocessing the data.
Value
A data frame (tibble) with one row per candidate and columns:
tau |
Numeric vector. Candidate changepoint locations, on the same
scale as the changepoint estimate returned by
|
st |
List of numeric vectors. Sufficient statistics for each candidate segment (e.g., cumulative sums of the data). |
side |
Character vector. Side indicator for each candidate (relevant for one-sided detectors). |
Get the Number of Candidate Segments
Description
Returns the number of candidate changepoint segments currently tracked by the detector.
Usage
detector_cands_len(det_ptr)
Arguments
det_ptr |
A |
Details
The FOCuS algorithm maintains a set of candidate segments that could potentially contain changepoints. This number grows with time but is controlled by the pruning parameters.
Value
Integer. Number of candidate segments.
Create a FOCuS Changepoint Detector
Description
Creates an online (sequential) changepoint detector object that provides
a step-by-step interface to the FOCuS algorithm. Each call to
detector_update() adds new data, and get_statistics() computes
the current test statistic and detection result.
Usage
detector_create(
type,
dim_indexes = NULL,
quantiles = NULL,
pruning_mult = 2L,
pruning_offset = 1L,
side = "right",
anomaly_intensity = NULL,
rho = NULL,
mu0_arp = NULL
)
Arguments
type |
Character string specifying detector type. One of:
|
dim_indexes |
List of integer vectors specifying projection index sets
for high-dimensional multivariate detectors (not required for data with
at most 5 dimensions). Each element is a vector of 0-based column indices.
Default is |
quantiles |
Numeric vector of quantiles for nonparametric
( |
pruning_mult |
Integer. Candidate pruning multiplier parameter. Default is 2. |
pruning_offset |
Integer. Candidate pruning offset parameter. Default is 1. |
side |
Character string. For one-sided detectors, either |
anomaly_intensity |
Numeric scalar. Anomaly intensity threshold for
pruning candidates. Only candidates with sufficient signal magnitude are
retained. Default is |
rho |
Numeric vector. AR coefficients for AutoRegressive Process (ARP)
detectors. Required when |
mu0_arp |
Numeric scalar. Pre-change mean for ARP detectors (optional).
When provided, enables more efficient pruning by filtering candidates based on
the known pre-change parameter. Only used when |
Details
The detector maintains sufficient statistics internally and uses pruning
to efficiently track candidate changepoints. The pruning_mult and
pruning_offset parameters control the pruning strategy.
AutoRegressive Process (ARP).
When type = "arp", the rho parameter must be provided as a numeric
vector of AR coefficients (lag-1, lag-2, ..., lag-p). The detector then computes
statistics optimal for detecting changepoints in AR(p) processes. Use
get_statistics(family = "arp") to retrieve the test statistics.
The optional mu0_arp parameter specifies the pre-change mean and is tied
to the pruning logic: if provided, it enables more efficient pruning by allowing
the algorithm to filter candidates based on the known pre-change parameter.
High-dimensional multivariate detectors.
For high-dimensional multivariate detection, computing the full convex hull
is prohibitive, as the expected number of candidates grows as
\log(n)^p, where n is the number of observations and
p the number of dimensions. The set of candidate changepoints can then
be approximated by computing the hull on lower-dimensional projections:
dim_indexes specifies which dimensions to use for each projection.
Use generate_projection_indexes() to generate systematic
projection sets.
NPFOCuS.
For non-parametric detection, create the detector with
detector_create(type = "npfocus", quantiles = ...) and compute the
statistics with get_statistics(family = "npfocus"). No other family
can be used with this detector type.
Value
An object of class "focus_detector": an external pointer to
the state of the C++ detector, which is updated in place. It should be
passed to the other detector functions, such as
detector_update() and get_statistics(). A
print method is available, see focus-methods. As
external pointers, detectors cannot be saved and restored across R
sessions.
Examples
# Univariate detector
det <- detector_create(type = "univariate")
det <- detector_update(det, 0.5)
det <- detector_update(det, 1.2)
det
r <- get_statistics(det, family = "gaussian")
r
## Online (sequential) example
# Generate data with a changepoint
set.seed(123)
Y <- c(rnorm(500, mean = 0), rnorm(500, mean = 1))
det <- detector_create(type = "univariate")
stat_trace <- numeric(length(Y))
threshold <- 20
for (i in seq_along(Y)) {
detector_update(det, Y[i])
r <- get_statistics(det, family = "gaussian")
stat_trace[i] <- r$stat
if (!is.null(r$stat) && r$stat > threshold) {
cat("Online detection at", i, "estimate tau =", r$changepoint, "\n")
plot(stat_trace[1:i], type = "l", ylab = "Test Statistic", xlab = "Time")
break
}
}
# Multivariate detector with projections
dim_indexes <- list(c(0,1), c(1,2), c(0,2)) # 0-based indices
det_mv <- detector_create(type = "multivariate", dim_indexes = dim_indexes)
detector_update(det_mv, c(0.5, 1.2, -0.3))
# Nonparametric detector
quants <- qnorm(c(0.25, 0.5, 0.75))
det_np <- detector_create(type = "npfocus", quantiles = quants)
# One-sided univariate detector
det_one_sided <- detector_create(type = "univariate_one_sided", side = "left")
Get the Number of Observations Processed
Description
Returns the total number of observations processed by the detector.
Usage
detector_info_n(det_ptr)
Arguments
det_ptr |
A |
Value
Integer. Number of observations processed (current time index).
Get the Cumulative Sum Statistic
Description
Returns the current cumulative sum statistic maintained by the detector.
Usage
detector_info_sn(det_ptr)
Arguments
det_ptr |
A |
Value
Numeric vector. Cumulative sum statistic. For univariate detectors, a scalar (length-1 vector). For multivariate detectors, a vector of length equal to the number of dimensions.
Update a Detector with New Observations
Description
Adds a new observation to the detector's internal state, updates the sufficient statistics and prunes the set of candidate changepoints.
Usage
detector_update(det_ptr, y, lambda = 1)
Arguments
det_ptr |
A |
y |
Numeric vector with the new observation. For univariate detectors, this should be a scalar (length-1 vector). For multivariate detectors, this should be a vector matching the number of dimensions. |
lambda |
Numeric scalar. Weight of the new observation: the internal
time counter is incremented by |
Value
The same "focus_detector" object that was passed in. The detector is
updated in place (no copy is made), so the return value is provided
only for convenience, for example to chain calls with the native pipe
operator, as in
det |> detector_update(y) |> get_statistics(family = "gaussian").
Examples
# Univariate example
det <- detector_create(type = "univariate")
detector_update(det, 0.5)
detector_update(det, 1.2)
# Multivariate example
det_mv <- detector_create(type = "multivariate")
detector_update(det_mv, c(0.5, 1.2, -0.3))
## Online (sequential) example
# Generate data with a changepoint
set.seed(123)
Y <- c(rnorm(500, mean = 0), rnorm(500, mean = 1))
det <- detector_create(type = "univariate")
stat_trace <- numeric(length(Y))
threshold <- 20
for (i in seq_along(Y)) {
detector_update(det, Y[i])
r <- get_statistics(det, family = "gaussian")
stat_trace[i] <- r$stat
if (!is.null(r$stat) && r$stat > threshold) {
cat("Online detection at", i, "estimate tau =", r$changepoint, "\n")
plot(stat_trace[1:i], type = "l", ylab = "Test Statistic", xlab = "Time")
break
}
}
Methods for Detector, Statistics and Offline Result Objects
Description
Print, summary and plot methods for the S3 classes returned by the main
functions of the package: "focus_detector" objects, created by
detector_create(); "focus_statistics" objects, returned
by get_statistics(); and "focus_offline" objects,
returned by focus_offline().
Usage
## S3 method for class 'focus_detector'
print(x, ...)
## S3 method for class 'focus_statistics'
print(x, digits = max(3L, getOption("digits") - 3L), ...)
## S3 method for class 'focus_offline'
print(x, digits = max(3L, getOption("digits") - 3L), ...)
## S3 method for class 'focus_offline'
summary(object, ...)
## S3 method for class 'summary.focus_offline'
print(x, digits = max(3L, getOption("digits") - 3L), ...)
## S3 method for class 'focus_offline'
plot(
x,
type = "l",
lty = 1,
col = NULL,
xlab = "Time",
ylab = "Statistic",
main = NULL,
...
)
Arguments
x, object |
An object of class |
... |
Further arguments passed to or from other methods (for
|
digits |
Number of significant digits used to print the statistics. |
type, lty, col, xlab, ylab, main |
Graphical parameters passed to
|
Details
The print methods give a compact description of the object: for a
detector, its type, the number of observations processed and the number of
candidate changepoints currently stored; for the statistics, the current
time, changepoint estimate and test statistic(s); for an offline result, the
detector type and family, the threshold(s) and the detection, if any.
The summary method for "focus_offline" objects additionally
reports, for each test statistic, its maximum over time, the time at which
the maximum is attained, the changepoint estimate at that time and the
threshold.
The plot method for "focus_offline" objects draws the trace of
the test statistic(s) over time, with the finite threshold(s) as dashed
horizontal lines and, if a detection occurred, the detection time and the
estimated changepoint as dotted vertical lines.
Value
The print and plot methods return x invisibly.
The summary method returns an object of class
"summary.focus_offline": a list with the elements type,
family, shape, n, detection_time and
detected_changepoint of the offline result, the number of final
candidates n_candidates, and statistics, a data frame with
one row per test statistic.
Examples
set.seed(123)
Y <- c(rnorm(100, mean = 0), rnorm(100, mean = 2))
# Online interface
det <- detector_create(type = "univariate")
for (y in Y[1:120]) detector_update(det, y)
det
get_statistics(det, family = "gaussian")
# Offline interface
res <- focus_offline(Y, threshold = 20, type = "univariate",
family = "gaussian")
res
summary(res)
plot(res)
Run a FOCuS Detector in Offline Batch Mode
Description
Processes all data at once and returns detection results and trajectories. This is the most efficient way to run changepoint detection when all data is available upfront.
Usage
focus_offline(
Y,
threshold,
type = "univariate",
family = "gaussian",
theta0 = NULL,
dim_indexes = NULL,
quantiles = NULL,
pruning_mult = 2L,
pruning_offset = 1L,
side = "right",
shape = NULL,
anomaly_intensity = NULL,
rho = NULL,
mu0_arp = NULL
)
Arguments
Y |
Numeric vector or matrix. Data array. For univariate detection, a numeric vector. For multivariate detection, a matrix with observations in rows and dimensions in columns. |
threshold |
Numeric scalar or vector. Detection threshold(s). Can be:
|
type |
Character string specifying detector type. See
|
family |
Character string specifying distribution family. See
|
theta0 |
Numeric vector. Null hypothesis parameter. Default is |
dim_indexes |
List of integer vectors. Projection index sets for
multivariate detectors. Default is |
quantiles |
Numeric vector. Quantiles for nonparametric detectors.
Default is |
pruning_mult |
Integer. Pruning multiplier parameter. Default is 2. |
pruning_offset |
Integer. Pruning offset parameter. Default is 1. |
side |
Character string. For one-sided detectors: |
shape |
Numeric scalar. Shape parameter for gamma distribution.
Default is |
anomaly_intensity |
Numeric scalar. Anomaly intensity threshold for
pruning candidates. Only candidates with sufficient signal magnitude are
retained. Default is |
rho |
Numeric vector. AR coefficients for AutoRegressive Process (ARP)
detectors. Required when |
mu0_arp |
Numeric scalar. Pre-change mean for ARP detectors (optional).
Only used when |
Details
This function runs the complete detection algorithm in C++ for maximum efficiency. It processes observations sequentially and stops at the first detection (when any statistic exceeds its threshold).
When more than one statistic is computed (e.g., the sum and maximum
statistics of "npfocus"), a detection occurs when any statistic
exceeds its threshold.
Value
An object of class "focus_offline", with print,
summary and plot methods (see focus-methods):
a list with components
stat |
Numeric matrix. Test statistics over time (n_obs × n_stats). Each row corresponds to one time point, each column to one statistic. |
changepoint |
Integer vector. Detected changepoints at each time point (1-based indices), or NA if no changepoint detected at that time. |
detection_time |
Integer or NULL. Time of first detection (1-based), or NULL if no detection occurred. |
detected_changepoint |
Integer or NULL. Changepoint location at detection time (1-based), or NULL if no detection occurred. |
candidates |
Data frame. Final candidate segments (see
|
threshold |
Numeric vector. Threshold(s) used for detection. |
n |
Integer. Number of observations processed. |
type |
Character. Detector type used. |
family |
Character. Distribution family used. |
shape |
Numeric or NULL. Shape parameter (for gamma family). |
Examples
# Univariate Gaussian detection
set.seed(123)
Y <- c(rnorm(100, mean = 0), rnorm(100, mean = 2))
result <- focus_offline(Y, threshold = 10, type = "univariate",
family = "gaussian")
result
summary(result)
# Plot the trace of the statistic, the threshold and the detection
plot(result)
# Poisson detection
Y_poisson <- c(rpois(100, lambda = 2), rpois(100, lambda = 5))
result_poisson <- focus_offline(Y_poisson, threshold = 10,
type = "univariate",
family = "poisson")
Generate Projection Index Sets
Description
Generates projection index sets for high-dimensional multivariate detectors using circular combinations.
Usage
generate_projection_indexes(d, p)
Arguments
d |
Integer. Total number of dimensions. |
p |
Integer. Projection subset size (number of dimensions per projection). |
Details
This function generates systematic projection sets for use with multivariate detectors. The circular combination approach ensures good coverage of the dimensional space while keeping the number of projections manageable.
Value
A list of integer vectors. Each element is a vector of 0-based column indices representing one projection.
Examples
# Generate 2-dimensional projections from 5 dimensions
proj <- generate_projection_indexes(d = 5, p = 2)
print(proj)
# Use with multivariate detector
det <- detector_create(type = "multivariate", dim_indexes = proj)
set.seed(42)
d <- 5
# Create data: changepoint at t=1000
Y_multi <- rbind(
matrix(rnorm(1000 * d, mean = -1, 1), ncol = d),
matrix(rnorm(500 * d, mean = 1.2), ncol = d)
)
# Full multivariate detection
system.time(
res_multi <- focus_offline(Y_multi, threshold = Inf,
type = "multivariate", family = "gaussian")
)
# Low-dimensional projection approximation
dim_indexes <- generate_projection_indexes(5, 2)
system.time(
res_multi_approx <- focus_offline(Y_multi, threshold = Inf,
type = "multivariate", family = "gaussian",
dim_indexes = dim_indexes)
)
# Verify similarity
all.equal(res_multi$stat, res_multi_approx$stat)
Compute the Current Changepoint Statistics
Description
Computes the current changepoint test statistic and detection result based on all observations processed so far.
Usage
get_statistics(det_ptr, family, theta0 = NULL, shape = NULL)
Arguments
det_ptr |
A |
family |
Character string specifying the distribution family:
|
theta0 |
Numeric vector specifying the null hypothesis parameter.
For univariate detectors: scalar (length-1 vector).
For multivariate detectors: vector matching the number of dimensions.
Default is |
shape |
Numeric scalar. Shape parameter for gamma distribution.
Required and must be positive when |
Details
The function computes a log-likelihood ratio test statistic comparing the null hypothesis (no change) against the alternative (a change at the optimal location). The statistic is typically compared against a threshold to determine if a changepoint should be declared.
Gamma family.
When family = "gamma" a positive shape parameter must
be provided; otherwise an error is raised. Passing shape for a
non-gamma family raises a warning and the parameter is ignored.
NPFOCuS.
For non-parametric detection, the detector must be created with
detector_create(type = "npfocus", quantiles = ...). NPFOCuS returns
two statistics (sum and maximum over the quantiles) as a vector; in the
offline interface, stat is a matrix with two columns.
AutoRegressive Process (ARP).
For ARP detection, use family = "arp" with a detector created via
detector_create(type = "arp", rho = ...). The AR coefficients and the
(optional) pre-change mean mu0_arp are set at detector creation, so
theta0 is ignored (with a warning) for this family.
Value
An object of class "focus_statistics", with a print
method (see focus-methods): a list with components
stopping_time |
Numeric. Current time index (number of observations processed). |
changepoint |
Numeric or |
stat |
Numeric scalar or vector, or |
The family is stored in the attribute "family".
Examples
## Online (sequential) example
# Generate data with a changepoint
set.seed(123)
Y <- c(rnorm(500, mean = 0), rnorm(500, mean = 1))
det <- detector_create(type = "univariate")
stat_trace <- numeric(length(Y))
threshold <- 20
for (i in seq_along(Y)) {
detector_update(det, Y[i])
r <- get_statistics(det, family = "gaussian")
stat_trace[i] <- r$stat
if (!is.null(r$stat) && r$stat > threshold) {
cat("Online detection at", i, "estimate tau =", r$changepoint, "\n")
plot(stat_trace[1:i], type = "l", ylab = "Test Statistic", xlab = "Time")
break
}
}
## Note that multiple models can be tested simultaneously on the same detector
# as the statistics is independent of the detector state.
# For example, testing both Gaussian and Poisson costs
set.seed(2024)
# Generate Poisson count data with a rate change
Y_counts <- c(rpois(500, lambda = 10), rpois(500, lambda = 15))
# Compute full trajectories for comparison
det2 <- detector_create(type = "univariate")
stat_gaussian <- numeric(length(Y_counts))
stat_poisson <- numeric(length(Y_counts))
for (i in seq_along(Y_counts)) {
detector_update(det2, Y_counts[i])
stat_gaussian[i] <- get_statistics(det2, family = "gaussian")$stat
stat_poisson[i] <- get_statistics(det2, family = "poisson", theta0 = 10)$stat
}
# Plot comparison
oldpar <- par(mfrow = c(1, 2))
plot(stat_gaussian, type = "l", main = "Gaussian Statistic on Poisson Data",
xlab = "Time", ylab = "Statistic", lwd = 2, col = "blue")
abline(v = 500, col = "green", lty = 3, lwd = 2)
plot(stat_poisson, type = "l", main = "Poisson Statistic on Poisson Data",
xlab = "Time", ylab = "Statistic", lwd = 2, col = "red")
abline(v = 500, col = "green", lty = 3, lwd = 2)
par(oldpar)