Theoretical Quantiles vs Empirical (Sample) Quantiles\begin{document}
\begin{tikzpicture}[scale=1.5]
% Draw grid for better readability
\draw[very thin, gray!30] (-2.5,-2) grid (2.5,3);
% Draw Axes
\draw[->, thick] (-2.5,0) -- (2.5,0) node[right] {Theoretical Quantiles ($q_{(j)}$)};
\draw[->, thick] (0,-2) -- (0,3) node[above] {Sample Quantiles ($X_{(j)}$)};
% Draw Tick Marks
\foreach \x in {-2,-1,1,2}
\draw (\x, 0.1) -- (\x, -0.1) node[below] {\small \x};
\foreach \y in {-1,1,2}
\draw (0.1, \y) -- (-0.1, \y) node[left] {\small \y};
% Reference Line (y = x + 0.65 approx)
\draw[dashed, blue, thick] (-2.2, -1.55) -- (2.2, 2.85);
% Data Points
\filldraw[black] (-1.645, -1.0) circle (1.5pt);
\filldraw[black] (-1.036, -0.1) circle (1.5pt);
\filldraw[black] (-0.674, 0.16) circle (1.5pt);
\filldraw[black] (-0.385, 0.41) circle (1.5pt);
\filldraw[black] (-0.125, 0.62) circle (1.5pt);
\filldraw[black] (0.125, 0.80) circle (1.5pt);
\filldraw[black] (0.385, 1.26) circle (1.5pt);
\filldraw[black] (0.674, 1.54) circle (1.5pt);
\filldraw[black] (1.036, 1.71) circle (1.5pt);
\filldraw[black] (1.645, 2.3) circle (1.5pt);
% Legend or Title
\node[draw, fill=white, font=\small] at (1.2, -1.5) {Sample Size $n=10$};
\end{tikzpicture}
\end{document}