Guest User

Untitled

a guest
Nov 22nd, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. smp <- read.csv2("tennis2.csv")
  2. dim(smp)
  3. names(smp)
  4. str(smp)
  5. smp$NbLigne[1]
  6. for(i in smp$NbLigne){
  7. print(i)
  8. }
  9.  
  10. Size <- nrow(smp)
  11. print(Size)
  12. # not working
  13. # here is my problem
  14. for(i in smp){
  15. print(i$NbLigne)
  16. }
  17.  
  18. for(i in smp){
  19. print(i$NbLigne)
  20. }
Add Comment
Please, Sign In to add comment