Me gustaría reemplazar las etiquetas numéricas (por ejemplo, 1,2,3,4,5) en el eje x con nombres (por ejemplo, A,B,C,D,E
) en un entorno de gráfico grupal en uncaso por casobase. El entorno de la trama grupal parece admitir fácilmente sólo unacomúnEje x en todos los gráficos de grupo. ¿Cómo puedo cambiar las etiquetas del eje x en el primer gráfico a { A,B,C,D,E
} y a { F,G,H,I,S
} en el segundo gráfico?
He titulado mi pregunta a propósito para que se parezca a la siguiente publicación:TikZ: Reemplazar los valores (etiquetas) en el eje x con nombres
\documentclass[]{article}
\usepackage{pgfplots, alphalph}
\usepgfplotslibrary{groupplots}
\usepackage{filecontents}
\begin{filecontents*}{mydata.dat}
A B
1 3
2 4
3 1
4 7
5 8
\end{filecontents*}
\begin{filecontents*}{mydata2.dat}
C D
1 7
2 5
3 4
4 6
5 7
\end{filecontents*}
\begin{document}
\begin{figure}
\makebox[\textwidth]{%
\begin{tikzpicture}[font=\footnotesize\sffamily]
\begin{groupplot}[
group style={group size=2 by 1, vertical sep=70pt,
ylabels at=edge left
},
view={0}{90},
width=5.2cm,
height=5.2cm,
scale only axis,
scaled ticks = false,
tick label style={/pgf/number format/fixed},
xlabel={x-axis},
ylabel={y-axis},
unbounded coords=jump]
]
\nextgroupplot [title={\it{Title 1}}]
\addplot[black, thick, mark=o, only marks]
table[x=A,y=B]{mydata.dat};
\addplot[black, mark=x, only marks]
table[x=C,y=D]{mydata2.dat};
\nextgroupplot [title={\it{Title 2}}]
\addplot[black, thick, mark=o, only marks]
table[x=C,y=D]{mydata2.dat};
\end{groupplot}
\end{tikzpicture}
}
\end{figure}
\end{document}
Me gustaría aprender a crear opciones personalizadas del eje x (personalizadas para cada gráfico individual en un entorno de gráfico grupal) en lugar de depender de etiquetas comunes del eje x en todo el espectro de gráficos en el gráfico grupal.
Respuesta1
Puedes usar
xtick={1,...,5},
xticklabels={A,B,C,D,E}
en las opciones de \nextgroupplot
. Cambia xtick={1...,5},
como quieras. Además, no utilice el comando tex \it{...}
tal cual \it
y no requiere ningún argumento. Úselo \itshape
como lo hice yo.
\documentclass[]{article}
\usepackage{pgfplots, alphalph}
\usepgfplotslibrary{groupplots}
\usepackage{filecontents}
\begin{filecontents*}{mydata.dat}
A B
1 3
2 4
3 1
4 7
5 8
\end{filecontents*}
\begin{filecontents*}{mydata2.dat}
C D
1 7
2 5
3 4
4 6
5 7
\end{filecontents*}
\begin{document}
\begin{figure}
\makebox[\textwidth]{%
\begin{tikzpicture}[font=\footnotesize\sffamily]
\begin{groupplot}[
group style={group size=2 by 1, vertical sep=70pt,
ylabels at=edge left
},
view={0}{90},
width=5.2cm,
height=5.2cm,
scale only axis,
scaled ticks = false,
tick label style={/pgf/number format/fixed},
xlabel={x-axis},
ylabel={y-axis},
unbounded coords=jump]
]
\nextgroupplot [title={\itshape Title 1},
xtick={1,...,5},
xticklabels={A,B,C,D,E}]
\addplot[black, thick, mark=o, only marks]
table[x=A,y=B]{mydata.dat};
\addplot[black, mark=x, only marks]
table[x=C,y=D]{mydata2.dat};
\nextgroupplot [title={\itshape Title 2},
xtick={1,...,5},
xticklabels={F,G,H,I,S}]
\addplot[black, thick, mark=o, only marks]
table[x=C,y=D]{mydata2.dat};
\end{groupplot}
\end{tikzpicture}
}
\end{figure}
\end{document}
Generalmente \nextgroupplot
toma todas las opciones que toma el axis
entorno. Por lo tanto, puede personalizar todos sus x axis
parámetros aquí caso por caso.