我的 X 軸上有一些重複的數字。這是我的程式碼-
\begin{tikzpicture}
\pgfplotstableread{Figures/measurements.dat}
\datatable
\begin{axis}[symbolic x coords={1.2.1.a,1.2.3.b,1.1.3.c,1.1.1.d,1.3.1.e,1.3.3.f,3.3.3.g,1.3.3.h,1.1.3.i,1.1.1.j,1.2.1.k,1.3.1.l},
x tick label style={rotate=90,anchor=east},
grid=major,
xlabel=Processor Configuration,
ylabel=Clock Cycles,
legend pos=outer north east,
legend columns=1,
cycle list name=exotic,
%xtick=data,
xticklabels={1.2.1,1.2.3,1.1.3,1.1.1,1.3.1,1.3.3,3.3.3,1.3.3,1.1.3,1.1.1,1.2.1,1.3.1},
x label style={at={(0.5,-0.1)}},
]
\addplot table[y=App_Stop] from \datatable ;
\addlegendentry{App Stop};
\end{axis}
\end{tikzpicture}
這是我的數據文件 -
Proc_config App_Stop
1.2.1.a 138
1.2.3.b 923
1.1.3.c 1708
1.1.1.d 923
1.3.1.e 138
1.3.3.f 923
3.3.3.g 923
1.3.3.h 1427
1.1.3.i 923
1.1.1.j 923
1.2.1.k 138
1.3.1.l 923
現在您可以看到我有 2 個條目,例如 1.2.1 重新命名為 1.2.1.a 和 1.2.1.k。因此,為了避免 x 軸刻度標籤中出現這些 a、b、c...、l,我xticklabels=
在程式碼中加入了該指令。但是,它不會顯示我添加的每個標籤。但是,如果我註釋此行並取消註釋 xtick=data 行,我會得到正確的輸出,但它的每個條目都有所有後綴 a、b、c...l。我怎樣才能克服這種情況?
答案1
這給出了所需的輸出:
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\pgfplotstableread{data.dat}
\datatable
\begin{axis}[symbolic x coords={1.2.1.a,1.2.3.b,1.1.3.c,1.1.1.d,1.3.1.e,1.3.3.f,3.3.3.g,1.3.3.h,1.1.3.i,1.1.1.j,1.2.1.k,1.3.1.l},
x tick label style={rotate=90,anchor=east},
grid=major,
xlabel=Processor Configuration,
ylabel=Clock Cycles,
legend pos=outer north east,
legend columns=1,
cycle list name=exotic,
xtick=data,
xticklabels={1.2.1,1.2.3,1.1.3,1.1.1,1.3.1,1.3.3,3.3.3,1.3.3,1.1.3,1.1.1,1.2.1,1.3.1},
x label style={at={(0.5,-0.1)}},
]
\addplot table[y=App_Stop] from \datatable ;
\addlegendentry{App Stop};
\end{axis}
\end{tikzpicture}
\end{document}