\begin{tikzpicture}

\tikzstyle{h2o} = [or, mark=diamond, mark size=1pt]
\tikzstyle{snap} = [gr, mark=x, mark size=1.3pt]
\tikzstyle{pyramid} = [bl, mark=+, mark size=1.6pt]
\tikzstyle{prob} = [red, mark=*, mark size=0.9pt]

\begin{groupplot}[group style={columns=1},
    width=5.0cm,
    height=3.6cm,
    every axis plot/.append style={thick},
    % Label
    xlabel shift=-0.08cm,         
    ylabel shift=-0.15cm,
    xlabel near ticks,
    ylabel near ticks,
    label style={font=\footnotesize},
    xlabel={KV cache ratio},
    ylabel={Rel. performance},
    % Grid
    grid=major,
    xmajorgrids=true,
    ymajorgrids=true,
    major grid style={dotted, black},
    % tick
    tick label style={font=\scriptsize},
    tick pos=left,
    x tick label style={/pgf/number format/.cd, fixed, fixed zerofill, precision=1},
    y tick label style={/pgf/number format/.cd, fixed, fixed zerofill, precision=1},
    xmax=1.0,
    xmin=0.4,
    xtick={0.4, 0.6, 0.8, 1.0},
    ytick={0.6, 0.7, 0.8, 0.9, 1.0},
    extra x ticks={0.3, 0.5, 0.7, 0.9},   
    extra x tick labels={,,,},
    extra x tick style={
        grid=none,
        tick style={thin},
        major tick length=2.8pt,
    },    
    % title
    title style={
      at={(axis description cs:0.5,0.88)}, 
      anchor=south,
      font={\footnotesize}
    },    
    %legend
    legend image post style={scale=0.8},
    legend style={legend columns=1, font=\scriptsize, at={(0.98,0.08)}, inner sep=1pt, anchor=south east},
    legend cell align={left},
]

%%%% Retrieval-Matching %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\nextgroupplot[]
\addplot[prob] table[x=ratio, y=prob-fix, col sep=comma]{data/duo.csv};\addlegendentry{KVzip (head)}
\addplot[pyramid] table[x=ratio, y=duo, col sep=comma]{data/duo.csv};\addlegendentry{DuoAttention}



\end{groupplot}
\end{tikzpicture}
