Estou usando o pgfplot para desenhar um gráfico ybar. Ele pode preencher a cor para um gráfico completo, mas desejo preencher apenas uma caixa com a cor vermelha. por exemplo, preencha o compartimento 3 com vermelho.
O código atual preenche todas as caixas com a cor vermelha conforme abaixo:
\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}
A saída é:
Três perguntas:
- Como preencher apenas a caixa 3 com a cor vermelha?
- Como definir o eixo y para começar em 0 (agora é 5).
- O último compartimento deveria ser 7, mas parece que esse não foi planejado.
Responder1
Aqui está outra sugestão usando ybar
em vez dissoybar 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}
Observe que, se você usar a opção, scale only axis
deverá remover o -45pt
do bar width
cálculo.
Também é possível mudar o xtick
exticklabel
\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}
Responder2
Aqui está uma solução usando discard if
e discard if not
, como você não pode colorir cada coluna apropriadamente, por assim dizer, você precisa filtrá-las usando as macros acima.
O espaço que você vê antes e depois das colunas é fornecido por enlarge x limits={abs=0.5}
, basta deletar ou comentar esta linha para removê-la, embora eu sugira mantê-la para fins estéticos.
O conteúdo recebe um número de valor de 1 a 8, chamado Val, e o próprio valor é chamado Num neste caso. Então você desenha red!5
e descarta o vermelho usando discard if={Val}{3}
, depois desenha o vermelho e descarta o resto, usando discard if not={Val}{3}
. Este comando é definido no preâmbulo.
Aliás, a última coluna é 8, de acordo com o conteúdo do seu test.dat
arquivo.
Uma última coisa x expr=\coordindex
foi comentada na hora de definir as red!5
colunas porque, caso contrário, dá resultados indesejados (sinceramente, não sei por que, não consegui identificar o problema). Eu também removi ybar interval
e saí 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}
Responder3
Não é um bom código, mas funciona.
\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}