Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. R> sample = ggplot(data=data.frame(x=runif(10),y=runif(10)),aes(x,y)) +
  2. geom_point(aes(color=x))
  3.  
  4. tikz("./figures/sample.tikz",width = 6,height=6/sqrt(2))
  5. print(sample)
  6. dev.off()
  7.  
  8. begin{figure}[htbp]
  9. centering
  10. input{figures/sample.tikz}
  11. end{figure}
  12.  
  13. pgfimage[width= 14.45pt,height= 72.27pt,interpolate=true]{sample_ras1}};
  14.  
  15. pgfimage[width= 14.45pt,height= 72.27pt,interpolate=true]{figures/sample_ras1}};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement