Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. begin{tikzpicture}[scale=1.2]
  2. begin{axis}[
  3. title={Comparação do armazenamento do UiSCSI x Samba}
  4. xmajorgrids=true,
  5. ymajorgrids=true,
  6. grid style=dashed,
  7. xmin=0,ymin=0,
  8. ytick={0,20000,40000,60000,80000,100000,120000,140000,160000},
  9. xlabel={Quantidade copiada em GigaBytes},
  10. ylabel={Tempo em segundos},
  11. legend style={legend pos=north west}]
  12. addplot table [x=a, y=b, col sep=comma] {metricas/data01.dat};
  13. addlegendentry{UiSCSI}
  14. addplot table [x=a, y=b, col sep=comma] {metricas/data02.dat};
  15. addlegendentry{Ustore}
  16. addplot table [x=a, y=b, col sep=comma] {metricas/data03.dat};
  17. addlegendentry{Samba}
  18. end{axis}
  19. end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement