-
Notifications
You must be signed in to change notification settings - Fork 11
/
data.R
470 lines (354 loc) · 10.1 KB
/
data.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#' Calories and alcohol content for ales and lagers.
#'
#' A data set containing 31 beers. The variables are as follows:
#'
#' @format A data frame with 31 rows and 4 variables:
"Alelager"
#' Bangladesh
#'
#' The Bangladesh data is provided solely for illustrative purposes and to
#' enable statistical analysis. Full data are available from the British
#' Geological Survey web site:
#' \url{https://www2.bgs.ac.uk/groundwater/health/arsenic/Bangladesh/home.html}.
#'
#' A data set containing 271 ??. The variables are as follows:
#'
#' @format A data frame with 271 rows and 3 variables:
"Bangladesh"
#' Batters2005
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Batters2005"
#' Beer and hot wings consumption.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Beerwings"
#' Price of hardcover textbooks from mathematics and the natural sciences and
#' the social sciences.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"BookPrices"
#' Bushmeat in Ghana.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Bushmeat"
#' Bushmeat in Ghana.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Bushmeat2"
#' Prices of a sample of point-and-shoot digital cameras.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Cameras"
#' Information on various cereals.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Cereals"
#' Data on 23 Challenger flights.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Challenger"
#' Data on Marathon times.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"ChiMarathonMen"
#' Correlation Exercise A p.294
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"corrExerciseA"
#' Correlation Exercise B p.294
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"corrExerciseB"
#' Cuckoos
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Cuckoos"
#' Diving times in 2017
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Diving2017"
#' Random sample of 100 driver fatalities in 2009 in Pennsylvania.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Fatalities"
#' Mercury levels (parts per million) for 30 fish caught in lakes in Minnesota.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"FishMercury"
#' Information on 4029 United and American airlines departures from LGA during May and June 2009.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"FlightDelays"
#' Random sample of 40 baby girls born in Alaska and 40 baby girls born in Wyoming.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Girls2004"
#' Groceries.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Groceries"
#' Results from 2002 General Society Survey.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"GSS2002"
#' Results from 2006 General Society Survey.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"GSS2006"
#' Calorie information for a sample of brands of chocolate and vanilla ice cream.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"IceCream"
#' IL Boys
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"ILBoys"
#' Data on a sample of countries where female illiteracy is more that 5 percent.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Illiteracy"
#' Winning numbers for the daily games from May 5, 2010 through August 15, 2010.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Lottery"
#' manatees
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"manatees"
#' Math Anxiety
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"MathAnxiety"
#' Data on average CO2 levels (ppm) for the month of May from 1990 to 2010.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Maunaloa"
#' Measurements on water quality of 895 randomly selected wells in Minnesota.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"MnGroundwater"
#' Mobile Ads.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"MobileAds"
#' NASDAQ Data.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Nasdaq"
#' NBA 2016-2017 data.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"NBA1617"
#' Random sample of 1009 babies born in North Carolina during 2004.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"NCBirths2004"
#' 2012 Olympics Data.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Olympics2012"
#' Data from the 2009 season for the baseball team of the Philadelphia Phillies.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Phillies2009"
#' Pitchers2005
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Pitchers2005"
#' Time between earthquakes (in days).
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Quakes"
#' Quetzal.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Quetzal"
#' Rangers/Twins 2016 Baseball Data.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"RangersTwins2016"
#' Children's reading abilities.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Reading"
#' Recidivism data.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Recidivism"
#' Salaries
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Salaries"
#' Sat2008
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Sat2008"
#' Service times (in minutes) for 174 customers at a college snack bar.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Service"
#' Skateboarding data
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Skateboard"
#' Scores from the short program and free skate for men's figure skating in the 2010 Olympics.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Skating2010"
#' Study of factors affecting the growth of the black spruce.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Spruce"
#' Starcraft
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Starcraft"
#' Data on male passengers on the Titanic.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Titanic"
#' Wind Speeds (m/s) from Carleton College Turbine.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Turbine"
#' TV
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"TV"
#' Random sample of 1587 babies born in Texas in 2004.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"TXBirths2004"
#' Random sample of repair times for 1664 ILEC and 23 CLEC customers.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Verizon"
#' Volleyball2009
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Volleyball2009"
#' Wafers
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"wafers"
#' Length and weight measurements for a sample of 60 walleye caught in Minnesota lakes.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Walleye"
#' Relationship between seedling growth and water table depth for a sample of seedlings.
#'
#' A data set containing X. The variables are as follows:
#'
#' @format A data frame with X rows and Y variables:
"Watertable"