¿Cómo puedo etiquetar el eje X?

¿Cómo puedo etiquetar el eje X?

Pregunta: Estoy tratando de dibujar dos gráficos en los que quiero etiquetar correlación positiva perfecta en el eje x en el primer gráfico y correlación negativa perfecta en el segundo gráfico.

MWE:

\documentclass{article}
\usepackage[a4paper,top=0.6in,bottom=0.3in,left=0.5in,right=0.5in,headheight=14.5pt]{geometry}
\usepackage{blindtext}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage[utf8]{inputenc}
\usepackage[misc]{ifsym}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{forest}
\usepackage{tikz}
\usepackage{parskip}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}[domain = 0:5]
\draw[<->] (-1,0) -- (5.5,0) node[right] {$x$};
\draw[<->] (0,-1) -- (0,5.5) node[right] {$y$};
\draw[color = blue, thick] (1,1) -- (2,2) -- (3,3) -- (4,4) -- (5,5);
\fill (1,1)  circle[radius=2pt];
\fill (2,2)  circle[radius=2pt];
\fill (3,3)  circle[radius=2pt];
\fill (4,4)  circle[radius=2pt];
\fill (5,5)  circle[radius=2pt];
\end{tikzpicture}\qquad\qquad\qquad\qquad
\begin{tikzpicture}[domain = 0:5]
\draw[<->] (-1,0) -- (5.5,0) node[right] {$x$};
\draw[<->] (0,-1) -- (0,5.5) node[right] {$y$};
\draw[color = blue, thick] (1,5) -- (2,4) -- (3,3) -- (4,2) -- (5,1);
\fill (1,5)  circle[radius=2pt];
\fill (2,4)  circle[radius=2pt];
\fill (3,3)  circle[radius=2pt];
\fill (4,2)  circle[radius=2pt];
\fill (5,1)  circle[radius=2pt];
\end{tikzpicture}
\end{document}

Respuesta1

Simplemente agregue un segundo nodo cuando dibuje el eje x. pos=0.6significa que se coloca justo después del punto medio del camino (0 es el inicio, 1 es el final).

\draw[<->] (-1,0) -- (5.5,0) node[right] {$x$} node[pos=0.6,below=3mm] {Perfect positive correlation};

Si está interesado, puede acortar un poco el código usando \draw plot, como en el siguiente ejemplo:

\documentclass{article}
\usepackage[a4paper,top=0.6in,bottom=0.3in,left=0.5in,right=0.5in,headheight=14.5pt]{geometry}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[
   % domain and samples applies to the plot commands below
   domain = 1:5,samples=5
   ]

\draw[<->] (-1,0) -- (5.5,0) node[right] {$x$} node[pos=0.6,below=3mm] {Perfect positive correlation};
\draw[<->] (0,-1) -- (0,5.5) node[right] {$y$};
\draw[color = blue, thick, mark=*]  plot(\x,\x);

\begin{scope}[xshift=8cm]
\draw[<->] (-1,0) -- (5.5,0) node[right] {$x$} node[pos=0.6,below=3mm] {Perfect negative correlation};
\draw[<->] (0,-1) -- (0,5.5) node[right] {$y$};
\draw[color = blue, thick, mark=*]  plot(\x,-\x+6);
\end{scope}
\end{tikzpicture}
\end{document}

información relacionada