我怎样才能使提供的 x 坐标在视觉上以相同的距离分开?
因此,不应使用 0 500 1000 1500 2000,而应使用
0 10 20 50 100 200 ...
第二件事是 ylabel 和 y 坐标重叠,如何将标签移得更远?
\begin{tikzpicture}
\begin{axis}[
xlabel=Züge(\#),
ylabel=Zeit(s)]
\addplot[color=red,mark=x] coordinates {
(10,25)
(20,12)
(50,33)
(100,1800)
(200,1800)
(500,1800)
(1000,509)
(2000,1514)
};
\end{axis}
\end{tikzpicture}
答案1
我会将对数刻度与用户定义的刻度和刻度标签结合使用。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{semilogxaxis}[
xlabel=Züge(\#),
ylabel=Zeit(s),
xtick=\empty,
extra x ticks={10,20,50,100,200,500,1000,2000},
extra x tick labels={10,20,50,100,200,500,1000,2000}]
\addplot[color=red,mark=x] coordinates {
(10,25)
(20,12)
(50,33)
(100,1800)
(200,1800)
(500,1800)
(1000,509)
(2000,1514)
};
\end{semilogxaxis}
\end{tikzpicture}
\end{document}