Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. dataset1 <- maml.mapInputPort(1)#class: data.frame
  2. # Sample operation
  3. cols <- c("age",
  4. "workclass",
  5. "fnlwgt",
  6. "education",
  7. "education-num",
  8. "marital-status",
  9. "occupation",
  10. "relationship",
  11. "race",
  12. "sex",
  13. "capital-gain",
  14. "capital-loss",
  15. "hours-per-week",
  16. "native-country",
  17. "income")
  18. colnames(data.frame) <- cols
  19. data.set = dataset1;
  20. maml.mapOutputPort("data.set");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement