I have been trying to plot some column bars but some results are overwhelming and make the other disappear from the plot. Is it possible to separate those values in another plot next to the other one?
My code is :
\begin{figure}[h]
\centering
\pgfplotsset{compat=1.16}
\begin{tikzpicture}
\begin{axis}[legend pos=outer north east,
width=12cm,
ybar,
bar width=7pt,
xlabel=pH,
symbolic x coords={A,B,C,D,E},
xtick={A,B,C,D,E},
xticklabels={10,7.5,5.2,3.8,3.0},
ylabel=Size (d.nm),
enlarge x limits={0.2},
ymin=0,
ymode=log,
ymajorgrids=true,
scaled ticks=false,
xtick style={
/pgfplots/major tick length=0pt,
}
]
\addplot+ [
error bars/.cd,
y dir=both,
y explicit ,
] coordinates {
(A,15.23)+-(A,0.0346410161513768)
(B,16.8466666666667)+-(B,0.14224392195568)
(C,18.1166666666667)+-(C,0.187705443004015)
(D,18.6866666666667)+-(D,0.14571661996263)
(E,18.4033333333333)+-(E,0.117189305541646)
};\addlegendentry{0 g/L NaCl}
\addplot+ [
error bars/.cd,
y dir=both,
y explicit ,
] coordinates {
(A,17.66)+-(A,0.174355957741627)
(B,15.4966666666667)+-(B,0.0251661147842353)
(C,18.5066666666667)+-(C,0.173877351409934)
(D,18.18)+-(D,0.0871779788708136)
(E,18.4966666666667)+-(E,0.0776745346515396)
};\addlegendentry{0.05 g/L NaCl}
\addplot+ [
error bars/.cd,
y dir=both,
y explicit ,
] coordinates {
(A,19.01)+-(A,0.156204993518134)
(B,18.7266666666667)+-(B,0.11503622617825)
(C,19.07)+-(C,0.112694276695846)
(D,18.39)+-(D,0.0871779788708136)
(E,18.7233333333333)+-(E,0.11503622617825)
}; \addlegendentry{0.5 g/L NaCl}
\addplot+ [
error bars/.cd,
y dir=both,
y explicit ,
] coordinates {
(A,19.5)+-(A,0.219317121994613)
(B,18.6933333333333)+-(B,0.0602771377334176)
(C,19.2866666666667)+-(C,0.0251661147842344)
(D,19.4766666666667)+-(D,0.0680685928555417)
(E,19.1866666666667)+-(E,0.0404145188432747)
}; \addlegendentry{5 g/L NaCl}
\addplot+ [
error bars/.cd,
y dir=plus,
ymode=log,
y explicit ,
] coordinates {
(A,65)+-(A,8)
(B,64.5633333333333)+-(B,4.27418218298347)
(C,68.3033333333333)+-(C,0.733303029676911)
(D,68.02)+-(D,0.347706773014274)
(E,72)+-(E,2.80770962411239)
};\addlegendentry{50 g/L NaCl}
\end{axis}
\end{tikzpicture}
\label{sizeHS}
\caption{Particle Size Ludox HS}
\end{figure}
As you can see the last one is pretty big respect to the others thanks!!

ymode=log,, you cannot haveymin=0, andymode=log,is not a valid key aftererror bars/.cd,. BTW, if you use the code from the answer of your previous question, please consider accepting the answer by clicking on the check mark left of it. – Dec 01 '19 at 00:05