Guest User

Untitled

a guest
Feb 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function cleanup(raw_data) {
  2. // remove unneeded columns
  3.  
  4. var data = [];
  5.  
  6. raw_data.forEach(function(obj){
  7. if (obj["County"] == "Dutchess" && obj["Month"] == 12)
  8. data.push(obj)
  9. });
  10.  
  11. data.forEach(function(obj) {
  12. delete obj["2012 Census Population"];
  13. delete obj["Population 18+ Estimate"];
  14. delete obj["OPO"];
  15. delete obj["Location"];
  16. delete obj["Month"];
  17. delete obj["County"];
  18. delete obj["Chart Month"];
  19. });
  20. data.sort(function (a,b) {
  21. return a["Year"] > b["Year"];
  22. });
  23.  
  24. return data;
  25. }
Add Comment
Please, Sign In to add comment