我在 tikzpicture 中的文件的实际数量

我在 tikzpicture 中的文件的实际数量

我有一个 tikzpicture,它读取了 3 个数据文件。Y 轴上的值会自动转换为 x10^5。我需要显示我的数据文件的确切数量。我该怎么做?

谢谢。

\begin{tikzpicture}[scale=1.2]
    \begin{axis}[
        title={Comparação do armazenamento do UiSCSI x Samba}
        xmajorgrids=true,
        ymajorgrids=true,
        grid style=dashed,
        xmin=0,ymin=0,
        ytick={0,20000,40000,60000,80000,100000,120000,140000,160000},
        xlabel={Quantidade copiada em GigaBytes},
        ylabel={Tempo em segundos},
        legend style={legend pos=north west}]
    \addplot table [x=a, y=b, col sep=comma] {metricas/data01.dat};
    \addlegendentry{UiSCSI}
    \addplot table [x=a, y=b, col sep=comma] {metricas/data02.dat};
    \addlegendentry{Ustore}
    \addplot table [x=a, y=b, col sep=comma] {metricas/data03.dat};
    \addlegendentry{Samba}
    \end{axis}
\end{tikzpicture}

相关内容