当我将 y 轴设置为对数时,值范围 [0,1) 的条形图不会被呈现,如下所示:
这是为什么?我该如何解决?
\documentclass{article}
\usepackage{filecontents,pgfplots,pgfplotstable}
\pgfplotsset{compat=1.18}
\begin{filecontents*}{data.dat}
1,3
2,2
3,1
4,1
5,0
6,1
6,2
\end{filecontents*}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
ybar,
ymode=log
]
\addplot [color=gray,fill] table [
x index=0,
y index=1,
col sep=comma
] {data.dat};
\end{axis}
\end{tikzpicture}
\end{document}
答案1
您询问的是值范围 [0,1),但您没有此范围内的任何值。在对数轴上包含零是没有意义的。
我已经改变了您的测试值,并log origin=infty
假设您希望您的条形图从轴的底部开始。
\begin{filecontents}{data.dat}
1,0.1
2,0.2
3,0.3
4,0.4
5,1
6,2
7,3
\end{filecontents}
\documentclass[tikz, border=1cm]{standalone}
\usepackage{filecontents, pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
ybar,
ymode=log,
log origin=infty,
]
\addplot[gray, fill] table[
x index=0,
y index=1,
col sep=comma
] {data.dat};
\end{axis}
\end{tikzpicture}
\end{document}
没有log origin=infty
:
答案2
coordinates
以下是使用和 的解决方案ymin
:
\documentclass{article}
\usepackage{filecontents,pgfplots,pgfplotstable}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
ybar,
ymode=log,
ymin=1e-2
]
\addplot [color=gray,fill] coordinates {
(1,3)
(2,2)
(3,1)
(4,1)
(5,0)
(6,1)
(7,0.1)
};
\end{axis}
\end{tikzpicture}
\end{document}