latex - Creating a diagram with quantity of values -


i'm trying create diagram following specification:

x-axis: values file.

y-axis: quantity of values

here image describe, need.

the order of values random.

i hope, can me problem.

here example.

\documentclass[paper=a4,12pt,version=last]{scrartcl} \usepackage{pgfplots}  \begin{document}    \begin{tikzpicture}    \begin{axis}[ymin=0,       x tick label style={/pgf/number format/1000 sep=},       xlabel={values},       y tick label style={/pgf/number format/1000 sep=},       ylabel={amount of values}]       \addplot table [ ... ,col sep=semicolon]  {data.csv};    \end{axis}    \end{tikzpicture} \end{document} 

instead of 3 points shall command calculate y-values. in data-file values in 1 clolumn.


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -