mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
added 3 examples
This commit is contained in:
parent
33c9a52e82
commit
e3ac2dc858
6 changed files with 191 additions and 0 deletions
24
tikz/histogram-simple/histogram-simple.tex
Normal file
24
tikz/histogram-simple/histogram-simple.tex
Normal file
|
@ -0,0 +1,24 @@
|
|||
% 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}
|
Loading…
Add table
Add a link
Reference in a new issue