Proj_1_init
This commit is contained in:
parent
eff748f6d6
commit
53e4924f67
BIN
Projekt_1/Bledy.RData
Normal file
BIN
Projekt_1/Bledy.RData
Normal file
Binary file not shown.
BIN
Projekt_1/Cisnienie.RData
Normal file
BIN
Projekt_1/Cisnienie.RData
Normal file
Binary file not shown.
BIN
Projekt_1/Hamulce.RData
Normal file
BIN
Projekt_1/Hamulce.RData
Normal file
Binary file not shown.
22
Projekt_1/Projekt_1.R
Normal file
22
Projekt_1/Projekt_1.R
Normal 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
13
Projekt_1/Projekt_1.Rproj
Normal 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
|
Loading…
Reference in New Issue
Block a user