\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=8.0cm,
    height=4.2cm,
    every axis plot/.append style={thick},
    % Label
    xlabel shift=-0.08cm,         
    ylabel shift=-0.1cm,
    xlabel near ticks,
    ylabel near ticks,
    label style={font=\footnotesize},
    xlabel={KV cache ratio},
    ylabel={Relative difference},
    % 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},
    xmax=1.0,
    xmin=0.1,
    xtick={0.2, 0.4, 0.6, 0.8, 1.0},
    % ymax=100,
    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,
    },    
    scaled y ticks=false, 
    ytick={0, 0.01, 0.02, 0.03, 0.04, 0.05},
    yticklabels={0.00, 0.01, 0.02, 0.03, 0.04, 0.05},
    %legend
    legend image post style={scale=0.8},
    legend style={legend columns=1, font=\scriptsize, at={(0.95,0.93)}, inner sep=1pt, anchor=north east},
    legend cell align={left},
]

\nextgroupplot[]
\addplot[prob] table[x=ratio, y=1k, col sep=comma]{data/chunk_size.csv};\addlegendentry{1K\minus 2K}
\addplot[h2o] table[x=ratio, y=4k, col sep=comma]{data/chunk_size.csv};\addlegendentry{4K\minus 2K}
\addplot[pyramid] table[x=ratio, y=8k, col sep=comma]{data/chunk_size.csv};\addlegendentry{8K\minus 2K}


\end{groupplot}
\end{tikzpicture}
