Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. df = data.frame(a = rnorm(4), b = rnorm(4), c = rnorm(4), a1 = rnorm(4), b1 = rnorm(4), a2 = rnorm(4),
  2. b2 = rnorm(4), c2 = rnorm(4), date = seq(as.Date("2019-05-05"),as.Date("2019-05-08"), 1))
  3. print(df)
  4.  
  5.  
  6.  
  7. a b c a1 b1 a2 b2 c2 date
  8. 1 -1.0938097 1.3948486 1.2805904 1.6187439 1.0200681 -1.4335761 -0.4583526 0.3825598 2019-05-05
  9. 2 -0.3195004 -1.1281779 -2.1905902 -1.1693616 -0.9612850 -0.7502631 -0.5637997 0.3072459 2019-05-06
  10. 3 -0.2135026 0.7015042 -0.8271073 -0.1115213 -1.0378507 0.5620332 -2.0615450 1.7363142 2019-05-07
  11. 4 1.0413566 -1.1983207 0.9262545 0.6454741 -0.7874252 0.1904461 0.8970132 -1.4173619 2019-05-08
  12.  
  13. a b c date
  14. 1 1.70236896 0.1847794 1.0642016 2019-05-05
  15. 2 -1.84604746 1.1229081 1.0550992 2019-05-06
  16. 3 -0.70185143 -0.8527223 1.3261573 2019-05-07
  17. 4 -0.47930296 0.2822001 -0.3271825 2019-05-08
  18. 5 -0.09950265 -0.1881748 -0.7482557 2019-05-05
  19. 6 0.72087483 2.0053211 1.1154889 2019-05-06
  20. 7 -1.83254875 -0.4060090 -0.2664467 2019-05-07
  21. 8 -0.17379130 0.6302901 1.5287194 2019-05-08
  22. 9 1.72706128 -1.4701842 1.1615761 2019-05-05
  23. 10 2.00246599 0.1306764 -1.8767190 2019-05-06
  24. 11 0.05263048 0.1173080 0.4293342 2019-05-07
  25. 12 -0.70024619 1.0677009 -0.2974141 2019-05-08
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement