Advertisement
fagylalt

Untitled

Oct 17th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. task4 <- function(sampleSize, difference, variance, alpha) {
  2.     firstSet <- rnorm(sampleSize,difference, variance)
  3.     secondSet<- rnorm(sampleSize,difference, variance)
  4. tTestResult <- t.test(firstSet,secondSet))
  5. }
  6. task4(4,3,0.25)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement