| Hosted by CoCalc | Download
1
# x01.txt
2
#
3
# Reference:
4
#
5
# Helmut Spaeth,
6
# Mathematical Algorithms for Linear Regression,
7
# Academic Press, 1991, page 304,
8
# ISBN 0-12-656460-4.
9
#
10
# S Weisberg,
11
# Applied Linear Regression,
12
# Wiley, 1980, pages 128-129.
13
#
14
# Discussion:
15
#
16
# The data records the average weight of the brain and body for
17
# a number of mammal species.
18
#
19
# There are 62 rows of data. The 3 data columns include:
20
#
21
# I, the index,
22
# A1, the brain weight;
23
# B, the body weight.
24
#
25
# We seek a model of the form:
26
#
27
# B = A1 * X1.
28
#
29
3 columns
30
62 rows
31
Index
32
Brain Weight
33
Body Weight
34
1 3.385 44.500
35
2 0.480 15.500
36
3 1.350 8.100
37
4 465.000 423.000
38
5 36.330 119.500
39
6 27.660 115.000
40
7 14.830 98.200
41
8 1.040 5.500
42
9 4.190 58.000
43
10 0.425 6.400
44
11 0.101 4.000
45
12 0.920 5.700
46
13 1.000 6.600
47
14 0.005 0.140
48
15 0.060 1.000
49
16 3.500 10.800
50
17 2.000 12.300
51
18 1.700 6.300
52
19 2547.000 4603.000
53
20 0.023 0.300
54
21 187.100 419.000
55
22 521.000 655.000
56
23 0.785 3.500
57
24 10.000 115.000
58
25 3.300 25.600
59
26 0.200 5.000
60
27 1.410 17.500
61
28 529.000 680.000
62
29 207.000 406.000
63
30 85.000 325.000
64
31 0.750 12.300
65
32 62.000 1320.000
66
33 6654.000 5712.000
67
34 3.500 3.900
68
35 6.800 179.000
69
36 35.000 56.000
70
37 4.050 17.000
71
38 0.120 1.000
72
39 0.023 0.400
73
40 0.010 0.250
74
41 1.400 12.500
75
42 250.000 490.000
76
43 2.500 12.100
77
44 55.500 175.000
78
45 100.000 157.000
79
46 52.160 440.000
80
47 10.550 179.500
81
48 0.550 2.400
82
49 60.000 81.000
83
50 3.600 21.000
84
51 4.288 39.200
85
52 0.280 1.900
86
53 0.075 1.200
87
54 0.122 3.000
88
55 0.048 0.330
89
56 192.000 180.000
90
57 3.000 25.000
91
58 160.000 169.000
92
59 0.900 2.600
93
60 1.620 11.400
94
61 0.104 2.500
95
62 4.235 50.400
96
#
97
# Reference:
98
#
99
# Helmut Spaeth,
100
# Mathematical Algorithms for Linear Regression,
101
# Academic Press, 1991, page 304,
102
# ISBN 0-12-656460-4.
103
#
104
# S Weisberg,
105
# Applied Linear Regression,
106
# Wiley, 1980, pages 128-129.
107
#
108
# Discussion:
109
#
110
# The data records the average weight of the brain and body for
111
# a number of mammal species.
112
#
113
# There are 62 rows of data. The 3 data columns include:
114
#
115
# I, the index,
116
# A1, the brain weight;
117
# B, the body weight.
118
#
119
# We seek a model of the form:
120
#
121
# B = A1 * X1.
122
#
123
124