::
Ho usato questo codice, ma è il massimo che sono riuscito a realizzare
`
\documentclass[12pt,a4paper,oneside]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\linespread{1.5}
\usepackage{layaureo}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\draw[help lines, color=white];
\draw[->,ultra thick] (0,0)–(16,0) node
{$x$};
\draw[->,ultra thick] (0,0)–(0,8) node[above]{$y$};
\foreach \Point in {
(0,6), (2,4.5), (5,2.8), (9,2.5), (15,2.5)
}
{
\node at \Point {\textbullet};
}
\end{tikzpicture}
\end{document}
`