我正在尝试按照这个答案来绘制直方图。我可以更改直方图的填充颜色,但无法更改条形的线条颜色。
问题:我必须进行哪些修改才能使条形图出现黑色轮廓。
仅供参考(这是@Jake 提供的代码)
\documentclass[border=5mm]{standalone}
\usepackage{filecontents}
\usepackage{pgfplots, pgfplotstable}
\usepgfplotslibrary{statistics}
\begin{filecontents}{data.csv}
dist
1
2
2.5
2
1
3.5
3
1
3
2
1
1
0.5
1
1.5
1
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
ybar,
ymin=0
]
\addplot +[
hist={
bins=7,
data min=0.5,
data max=4
}
] table [y index=0] {data.csv};
\end{axis}
\end{tikzpicture}
\end{document}
答案1
添加draw=black
到\addplot
选项中。