RDocumentation: t.test
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    Note that this notebook was automatically generated from an RDocumentation page. It depends on the package and the example code whether this code will run without errors. You may need to edit the code to make things work.

    if(!require('stats')) {
        install.packages('stats')
        library('stats')
    }
    t.test()
    Run cancelled
    require(graphics)
    
    t.test(1:10, y = c(7:20))      # P = .00001855
    t.test(1:10, y = c(7:20, 200)) # P = .1245    -- NOT significant anymore
    
    ## Classical example: Student's sleep data
    plot(extra ~ group, data = sleep)
    ## Traditional interface
    with(sleep, t.test(extra[group == 1], extra[group == 2]))
    ## Formula interface
    t.test(extra ~ group, data = sleep)