Guest User

Untitled

a guest
Dec 13th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. my <- list(Low=c("21.1","126.8","78.3","32.4","34.5"),
  2. High = ("301.3","17.3","20.3" ))
  3.  
  4. my
  5.  
  6. $`Low`
  7. [1] "21.1" "126.8" "78.3" "32.4" "34.5"
  8.  
  9. $High
  10. [1] "301.3" "17.3" "20.3"
  11.  
  12. as.data.frame(my)
  13.  
  14. Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, :
  15. arguments imply differing number of rows: 5, 3
  16.  
  17. Low
  18. 21.1
  19. 126.8
  20. 78.3
  21. 32.4
  22. 34.5
  23.  
  24. High
  25. 301.3
  26. 17.3
  27. 20.3
Add Comment
Please, Sign In to add comment