Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. library(lattice)
  2.  
  3. dat <- data.frame(
  4. One = rnorm(10),
  5. Two = rnorm(10, 2, 1),
  6. "Some name" = rnorm(10, 4, 0.1),
  7. check.names = FALSE #or you'll get periods instead of spaces
  8. )
  9.  
  10. parallelplot(~ dat, horizontal.axis = FALSE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement