Difference between revisions of "Least squares modelling (2014)"

From Statistics for Engineering
Jump to navigation Jump to search
Line 9: Line 9:
| vimeoID6 = 86418376
| vimeoID6 = 86418376
| vimeoID7 = 86607518
| vimeoID7 = 86607518
| vimeoID8 =
| vimeoID8 = 87721837
| course_notes_PDF = 2014-4C3-6C3-Least-squares-modelling.pdf  
| course_notes_PDF = 2014-4C3-6C3-Least-squares-modelling.pdf  
| course_notes_alt = Course slides
| course_notes_alt = Course slides
Line 36: Line 36:
| video_download_link7_MP4_size = 259 M
| video_download_link7_MP4_size = 259 M
| video_notes7 =
| video_notes7 =
| video_download_link8_MP4 =
| video_download_link8_MP4 = http://learnche.mcmaster.ca/media/2014-4C3-6C3-Class-07B.mp4
| video_download_link8_MP4_size = M
| video_download_link8_MP4_size = 277 M
| video_notes8 =
| video_notes8 =
}}
}}
Line 60: Line 60:
| [http://learnche.mcmaster.ca/media/2014-4C3-6C3-Class-04C.mp3 Audio] (18 M)  
| [http://learnche.mcmaster.ca/media/2014-4C3-6C3-Class-04C.mp3 Audio] (18 M)  
| None
| None
| rowspan="9"|[http://learnche.mcmaster.ca/pid/?source=Least-squares Chapter 4]
| rowspan="10"|[http://learnche.mcmaster.ca/pid/?source=Least-squares Chapter 4]
| rowspan="9"|[[Image:Nuvola_mimetypes_pdf.png|20px|link=Media:2014-4C3-6C3-Least-squares-modelling.pdf]] [[Media:2014-4C3-6C3-Least-squares-modelling.pdf|Slides for class]]  
| rowspan="10"|[[Image:Nuvola_mimetypes_pdf.png|20px|link=Media:2014-4C3-6C3-Least-squares-modelling.pdf]] [[Media:2014-4C3-6C3-Least-squares-modelling.pdf|Slides for class]]  
|-
|-
| 30 January
| 30 January
Line 112: Line 112:
* [[Media:Course-evaluation-2014.pdf|Course evaluation]]
* [[Media:Course-evaluation-2014.pdf|Course evaluation]]
* [[Media:Multiple-linear-regression-learning-2014.pdf|Multiple linear regression exercise]]
* [[Media:Multiple-linear-regression-learning-2014.pdf|Multiple linear regression exercise]]
|-
| 26 February
| 07B
| [http://learnche.mcmaster.ca/media/2014-4C3-6C3-Class-07B.mp4 Video] (277 M)
| [http://learnche.mcmaster.ca/media/2014-4C3-6C3-Class-07B.mp3 Audio] (41 M)
| None
|}
|}



Revision as of 23:46, 26 February 2014

Class date(s): 29 January 2014 to 13 February 2014
Nuvola mimetypes pdf.png (PDF) Course slides
Download video: Link (plays in Google Chrome) [119M]

Download video: Link (plays in Google Chrome) [304 M]

Download video: Link (plays in Google Chrome) [291 M]

Download video: Link (plays in Google Chrome) [216 M]

Download video: Link (plays in Google Chrome) [276 M]

Download video: Link (plays in Google Chrome) [239 M]

Download video: Link (plays in Google Chrome) [259 M]

Download video: Link (plays in Google Chrome) [277 M]

Course notes and slides

Date Class number Video and audio files Other materials Reading (PID) Slides
29 January 04C Video (119 M) Audio (18 M) None Chapter 4 Nuvola mimetypes pdf.png Slides for class
30 January 04D Video (304 M) Audio (42 M) See the source code below
03 February 05A Video (291 M) Audio (41 M) See the source code below
05 February 05B Video (216 M) Audio (42 M) None
06 February 05C Video (276 M) Audio (42 M) Practice problems (with partial solutions)
10 February 06A Video (239 M) Audio (43 M) None
12 February 06B Video (259 M) Audio (42 M) None
13 February NA None None Collaborative midterm
24 February 07A None None
26 February 07B Video (277 M) Audio (41 M) None

Software source code

Take a look at the software tutorial, particularly steps 16 to 22.

Code used in class

Least squares demo

x <- c(10, 8, 13, 9, 11, 14, 6, 4, 12, 7, 5)
y <- c(8.04, 6.95, 7.58, 8.81, 8.33, 9.96, 7.24, 4.26, 10.84, 4.82, 5.68)
plot(x,y)
model.ls <- lm(y ~ x)
summary(model.ls)

coef(model.ls)
confint(model.ls)

names(model.ls)
model.ls$resisduals
resid(model.ls)

plot(x, y)
abline(model.ls)