Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{pgfplots}
  4. pgfplotsset{compat=1.14}
  5.  
  6. usepackage{filecontents}
  7. begin{filecontents}{data.dat}
  8. 0 0
  9. 0.25 0.25
  10. 0.5 0.5
  11. 0.75 0.75
  12. 1 1
  13. end{filecontents}
  14.  
  15. begin{document}
  16. begin{tikzpicture}
  17. begin{axis}
  18. addplot[
  19. only marks,
  20. mark size = 10,
  21. blue,
  22. opacity=0.1,
  23. mark=*,
  24. ]
  25. table{data.dat};
  26. end{axis}
  27. end{tikzpicture}
  28. end{document}
  29.  
  30. scatter/use mapped color={draw opacity=0,fill=mapped color},
  31.  
  32. scatter/use mapped color={draw=mapped color,fill=mapped color},
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement