Incluir texto en medio del objeto de trazado grupal

Incluir texto en medio del objeto de trazado grupal

Estoy intentando incluir \vdots en medio de un gráfico de grupo y, para ello, estoy intentando insertar un gráfico sin eje delimitador, pero no he podido hacerlo.

MWE:

\documentclass[border=5pt, multi, tikz]{standalone}
\usepackage{pgfplots} \usetikzlibrary{quotes,arrows.meta} 
\usetikzlibrary{decorations.pathreplacing,intersections}
\usetikzlibrary{shapes.misc} 
\usetikzlibrary{calc,fit}
\usetikzlibrary{pgfplots.groupplots}
\begin{document}
\begin{tikzpicture}[every edge quotes/.append style={auto, text=blue}]
    \begin{groupplot}[          
    group style=
        {group size=1 by 4,
        vertical sep=0pt,
        group name = myplots},
        height=2cm,
        width=5cm,
        xtick=\empty,
        ytick=\empty,
        ] 
        \nextgroupplot
        \addplot[blue, title=Multichannel Audio] table [col sep=comma] {audio1.csv} coordinate (ax1);
        \nextgroupplot
        \addplot[red] table [col sep=comma] {audio1.csv} coordinate[near start] (ax2) ;
        \nextgroupplot
        \addplot[hide axis, draw=none, no markers, axis line style={draw=none}, 
         tick style={draw=none}] {0} node[midway, draw=none, align=center] (ax3) {$\vdots$};
        \nextgroupplot
        \addplot[green] table [col sep=comma] {audio1.csv} coordinate[near start] (ax2) ;
        \end{groupplot}
    
    \end{tikzpicture}
\end{document}

mala trama

Entre el gráfico rojo y el verde, deseo tener \vdots, para representar múltiples canales, sin el cuadro delimitador en el gráfico.

Respuesta1

Entonces, después de jugar, encontré una manera:

\documentclass[border=5pt, multi, tikz]{standalone}
\usepackage{pgfplots}
\usetikzlibrary{quotes,arrows.meta}
\usetikzlibrary{decorations.pathreplacing,intersections}
\usetikzlibrary{shapes.misc}
\usetikzlibrary{calc,fit}
\usetikzlibrary{pgfplots.groupplots}
\begin{document}
    \begin{tikzpicture}[every edge quotes/.append style={auto, text=blue}]
        \begin{groupplot}[
            group style=
            {group size=1 by 4,
                vertical sep=0pt,
                group name = myplots},
            height=2cm,
            width=5cm,
            xtick=\empty,
            ytick=\empty,
            ]
            \nextgroupplot
            \addplot[blue, title=Multichannel Audio] table [col sep=comma] {audio1.csv} coordinate (ax1);
            \nextgroupplot
            \addplot[red] table [col sep=comma] {audio1.csv} coordinate[near start] (ax2) ;
            \nextgroupplot[hide axis, draw=none, no markers, axis line style={draw=none},
            tick style={draw=none}]
            \addplot[white] {0} node[black, midway, draw=none, align=center, yshift=3] (ax3) {$\vdots$};
            \nextgroupplot
            \addplot[green] table [col sep=comma] {audio1.csv} coordinate[near start] (ax2) ;
            
        \end{groupplot}

\end{tikzpicture}
\end{document}

Esto lleva a la siguiente imagen:

trama correcta

Que era lo que estaba tratando de lograr.

información relacionada