Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. splitrows col: column1 on: '\r'
  2. split col: column1 on: ',' limit: 4 quote: '\"'
  3. header
  4. extract col: Item on: 'Fungicides'
  5. extract col: Item on: 'Insecticides'
  6. extract col: Item on: 'Herbicides'
  7. extract col: Item on: 'Rodenticides'
  8. extract col: Item on: 'Plant Growth Regulators'
  9. extract col: Item on: 'Other Pesticides nes'
  10. extract col: Item on: 'Seed Treatm Fungicides'
  11. extract col: Item on: 'Seed Treatm Insecticide'
  12. extract col: Item on: 'Mineral Oils'
  13. extract col: Item on: 'Disinfectants'
  14. drop col: Item
  15. rename col: Item10 to: 'Disinfectants'
  16. rename col: Item9 to: 'Mineral_Oils'
  17. rename col: Item8 to: 'Seed_treatment_Insecticide'
  18. rename col: Item7 to: 'Seed_treatment_Fungicide'
  19. rename col: Item6 to: 'Other_Pesticide'
  20. rename col: Item5 to: 'Plant_Grow_Control'
  21. rename col: Item4 to: 'Rodenticide'
  22. rename col: Item3 to: 'Herbicide'
  23. rename col: Item2 to: 'Insecticide'
  24. rename col: Item1 to: 'Fungicide'
  25. merge col: Seed_treatment_Insecticide, Seed_treatment_Fungicide, Rodenticide, Plant_Grow_Control, Other_Pesticide, Mineral_Oils, Insecticide, Herbicide, Fungicide, Disinfectants as: 'column1'
  26. rename col: column1 to: 'ALL_PESTICIDES'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement