You can also adapt the solution from Braces for cases in tabular environment which allows you to mark the top and bottom using \tikzmark and then do the drawing afterwards:

Code:
\documentclass{book}
\usepackage{multirow,bigdelim,dcolumn,booktabs}
\usepackage{xparse}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathreplacing}
\newcommand{\tikzmark}[1]{\tikz[overlay,remember picture] \node (#1) {};}
%% Adapted form https://tex.stackexchange.com/questions/206898/braces-for-cases-in-tabular-environment/207704#207704
\newcommand{\BraceAmplitude}{0.4em}%
\newcommand{\VerticalOffset}{0.5ex}%
\newcommand*{\HorizontalOffset}{0.0em}%
\NewDocumentCommand{\InsertRightBrace}{%
O{} % #1 = draw options
O{\HorizontalOffset,\VerticalOffset} % #2 = optional brace shift options
m % #3 = top tikzmark
m % #4 = bottom tikzmark
m % #5 = node text
}{%
\begin{tikzpicture}[overlay,remember picture]
\coordinate (Brace Top) at ($(#3.north) + (#2)$);
\coordinate (Brace Bottom) at ($(#4.south) + (#2)$);
\draw [decoration={brace, amplitude=\BraceAmplitude}, decorate, thick, draw=blue, #1]
(Brace Top) -- (Brace Bottom)
node [pos=0.5, anchor=west, align=left, text width=1.25cm, color=black, xshift=\BraceAmplitude] {#5};
\end{tikzpicture}%
}%
\begin{document}
\noindent
\begin{tabular}{*{9}{D{.}{.}{1}@{\hskip 7.5pt}}cc}
\toprule
\multicolumn{11}{c}{Sample values: each line contains one entire beat)}\tabularnewline
\midrule
68.1 &72.8 &78.4 &85.6 &93.6 &98.1 &95.3 &91.2 &91.1 &... & \tikzmark{Top Mark}\tabularnewline
74.4 &79.2 &85.6 &92.8 &100.8 &108.8 &115.2 &121.6 & &... & \tabularnewline
73.6 &77.6 &84.0 &91.2 &100.0 &108.8 &117.6 &124.8 & &... & \tikzmark{Bottom Mark}\tabularnewline
\bottomrule
\end{tabular}
\InsertRightBrace[red, ultra thick]{Top Mark}{Bottom Mark}{Variable Length}
\end{document}
\{into\}. – Przemysław Scherwentke Nov 23 '14 at 01:05\rdelim\{{3}as\rdelim\{3}. – Franck Dernoncourt Nov 23 '14 at 01:07