Proj_1_init

This commit is contained in:
MikolajPaterka 2022-04-25 00:05:17 +02:00
parent eff748f6d6
commit 53e4924f67
5 changed files with 35 additions and 0 deletions

BIN
Projekt_1/Bledy.RData Normal file

Binary file not shown.

BIN
Projekt_1/Cisnienie.RData Normal file

Binary file not shown.

BIN
Projekt_1/Hamulce.RData Normal file

Binary file not shown.

22
Projekt_1/Projekt_1.R Normal file
View File

@ -0,0 +1,22 @@
#test t-studenta dla jednej próby
load("Hamulce.RData")
attach(Hamulce)
mean(Wynik)
t.test(Wynik,mu=18.6,alternative='less')
# dwie próby niezależne
load("Bledy.RData")
attach(Bledy)
tapply(Blad,Kod,mean)
tapply(Blad,Kod,var)
var.test(Blad~Kod)
t.test(Blad~Kod,var.equal=T,alternative='less')
#dwie próby zależne
load("Cisnienie.RData")
attach(Cisnienie)
mean(Po-Przed)
t.test(Po-Przed,mu=0,alternative='less')
#TODO
# trzeba narysować rozkład statystyki testowej

13
Projekt_1/Projekt_1.Rproj Normal file
View File

@ -0,0 +1,13 @@
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX