Advertisement
sylvesterson

Untitled

Oct 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. data("iris")
  2. sepel_val <- iris$Sepal.Width
  3.  
  4. for (i in 1:length(iris$Sepal.Width)) {
  5. if (sepel_val[i] < 3) {
  6. print(sepel_val[i])
  7. }
  8. }
  9.  
  10. length(sepel_val[i])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement