Tengo un problema al crear un diagrama de barras de demanda durante un día. Mis coordenadas x están en "minutos desde la medianoche", pero quiero mostrar la hora del día en el eje x en mis puntos especificados (por ejemplo, 6:30 am en lugar de 390 minutos). xtick
y xticklabels
debería hacer esto por mí. Y lo hacen, cuando yo no tengo ybar interval=1
, pero entonces ya no es el tipo de trama adecuado.
Mi código es el siguiente:
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
xtick={390,540,720,900,1020},
xticklabels={6:30,9:00,12:00,15:00,17:00},
ylabel=Required staff,
xlabel=Time of day,
ybar interval=1,
width=0.8\textwidth,
height=5cm,
axis lines=left,
ymin=0
]
\addplot
coordinates {(390,1) (450,2) (510,3) (570,6) (720,3) (735,2) (780,3) (795,4) (930,2) (960,1) (1020,1)};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
y produce:
Los comentarios externos ybar interval=1,
dan como resultado:
Respuesta1
El manual (pag. 87 y 320 en mi versión) dice que ybar interval
se instala solo por parcela. Se mete con la definición de ticks si lo configura en el eje.
Agregaría enlarge x limits=0.05, enlarge y limits=upper
a las opciones del eje, para tener un poco de espacio para respirar en el eje.
Para usar el color predeterminado para los diagramas, puede usar el ybar
estilo genérico y luego addplot+
:
\documentclass{article}
\usepackage{pgfplots}\pgfplotsset{compat=1.13}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[
ybar, %% installs bar cycle list also
xtick={390,540,720,900,1020},
xticklabels={6:30,9:00,12:00,15:00,17:00},
ylabel=Required staff,
xlabel=Time of day,
width=0.8\textwidth,
height=5cm,
axis lines=left,
ymin=0,
enlarge x limits=0.05,
enlarge y limits=upper,
]
\addplot+ [ybar interval]
coordinates {(390,1) (450,2) (510,3) (570,6) (720,3) (735,2) (780,3) (795,4) (930,2) (960,1) (1020,1)};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
Respuesta2
Podrías agregar un segundo axis
entorno con las mismas dimensiones:
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.14}% <- current version is 1.14
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\pgfplotsset{
xmin=390,xmax=1020,
width=0.8\textwidth,
height=5cm,
axis lines=left,
ymin=0,ymax=6
}
\begin{axis}[
xtick={390,540,720,900,1020},
xticklabels={6:30,9:00,12:00,15:00,17:00},
ylabel=Required staff,
xlabel=Time of day
]
\end{axis}
\begin{axis}[
axis lines=none,
ybar interval=1,
xtick=\empty,
]
\addplot
coordinates {
(390,1) (450,2) (510,3) (570,6) (720,3) (735,2)
(780,3) (795,4) (930,2) (960,1) (1020,1)
};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}