Guest User

Untitled

a guest
Sep 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. azimuth <- read.csv(file.choose(), header=TRUE)
  2. qqplot(azimuth$Azimuth)
  3.  
  4. Error in sort(y) : argument "y" is missing, with no default
  5.  
  6. qqnorm(azimuth)
  7.  
  8. Error in xy.coords(x, y, xlabel, ylabel, log) :
  9. 'x' and 'y' lengths differ
  10.  
  11. Azimuth Altitude
  12. 23.33211466 -6.561729793
  13. 31.51267873 4.801537153
  14. 29.04577711 5.24504954
  15. 23.63450905 14.03342708
  16. 29.12535459 7.224141678
  17. 20.76972007 47.95686329
  18. 54.89253987 4.837417689
  19. 56.57958227 13.12587996
  20. 13.09845182 -7.417776178
  21. 26.45155154 31.83546988
  22. 29.15718557 25.47767069
  23. 28.09084746 14.61603384
  24. 28.93436865 -1.641785416
  25. 28.77521371 17.30536039
  26. 29.58690392 -2.202076058
  27. 0.779859221 12.92044019
  28. 27.1359178 12.20305106
  29. 23.57084707 11.97925859
  30. 28.99803063 3.931326877
  31.  
  32. azimuth <-
  33. structure(list(Azimuth = c(23.33211466, 31.51267873, 29.04577711,
  34. 23.63450905, 29.12535459, 20.76972007, 54.89253987, 56.57958227,
  35. 13.09845182, 26.45155154, 29.15718557, 28.09084746, 28.93436865,
  36. 28.77521371, 29.58690392, 0.779859221, 27.1359178, 23.57084707,
  37. 28.99803063), Altitude = c(-6.561729793, 4.801537153, 5.24504954,
  38. 14.03342708, 7.224141678, 47.95686329, 4.837417689, 13.12587996,
  39. -7.417776178, 31.83546988, 25.47767069, 14.61603384, -1.641785416,
  40. 17.30536039, -2.202076058, 12.92044019, 12.20305106, 11.97925859,
  41. 3.931326877)), .Names = c("Azimuth", "Altitude"), class = "data.frame", row.names = c(NA, -19L))
  42.  
  43. qqplot(x, y, plot.it = TRUE, xlab = "your x-axis label", ylab="your y-axis label", ...)
  44.  
  45. qqnorm(azimuth$Azimuth);qqline(azimuth$Azimuth)
Add Comment
Please, Sign In to add comment