Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. min.std.calc <- function(normals, dataset)
  2. {
  3. std <- numeric()
  4. for( i in 1:nrow(dataset) )
  5. {
  6. s <- sd(dataset[i,which(normals)])
  7. std <- c(std,s)
  8. }
  9. print(quantile(std,0.25))
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement