x軸の数値ラベル(例:1、2、3、4、5)を名前(例:A,B,C,D,E
グループプロット環境で、ケースバイケースグループプロット環境は、簡単には一般A,B,C,D,E
すべてのグループ プロットの x 軸。最初のプロットの x 軸ラベルを { } に、F,G,H,I,S
2 番目のプロットのx 軸ラベルを { } に変更するにはどうすればよいですか?
私は意図的に、次の投稿に似たタイトルを質問に付けました。TikZ: x軸の値(ラベル)を名前に置き換える
\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}
グループ プロット内のさまざまなプロットにわたって共通の x 軸ラベルに頼るのではなく、カスタマイズされた x 軸オプション (グループ プロット環境内の個々のプロットごとにカスタマイズ) を作成する方法を学習したいと思います。
答え1
使用できます
xtick={1,...,5},
xticklabels={A,B,C,D,E}
のオプションで、必要に応じて\nextgroupplot
変更してください。また、tex コマンドはそのまま使用せず、引数も取りません。私が使用したように使用してください。xtick={1...,5},
\it{...}
\it
\itshape
\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}
一般的に、環境\nextgroupplot
によって取得されるすべてのオプションを取得します。したがって、ここですべてのパラメータをケースごとにaxis
カスタマイズできます。x axis