mirror of
https://forge.s1gm4.eu/GENIOMHE/machine-learning.git
synced 2023-09-27 18:56:25 +02:00
20 lines
270 B
TeX
20 lines
270 B
TeX
\documentclass[tikz,a4paper]{standalone}
|
|
|
|
\usepackage{tikz}
|
|
|
|
\begin{document}
|
|
|
|
\usetikzlibrary{datavisualization}
|
|
|
|
\begin{tikzpicture}
|
|
\datavisualization[visualize as smooth line]
|
|
data {
|
|
x, y
|
|
2, 1,
|
|
3, 2,
|
|
4, 1.5
|
|
};
|
|
\end{tikzpicture}
|
|
|
|
\end{document}
|