Skip to content

Commit d1e9f4c

Browse files
deploy: fcb5369
1 parent c58d261 commit d1e9f4c

27 files changed

+6668
-3234
lines changed

articles.html

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3318,7 +3318,26 @@ <h2>SIHR: Statistical Inference in High-Dimensional Linear and Logistic Regressi
33183318
<div class="description">
33193319
<h2>SNSeg: An R Package for Time Series Segmentation via Self-Normalization</h2>
33203320
<div class="dt-tags"></div>
3321-
<p>T</p>
3321+
<p>Time series segmentation aims to identify potential change-points in a
3322+
sequence of temporally dependent data, so that the original sequence
3323+
can be partitioned into several homogeneous subsequences. It is useful
3324+
for modeling and predicting non-stationary time series and is widely
3325+
applied in natural and social sciences. Existing segmentation methods
3326+
primarily focus on only one type of parameter changes such as mean and
3327+
variance, and they typically depend on smoothing parameters, which can
3328+
be challenging to choose in practice. The self-normalization based
3329+
change-point estimation framework SNCP by Zhao and others (2022),
3330+
however, offers users more flexibility and convenience as it allows
3331+
for change-point estimation of different types of parameters (e.g.
3332+
mean, variance, quantile and autocovariance) in a unified fashion. In
3333+
this paper, the R package SNSeg is introduced to implement SNCP for
3334+
segmentation of univariate and multivariate time series. An extension
3335+
of SNCP, named SNHD, is also designed and implemented for change-point
3336+
estimation in the mean vector of high-dimensional time series. The
3337+
estimated change-points as well as segmented time series are available
3338+
with graphical tools. Detailed examples of SNSeg are given in
3339+
simulations of multivariate autoregressive processes with
3340+
change-points.</p>
33223341
</div>
33233342
</a>
33243343
<a href="articles/RJ-2024-030/" class="post-preview">

articles.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,26 @@ package's performance and practicality.</description>
649649
<dc:creator>Feiyu Jiang</dc:creator>
650650
<dc:creator>Xiaofeng Shao</dc:creator>
651651
<link>https://journal.r-project.org/articles/RJ-2024-029</link>
652-
<description>T</description>
652+
<description>Time series segmentation aims to identify potential change-points in a
653+
sequence of temporally dependent data, so that the original sequence
654+
can be partitioned into several homogeneous subsequences. It is useful
655+
for modeling and predicting non-stationary time series and is widely
656+
applied in natural and social sciences. Existing segmentation methods
657+
primarily focus on only one type of parameter changes such as mean and
658+
variance, and they typically depend on smoothing parameters, which can
659+
be challenging to choose in practice. The self-normalization based
660+
change-point estimation framework SNCP by Zhao and others (2022),
661+
however, offers users more flexibility and convenience as it allows
662+
for change-point estimation of different types of parameters (e.g.
663+
mean, variance, quantile and autocovariance) in a unified fashion. In
664+
this paper, the R package SNSeg is introduced to implement SNCP for
665+
segmentation of univariate and multivariate time series. An extension
666+
of SNCP, named SNHD, is also designed and implemented for change-point
667+
estimation in the mean vector of high-dimensional time series. The
668+
estimated change-points as well as segmented time series are available
669+
with graphical tools. Detailed examples of SNSeg are given in
670+
simulations of multivariate autoregressive processes with
671+
change-points.</description>
653672
<guid>https://journal.r-project.org/articles/RJ-2024-029</guid>
654673
<pubDate>Tue, 20 May 2025 00:00:00 +0000</pubDate>
655674
</item>
15.6 KB
Binary file not shown.

articles/RJ-2024-029/RJ-2024-029.tex

Lines changed: 0 additions & 55 deletions
This file was deleted.
0 Bytes
Binary file not shown.

articles/RJ-2024-029/RJournal.sty

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@
22
% Copyright (C) 2010 by the R Foundation
33
% Copyright (C) 2013 by the R Journal
44
%
5-
% Originally written by Kurt Hornik and Friedrich Leisch with subsequent
5+
% Originally written by Kurt Hornik and Friedrich Leisch with subsequent
66
% edits by the editorial board
77
%
88
% CAUTION:
99
% Do not modify this style file. Any changes to this file will be reset when your
1010
% article is submitted.
11-
% If you must modify the style or add LaTeX packages to the article, these
11+
% If you must modify the style or add LaTeX packages to the article, these
1212
% should be specified in RJwrapper.tex
1313

1414
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
15-
\ProvidesPackage{RJournal}[2022/06/27 v0.14 RJournal package]
15+
\ProvidesPackage{RJournal}[2025/05/07 v0.15 RJournal package]
1616

1717
\RequirePackage{tikz}
1818

1919
% Overall page layout, fonts etc -----------------------------------------------
2020

2121
% Issues of of \emph{The R Journal} are created from the standard \LaTeX{}
22-
% document class \pkg{report}.
22+
% document class \pkg{report}.
2323

2424
\RequirePackage{geometry}
25-
\geometry{a4paper,
25+
\geometry{a4paper,
2626
textwidth=14cm, top=1cm, bottom=1cm,
2727
includehead,includefoot,centering,
2828
footskip=1.5cm}
2929
\raggedbottom
3030

3131
\RequirePackage{fancyhdr}
3232
\fancyhead{}
33-
\fancyheadoffset{2cm}
33+
\fancyheadoffset{2cm}
3434
\fancyhead[L]{\textsc{\RJ@sectionhead}}
3535
\fancyhead[R]{\thepage}
3636
\fancyfoot{}
@@ -39,7 +39,7 @@
3939
\pagestyle{fancy}
4040

4141
% We use the following fonts (all with T1 encoding):
42-
%
42+
%
4343
% rm & palatino
4444
% tt & inconsolata
4545
% sf & helvetica
@@ -97,9 +97,9 @@
9797
\renewcommand{\title} [1]{\def\RJ@title{#1}}
9898
\newcommand {\subtitle} [1]{\def\RJ@subtitle{#1}}
9999

100-
% Control appearance of titles: make slightly smaller than usual, and
100+
% Control appearance of titles: make slightly smaller than usual, and
101101
% suppress section numbering. See http://tex.stackexchange.com/questions/69749
102-
% for why we don't use \setcounter{secnumdepth}{-1}
102+
% for why we don't use \setcounter{secnumdepth}{-1}
103103

104104
\usepackage[medium]{titlesec}
105105
\usepackage{titletoc}
@@ -109,7 +109,7 @@
109109

110110
% Article layout ---------------------------------------------------------------
111111

112-
% Environment |article| clears the article header information at its beginning.
112+
% Environment |article| clears the article header information at its beginning.
113113
% We use |\FloatBarrier| from the placeins package to keep floats within
114114
% the article.
115115
\RequirePackage{placeins}
@@ -118,12 +118,8 @@
118118
% Refereed articles should have an abstract, so we redefine |\abstract| to
119119
% give the desired style
120120

121-
\renewcommand{\abstract}[1]{%
122-
\setstretch{1}%
123-
\noindent%
124-
\small%
125-
\textbf{Abstract} #1
126-
}
121+
\renewcommand{\abstract}[1]{\noindent\textbf{Abstract} #1}
122+
\renewenvironment{abstract}{\noindent\textbf{Abstract}~}{}
127123

128124
% The real work is done by a redefined version of |\maketitle|. Note
129125
% that even though we do not want chapters (articles) numbered, we
@@ -173,14 +169,14 @@
173169
}
174170

175171
% We want bibliographies as starred sections within articles.
176-
%
172+
%
177173
\RequirePackage[sectionbib,round]{natbib}
178174
\bibliographystyle{abbrvnat}
179175
\renewcommand{\bibsection}{\section*{References}}
180176

181177
% Equations, figures and tables are counted within articles, but we do
182178
% not show the article number. For equations it becomes a bit messy to avoid
183-
% having hyperref getting it wrong.
179+
% having hyperref getting it wrong.
184180

185181
% \numberwithin{equation}{chapter}
186182
\renewcommand{\theequation}{\@arabic\c@equation}
@@ -210,7 +206,7 @@
210206
\fontsize{50pt}{50pt}\selectfont
211207
The \raisebox{-8pt}{\includegraphics[height=77pt]{Rlogo-5}}\hspace{10pt}
212208
Journal
213-
209+
214210
\end{center}
215211
{\large \hfill Volume \RJ@volume/\RJ@number, \RJ@month{} \RJ@year \quad}
216212

0 commit comments

Comments
 (0)