具有负坐标的 ybar 堆叠图

具有负坐标的 ybar 堆叠图

当使用堆叠在正负坐标混合上的 ybar 时,我似乎找不到我想要的答案。

\begin{figure}
  \begin{tikzpicture}
    \begin{axis}[ybar stacked]
      \addplot[green,fill=green] coordinates { (1, 3) (2, 3) (3,3) (4,3) };
      \addplot[red,fill=red]     coordinates { (1,-4) (2,-4) (3,4) (4,4) };
    \end{axis}
  \end{tikzpicture}
\end{figure}

我想让所有红色条形的长度都达到 4 个单位(因为它们在坐标中),尽管左侧两个条形隐藏在绿色条形后面。有没有什么解决办法?(更改\addplot上述代码中的调用顺序无法解决这个问题。)

答案1

我建议使用ybar stacked绘图样式,但组件水平偏移,这构成了“瀑布图”。这很好地显示了正贡献和负贡献如何加起来得出最终值(比将负分量画在 y 轴下方更好,因为这会误导性地产生更大的总长度)。

为了绘制条形之间的连接器,您必须使用 定义一个新标记\pgfdeclareplotmark

\documentclass{article}
\usepackage{pgfplots}

\pgfdeclareplotmark{waterfall bridge}{\pgfpathmoveto{\pgfpoint{-13pt}{0pt}}\pgfpathlineto{\pgfpoint{13pt}{0pt}}\pgfusepathqstroke}

\begin{document}
  \begin{tikzpicture}
    \begin{axis}[
        ybar stacked,
        bar width=10pt,
        axis lines*=middle,
        axis on top=false,
        xtick=data,
        enlarge y limits=0.2,
        after end axis/.code={
            \node at ({rel axis cs:0,0}|-{axis cs:0,0}) [anchor=east] {0};
        }
    ]
      \addplot[
        fill=cyan,
        draw=none,
        bar shift=-8pt,
        mark options={
            gray,
            thick,
            dashed
        },
        mark=waterfall bridge
      ] coordinates { (1, 3) (2, 3) (3,3) (4,3) };
      \addplot[
        fill=orange,
        draw=none,
        bar shift=8pt
      ] coordinates { (1,-4) (2,-4) (3,4) (4,4) };
    \end{axis}
  \end{tikzpicture}


\end{document}

答案2

我也多次遇到过这个问题。我的(不可否认,很丑陋的)解决方法是在单独的axis环境中创建负条。这不是最理想的,因为您必须确保两个轴的尺寸和条宽度相同,并且必须删除第二个轴上的轴线,但它确实达到了预期的效果。

答案3

我们也遇到了同样的问题。

我们想出的解决方案相对来说不太具侵入性。您的 latex 代码保持不变,没有额外的特殊标签,但您的负值的 x 坐标会略有变化。

由于默认情况下每个 x 坐标都是单独堆叠的,我们会将正数绘制在例如 1、2、3 等处,将负数绘制在 0.999、1.999、2.999 等处。

对于人眼来说,它们似乎直接位于彼此之上(如果不是,则再添加 9),但为了堆叠的目的,乳胶会将它们分开堆叠。

每天的正能量与负能量
(来源:pnpscada.com

以下是 .tex 图块的代码摘录:

. . .
\begin{axis}[width=20cm, height=9.75cm,
scaled ticks=false,%
%bar width=5pt,
xmin=-0.15,
xtick={1,...,\days},
xmax=\the\value{daysp}.15,
ylabel=energy in \si{kWh},
xlabel = date,
%xlabel= {\yearnow},
%xtick align=center,
%xticklabel style={rotate=90,anchor=east},
grid=major,
legend cell align=left,
%legend entries={baseline,target,trend,low demand--off-peak,low demand--standard,low demand--peak,high demand--off-peak,high demand--standard,high demand--peak},
legend style = {area legend,legend columns = 4,
%legend title = legend,
at={(0.5,-0.12)},
anchor=north},
%legend entries={baseline,target,trend,low demand--off-peak,low demand--standard,low demand--peak,high demand--off-peak,high demand--standard,high demand--peak},
title={{\month} {\yearnow} consumption for \meter},
%title style={at={(0.5,1)}},
ybar stacked,
set layers
]
. . .
\trend ;
\addplot[draw=black, fill=color8, forget plot] table [x=x,y=v8]{Month.csv};
\addplot[draw=black, fill=color1, forget plot] table [x=x,y=v1]{Month.csv};
\addplot[draw=black, fill=color12, forget plot] table [x=x,y=v12]{Month.csv};
\addplot[draw=black, fill=color6, forget plot] table [x=x,y=v6]{Month.csv};
\addplot[draw=black, fill=color9, forget plot] table [x=x,y=v9]{Month.csv};
 \addplot[draw=black, fill=color3, forget plot] table [x=x,y=v3]{Month.csv};
. . .

以及从类似的 Month.csv 文件中提取的内容(与图片不完全相同,但它展示了这个想法)(列以制表符分隔):

x   v7  v8  v1  v2  v11 v12 v5  v6  v9  v10 v3  v4  target
. . .
6.25    0   0   0   0   0   0   0   0   0   0   0   0   1682.16
6.5 0   0   0   0   0   0   0   0   0   0   0   0   1682.16
6.999   0   0   -30 0   0   0   0   0   0   0   -54.500 0   1682.16
7   0   0   0   200 0   0   0   0   0   0   0   1190.000    1682.16
7.25    0   0   0   0   0   0   0   0   0   0   0   0   1682.16
7.5 0   0   0   0   0   0   0   0   0   0   0   0   1682.16
7.999   0   0   -50 0   0   0   0   0   0   0   -93.000 0   1682.16
8   0   0   0   400 0   0   0   0   0   0   0   1068.000    1682.16
. . .

相关内容