Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (* import and set column names *)
  2. iris = SemanticImport["http://aima.cs.berkeley.edu/data/iris.csv"];
  3. iris = iris[All, <|
  4. "SepalLength" -> 1, "SepalWidth" -> 2,
  5. "PetalLength" -> 3, "PetalWidth" -> 4, "Species" -> 5
  6. |>]
  7.  
  8. (* ListPlot *)
  9. iris[ListPlot, {"PetalLength", "SepalWidth"}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement