mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
24 lines
639 B
TeX
24 lines
639 B
TeX
% Source: http://tex.stackexchange.com/a/65518/5645
|
|
\documentclass{article}
|
|
\usepackage[pdftex,active,tightpage]{preview}
|
|
\setlength\PreviewBorder{2mm}
|
|
\usepackage{pgfplots}
|
|
|
|
\begin{document}
|
|
\begin{preview}
|
|
\begin{tikzpicture}
|
|
\begin{axis}[
|
|
ybar interval,
|
|
xticklabel=
|
|
\pgfmathprintnumber\tick--\pgfmathprintnumber\nexttick
|
|
]
|
|
\addplot+[hist={bins=3}]
|
|
table[row sep=\\,y index=0] {
|
|
data\\
|
|
1\\ 2\\ 1\\ 5\\ 4\\ 10\\
|
|
7\\ 10\\ 9\\ 8\\ 9\\ 9\\
|
|
};
|
|
\end{axis}
|
|
\end{tikzpicture}
|
|
\end{preview}
|
|
\end{document}
|