Guest User

Untitled

a guest
Nov 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{pgfplots,pgfplotstable}
  4. pgfplotsset{compat = 1.15}
  5.  
  6. begin{document}
  7.  
  8. pgfplotstableread
  9. {
  10. x y
  11. 1 10
  12. 2 20
  13. 3 30
  14. }data
  15.  
  16. pgfplotstablegetelem{0}{y}ofdata
  17. Value is pgfplotsretval
  18.  
  19. begin{tikzpicture}
  20. begin{axis}[xbar]
  21. pgfplotstablegetelem{0}{y}ofdata
  22. addplot coordinates {(pgfplotsretval,1)};
  23. end{axis}
  24. end{tikzpicture}
  25.  
  26. end{document}
Add Comment
Please, Sign In to add comment