使绘图的 y 轴范围在某些部分具有更多值

使绘图的 y 轴范围在某些部分具有更多值

对于下面的 MWE:

\documentclass{report}
\usepackage[left=2.5cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage{pgfplots}


\begin{document}

\begin{figure}[H]
\begin{tikzpicture}
\begin{axis}[%
scaled y ticks = true,
width=1*\textwidth,
height=8cm,
xlabel={Query $\#$},
ylabel={Elapsed Time (in seconds)},
grid=both,
minor x tick num=5,
minor y tick num=5,
enlarge x limits=0,
legend entries={Original, byHalf, Random, Hybrid},
scaled x ticks = true
]
\addplot [
color=blue,mark=x,
solid,
line width=1.0pt
]
coordinates{
(0,39.0819) (1,2292) (2,4484.82) (3,6057.37) (4,38.3475) (5,15.4616) (6,38.5286) (7,15.411) (8,38.3627) (9,14.8773) (10,15.4079) (11,38.8762) (12,20.9027) (13,35.6657) 
};

\addplot [
color=red,mark=x,
solid,
line width=1.0pt
]
coordinates{
(0,38.9575) (1,2720.19) (2,1929.3) (3,1677.22) (4,111.165) (5,68.6833) (6,94.4457) (7,76.0591) (8,94.0201) (9,109.844) (10,78.6465) (11,91.7805) (12,12.9179) (13,78.6684) 
};


\end{axis}
\end{tikzpicture}
\end{figure}

\end{document}

如果你编译它,你会看到图的最后一部分看起来好像线条互相接触,它们看起来是相同的,但实际上它们之间大约有 50 秒。发生这种情况是因为 y 轴刻度(自动)以 1000 的步长前进。

我该如何控制它?是否可以先让它以 100 的步长运行,然后在达到 1000 时切换到 1000 的步长?

答案1

您当前使用的轴是线性的。这意味着,如果您在 0 到 1000 之间添加更多点,则只需在相同距离内添加更多线条和标签(0 到 1000 之间的距离仍然相同)。

为了突出 0 和 1000 之间的差异,您可以使用对数刻度。使用对数刻度,0 和 10 之间的距离将与 10 和 100 或 100 和 1000 之间的距离相同(依此类推)。

您的示例将如下所示,带有对数 y 轴:

截屏

\documentclass{report}
\usepackage[left=2.5cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage{pgfplots}


\begin{document}

\begin{figure}[H]
  \begin{tikzpicture}
    \begin{semilogyaxis}[%
      width=1*\textwidth,
      height=8cm,
      xlabel={Query $\#$},
      ylabel={Elapsed Time (in seconds)},
      grid=both,
      enlarge x limits=0,
      legend entries={Original, byHalf, Random, Hybrid},
      scaled x ticks = true
    ]
    \addplot [color=blue,mark=x,solid,line width=1.0pt]
      coordinates{
        (0,39.0819) (1,2292) (2,4484.82) (3,6057.37) (4,38.3475) (5,15.4616) (6,38.5286) (7,15.411) (8,38.3627) (9,14.8773) (10,15.4079) (11,38.8762) (12,20.9027) (13,35.6657) 
   };

    \addplot [color=red,mark=x,solid,line width=1.0pt]
      coordinates{
       (0,38.9575) (1,2720.19) (2,1929.3) (3,1677.22) (4,111.165) (5,68.6833) (6,94.4457) (7,76.0591) (8,94.0201) (9,109.844) (10,78.6465) (11,91.7805) (12,12.9179) (13,78.6684) 
    };
  \end{semilogyaxis}
\end{tikzpicture}
\end{figure}

\end{document}

而不是使用

\begin{semilogyaxis} 
...
\end{semilogyaxis}

你也可以使用

\begin{axis}[xmode=normal,ymode=log]
...
\end{axis}

有关更多设置和信息,请查看pgf图文档(第 16-19 页)。

相关内容