我正在使用 pgfplot 绘制 ybar 图。它可以为整个图形填充颜色,但我希望只用红色填充一个箱。例如,用红色填充箱 3。
当前代码用红色填充所有箱子,如下所示:
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\usepackage{filecontents}
\begin{filecontents}{test.dat}
15
20
22
10
5
15
33
27
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis lines=left,
ymajorgrids = true,
%xticklabel interval boundaries,
x tick label style={rotate=30,anchor=east}
]]
\addplot[black,fill=red!5,ybar interval] table[x expr=\coordindex,y index=0] {test.dat};
\end{axis}
\end{tikzpicture}
\end{document}
输出为:
三个问题:
- 如何仅用红色填充箱子 3?
- 如何设置 y 轴从 0 开始(现在是 5)。
- 最后一个箱子应该是 7 但似乎没有绘制那个。
答案1
这是另一个建议,ybar
使用ybar interval
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\usepackage{filecontents}
\begin{filecontents}{test.dat}
15
20
22
10
5
15
33
27
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\newcommand\coordindexmax{7}% the maximum of the coordindex
\begin{axis}[
axis y line=left,
axis x line*=left,
ymajorgrids = true,
ymin=0,
x tick label style={rotate=30,anchor=east},
xtick={0,...,\coordindexmax},
ybar,
bar shift=0pt,
bar width=(\pgfkeysvalueof{/pgfplots/width}-45pt)/(\coordindexmax+1),
enlarge x limits={abs=\pgfkeysvalueof{/pgf/bar width}/2}
]
\addplot[black,fill=red!5] table[x expr=\coordindex,y index=0] {test.dat};
\addplot[black,fill=red] table[x expr=\coordindex,y index=0,
restrict expr to domain={\coordindex}{3:3}
] {test.dat};
\end{axis}
\end{tikzpicture}
\end{document}
请注意,如果您使用该选项,scale only axis
则必须-45pt
从bar width
计算中删除。
也可以转移xtick
和xticklabel
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\usepackage{filecontents}
\begin{filecontents}{test.dat}
15
20
22
10
5
15
33
27
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\newcommand\coordindexmax{7}% the maximal coordindex
\begin{axis}[
axis y line=left,
axis x line*=left,
ymajorgrids = true,
ymin=0,
xtick style={xshift=-\pgfkeysvalueof{/pgf/bar width}/2},% shift the xtick
x tick label style={
xshift=-\pgfkeysvalueof{/pgf/bar width}/2, % shift the x xticklabel
rotate=30,anchor=east,
},
xtick={0,...,\coordindexmax},
ybar,
bar shift=0pt,
bar width=(\pgfkeysvalueof{/pgfplots/width}-45pt)/(\coordindexmax+1),
enlarge x limits={abs=\pgfkeysvalueof{/pgf/bar width}/2}
]
\addplot[black,fill=red!5] table[x expr=\coordindex,y index=0] {test.dat};
\addplot[black,fill=red] table[x expr=\coordindex,y index=0,
restrict expr to domain={\coordindex}{3:3}
] {test.dat};
\end{axis}
\end{tikzpicture}
\end{document}
答案2
这是一个使用discard if
和的解决方案discard if not
,因为您无法恰当地为每一列着色,所以您需要使用上面的宏对它们进行过滤。
您在列之前和之后看到的空间由提供enlarge x limits={abs=0.5}
,只需删除或注释掉此行即可将其删除,但我建议出于美观目的保留它。
内容被赋予一个从 1 到 8 的值编号,称为 Val,在本例中,值本身称为 Num。因此,您绘制red!5
并使用 丢弃红色的discard if={Val}{3}
,然后使用 绘制红色的并丢弃其余的discard if not={Val}{3}
。此命令在序言中定义。
顺便说一下,根据您的test.dat
文件内容,最后一列是 8。
最后一件事,x expr=\coordindex
在定义列时已被注释掉,red!5
因为如果不这样做,它会产生不理想的结果(老实说,我不知道为什么,我无法找出问题所在)。 我也删除ybar interval
并留下了ybar
。
\documentclass[border=10pt]{standalone}
\usepackage{filecontents}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\pgfplotsset{
discard if/.style 2 args={
x filter/.code={
\ifdim\thisrow{#1} pt=#2pt
\def\pgfmathresult{inf}
\fi
}
},
discard if not/.style 2 args={
x filter/.code={
\ifdim\thisrow{#1} pt=#2pt
\else
\def\pgfmathresult{inf}
\fi
}
}
}
\pgfplotsset{compat=1.8}
\begin{document}
\begingroup\newif\ifmy
\IfFileExists{test.dat}{}{\mytrue}
\ifmy
\begin{filecontents}{test.dat}
#Val Num
1 15
2 20
3 22
4 10
5 5
6 15
7 33
8 27
\end{filecontents}
\fi\endgroup
\begin{tikzpicture}
\begin{axis}[ybar=0pt,
axis lines=left,
ymajorgrids = true,
bar width=1,
x tick label style={rotate=30,anchor=east},
xtick={1,...,8},
ytick={0,5,10,...,30},
xmin=0,
xmax=8,
ymin=0,
ymax=35,
enlarge x limits={abs=0.5}
]
\addplot[ draw,
fill=red!5,
discard if={Val}{3},
ybar
]
table[
%x expr=\coordindex,
y index=0,
x=Val,
y=Num,
meta=Num
] {test.dat};
\addplot[ draw,
fill=red,
discard if not={Val}{3},
ybar
]
table[
x expr=\coordindex,
y index=0,
x=Val,
y=Num,
meta=Num
] {test.dat};
\end{axis}
\end{tikzpicture}
\end{document}
答案3
这不是一个好的代码,但是它可以起作用。
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\usepackage{tikz}
\usepackage{filecontents}
\begin{filecontents}{test.dat}
15
20
22
10
5
15
33
27
27 % dummy
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis lines=left,
ymajorgrids = true,
xmin=0, xmax=8.5,
ymin=0, ymax=40,
xtick={1,2,3,4,5,6,7,8},
ytick={0,5,10,15,20,25,30,35},
x tick label style={rotate=30,anchor=east}
]]
\addplot[black,fill=red!5,ybar interval] table[x expr=\coordindex,y index=0] {test.dat};
\addplot[fill=red] coordinates
{(2,0) (2,23) (3,23) (3,0)} --cycle;
\end{axis}
\end{tikzpicture}
\end{document}