├── EDA Part 2.ipynb
├── EDA Part 3.ipynb
├── EDA Part 4.ipynb
├── EDA Part1.ipynb
├── README.md
└── datasets_1291_2355_Automobile_data.csv
/EDA Part1.ipynb:
--------------------------------------------------------------------------------
1 | {
2 | "cells": [
3 | {
4 | "cell_type": "markdown",
5 | "metadata": {},
6 | "source": [
7 | "
Exploratory Data Analysis - part 1
"
8 | ]
9 | },
10 | {
11 | "cell_type": "markdown",
12 | "metadata": {},
13 | "source": [
14 | "Any data science or machine learning project involves Data.\n",
15 | "\n",
16 | "We cannot directly jump into machine learning. \n",
17 | "\n",
18 | "First we need to get good understanding of the data and get it ready.\n",
19 | "\n",
20 | "EDA is an approach to analyze the data \n",
21 | "\n",
22 | "1. For better understanding of the data set and getting familiar with the data invovled in the project\n",
23 | "\n",
24 | "2. Understand the relationships between different variables of the data set\n",
25 | "\n",
26 | "3. Extract important variables for the project\n",
27 | "\n"
28 | ]
29 | },
30 | {
31 | "cell_type": "markdown",
32 | "metadata": {},
33 | "source": [
34 | " I) We need to know the following
\n",
35 | "\n",
36 | "1. The types of attributes or fields that make up the data\n",
37 | "2. What kind of values does each attribute have\n",
38 | "3. Which attributes are discrete, and which are continuous-valued\n",
39 | "\n",
40 | "These knowledge will help in data preprocessing"
41 | ]
42 | },
43 | {
44 | "cell_type": "markdown",
45 | "metadata": {},
46 | "source": [
47 | "II) We need some basic statistical descriptions to know about
\n",
48 | "\n",
49 | "1. How are the values distributed\n",
50 | "2. Are there ways we can visualize the data to get a better sense\n",
51 | "3. Can we spot any outliers\n",
52 | "4. Can we measure the similarity of some data objects with respect to others\n",
53 | "\n",
54 | "Gining such insight into the data will help with the subsequent data analysis.\n",
55 | "\n",
56 | "Data analysis plays an important role by helping us to discover useful information from the data, answer questions\n"
57 | ]
58 | },
59 | {
60 | "cell_type": "markdown",
61 | "metadata": {},
62 | "source": [
63 | "1. Import Data
"
64 | ]
65 | },
66 | {
67 | "cell_type": "markdown",
68 | "metadata": {},
69 | "source": [
70 | " Import libraries
"
71 | ]
72 | },
73 | {
74 | "cell_type": "markdown",
75 | "metadata": {},
76 | "source": [
77 | "What are Libraries??
\n",
78 | "\n",
79 | "Libraries are pre-written code. \n",
80 | "\n",
81 | "we need to import a library to use it in our project. \n",
82 | "\n",
83 | "Once imported we can have access to large number of pre built classes and functions of that particular library.\n",
84 | "\n",
85 | "We can use 'as' statement to shorten the name of the library for further use\n"
86 | ]
87 | },
88 | {
89 | "cell_type": "code",
90 | "execution_count": 1,
91 | "metadata": {},
92 | "outputs": [],
93 | "source": [
94 | "import pandas as pd \n"
95 | ]
96 | },
97 | {
98 | "cell_type": "markdown",
99 | "metadata": {},
100 | "source": [
101 | " Load data and store in dataframe car
\n",
102 | " \n",
103 | " \n",
104 | " This is one of the way Pandas allows us to work with data."
105 | ]
106 | },
107 | {
108 | "cell_type": "code",
109 | "execution_count": 2,
110 | "metadata": {},
111 | "outputs": [
112 | {
113 | "data": {
114 | "text/html": [
115 | "\n",
116 | "\n",
129 | "
\n",
130 | " \n",
131 | " \n",
132 | " | \n",
133 | " symboling | \n",
134 | " normalized-losses | \n",
135 | " make | \n",
136 | " fuel-type | \n",
137 | " aspiration | \n",
138 | " num-of-doors | \n",
139 | " body-style | \n",
140 | " drive-wheels | \n",
141 | " engine-location | \n",
142 | " wheel-base | \n",
143 | " ... | \n",
144 | " engine-size | \n",
145 | " fuel-system | \n",
146 | " bore | \n",
147 | " stroke | \n",
148 | " compression-ratio | \n",
149 | " horsepower | \n",
150 | " peak-rpm | \n",
151 | " city-mpg | \n",
152 | " highway-mpg | \n",
153 | " price | \n",
154 | "
\n",
155 | " \n",
156 | " \n",
157 | " \n",
158 | " 0 | \n",
159 | " 3 | \n",
160 | " ? | \n",
161 | " alfa-romero | \n",
162 | " gas | \n",
163 | " std | \n",
164 | " two | \n",
165 | " convertible | \n",
166 | " rwd | \n",
167 | " front | \n",
168 | " 88.6 | \n",
169 | " ... | \n",
170 | " 130 | \n",
171 | " mpfi | \n",
172 | " 3.47 | \n",
173 | " 2.68 | \n",
174 | " 9.0 | \n",
175 | " 111 | \n",
176 | " 5000 | \n",
177 | " 21 | \n",
178 | " 27 | \n",
179 | " 13495 | \n",
180 | "
\n",
181 | " \n",
182 | " 1 | \n",
183 | " 3 | \n",
184 | " ? | \n",
185 | " alfa-romero | \n",
186 | " gas | \n",
187 | " std | \n",
188 | " two | \n",
189 | " convertible | \n",
190 | " rwd | \n",
191 | " front | \n",
192 | " 88.6 | \n",
193 | " ... | \n",
194 | " 130 | \n",
195 | " mpfi | \n",
196 | " 3.47 | \n",
197 | " 2.68 | \n",
198 | " 9.0 | \n",
199 | " 111 | \n",
200 | " 5000 | \n",
201 | " 21 | \n",
202 | " 27 | \n",
203 | " 16500 | \n",
204 | "
\n",
205 | " \n",
206 | " 2 | \n",
207 | " 1 | \n",
208 | " ? | \n",
209 | " alfa-romero | \n",
210 | " gas | \n",
211 | " std | \n",
212 | " two | \n",
213 | " hatchback | \n",
214 | " rwd | \n",
215 | " front | \n",
216 | " 94.5 | \n",
217 | " ... | \n",
218 | " 152 | \n",
219 | " mpfi | \n",
220 | " 2.68 | \n",
221 | " 3.47 | \n",
222 | " 9.0 | \n",
223 | " 154 | \n",
224 | " 5000 | \n",
225 | " 19 | \n",
226 | " 26 | \n",
227 | " 16500 | \n",
228 | "
\n",
229 | " \n",
230 | " 3 | \n",
231 | " 2 | \n",
232 | " 164 | \n",
233 | " audi | \n",
234 | " gas | \n",
235 | " std | \n",
236 | " four | \n",
237 | " sedan | \n",
238 | " fwd | \n",
239 | " front | \n",
240 | " 99.8 | \n",
241 | " ... | \n",
242 | " 109 | \n",
243 | " mpfi | \n",
244 | " 3.19 | \n",
245 | " 3.4 | \n",
246 | " 10.0 | \n",
247 | " 102 | \n",
248 | " 5500 | \n",
249 | " 24 | \n",
250 | " 30 | \n",
251 | " 13950 | \n",
252 | "
\n",
253 | " \n",
254 | " 4 | \n",
255 | " 2 | \n",
256 | " 164 | \n",
257 | " audi | \n",
258 | " gas | \n",
259 | " std | \n",
260 | " four | \n",
261 | " sedan | \n",
262 | " 4wd | \n",
263 | " front | \n",
264 | " 99.4 | \n",
265 | " ... | \n",
266 | " 136 | \n",
267 | " mpfi | \n",
268 | " 3.19 | \n",
269 | " 3.4 | \n",
270 | " 8.0 | \n",
271 | " 115 | \n",
272 | " 5500 | \n",
273 | " 18 | \n",
274 | " 22 | \n",
275 | " 17450 | \n",
276 | "
\n",
277 | " \n",
278 | "
\n",
279 | "
5 rows × 26 columns
\n",
280 | "
"
281 | ],
282 | "text/plain": [
283 | " symboling normalized-losses make fuel-type aspiration num-of-doors \\\n",
284 | "0 3 ? alfa-romero gas std two \n",
285 | "1 3 ? alfa-romero gas std two \n",
286 | "2 1 ? alfa-romero gas std two \n",
287 | "3 2 164 audi gas std four \n",
288 | "4 2 164 audi gas std four \n",
289 | "\n",
290 | " body-style drive-wheels engine-location wheel-base ... engine-size \\\n",
291 | "0 convertible rwd front 88.6 ... 130 \n",
292 | "1 convertible rwd front 88.6 ... 130 \n",
293 | "2 hatchback rwd front 94.5 ... 152 \n",
294 | "3 sedan fwd front 99.8 ... 109 \n",
295 | "4 sedan 4wd front 99.4 ... 136 \n",
296 | "\n",
297 | " fuel-system bore stroke compression-ratio horsepower peak-rpm city-mpg \\\n",
298 | "0 mpfi 3.47 2.68 9.0 111 5000 21 \n",
299 | "1 mpfi 3.47 2.68 9.0 111 5000 21 \n",
300 | "2 mpfi 2.68 3.47 9.0 154 5000 19 \n",
301 | "3 mpfi 3.19 3.4 10.0 102 5500 24 \n",
302 | "4 mpfi 3.19 3.4 8.0 115 5500 18 \n",
303 | "\n",
304 | " highway-mpg price \n",
305 | "0 27 13495 \n",
306 | "1 27 16500 \n",
307 | "2 26 16500 \n",
308 | "3 30 13950 \n",
309 | "4 22 17450 \n",
310 | "\n",
311 | "[5 rows x 26 columns]"
312 | ]
313 | },
314 | "execution_count": 2,
315 | "metadata": {},
316 | "output_type": "execute_result"
317 | }
318 | ],
319 | "source": [
320 | "path ='datasets_1291_2355_Automobile_data.csv'\n",
321 | "car = pd.read_csv(path)\n",
322 | "car.head()\n"
323 | ]
324 | },
325 | {
326 | "cell_type": "code",
327 | "execution_count": 3,
328 | "metadata": {},
329 | "outputs": [
330 | {
331 | "data": {
332 | "text/html": [
333 | "\n",
334 | "\n",
347 | "
\n",
348 | " \n",
349 | " \n",
350 | " | \n",
351 | " symboling | \n",
352 | " normalized-losses | \n",
353 | " make | \n",
354 | " fuel-type | \n",
355 | " aspiration | \n",
356 | " num-of-doors | \n",
357 | " body-style | \n",
358 | " drive-wheels | \n",
359 | " engine-location | \n",
360 | " wheel-base | \n",
361 | " ... | \n",
362 | " engine-size | \n",
363 | " fuel-system | \n",
364 | " bore | \n",
365 | " stroke | \n",
366 | " compression-ratio | \n",
367 | " horsepower | \n",
368 | " peak-rpm | \n",
369 | " city-mpg | \n",
370 | " highway-mpg | \n",
371 | " price | \n",
372 | "
\n",
373 | " \n",
374 | " \n",
375 | " \n",
376 | " 200 | \n",
377 | " -1 | \n",
378 | " 95 | \n",
379 | " volvo | \n",
380 | " gas | \n",
381 | " std | \n",
382 | " four | \n",
383 | " sedan | \n",
384 | " rwd | \n",
385 | " front | \n",
386 | " 109.1 | \n",
387 | " ... | \n",
388 | " 141 | \n",
389 | " mpfi | \n",
390 | " 3.78 | \n",
391 | " 3.15 | \n",
392 | " 9.5 | \n",
393 | " 114 | \n",
394 | " 5400 | \n",
395 | " 23 | \n",
396 | " 28 | \n",
397 | " 16845 | \n",
398 | "
\n",
399 | " \n",
400 | " 201 | \n",
401 | " -1 | \n",
402 | " 95 | \n",
403 | " volvo | \n",
404 | " gas | \n",
405 | " turbo | \n",
406 | " four | \n",
407 | " sedan | \n",
408 | " rwd | \n",
409 | " front | \n",
410 | " 109.1 | \n",
411 | " ... | \n",
412 | " 141 | \n",
413 | " mpfi | \n",
414 | " 3.78 | \n",
415 | " 3.15 | \n",
416 | " 8.7 | \n",
417 | " 160 | \n",
418 | " 5300 | \n",
419 | " 19 | \n",
420 | " 25 | \n",
421 | " 19045 | \n",
422 | "
\n",
423 | " \n",
424 | " 202 | \n",
425 | " -1 | \n",
426 | " 95 | \n",
427 | " volvo | \n",
428 | " gas | \n",
429 | " std | \n",
430 | " four | \n",
431 | " sedan | \n",
432 | " rwd | \n",
433 | " front | \n",
434 | " 109.1 | \n",
435 | " ... | \n",
436 | " 173 | \n",
437 | " mpfi | \n",
438 | " 3.58 | \n",
439 | " 2.87 | \n",
440 | " 8.8 | \n",
441 | " 134 | \n",
442 | " 5500 | \n",
443 | " 18 | \n",
444 | " 23 | \n",
445 | " 21485 | \n",
446 | "
\n",
447 | " \n",
448 | " 203 | \n",
449 | " -1 | \n",
450 | " 95 | \n",
451 | " volvo | \n",
452 | " diesel | \n",
453 | " turbo | \n",
454 | " four | \n",
455 | " sedan | \n",
456 | " rwd | \n",
457 | " front | \n",
458 | " 109.1 | \n",
459 | " ... | \n",
460 | " 145 | \n",
461 | " idi | \n",
462 | " 3.01 | \n",
463 | " 3.4 | \n",
464 | " 23.0 | \n",
465 | " 106 | \n",
466 | " 4800 | \n",
467 | " 26 | \n",
468 | " 27 | \n",
469 | " 22470 | \n",
470 | "
\n",
471 | " \n",
472 | " 204 | \n",
473 | " -1 | \n",
474 | " 95 | \n",
475 | " volvo | \n",
476 | " gas | \n",
477 | " turbo | \n",
478 | " four | \n",
479 | " sedan | \n",
480 | " rwd | \n",
481 | " front | \n",
482 | " 109.1 | \n",
483 | " ... | \n",
484 | " 141 | \n",
485 | " mpfi | \n",
486 | " 3.78 | \n",
487 | " 3.15 | \n",
488 | " 9.5 | \n",
489 | " 114 | \n",
490 | " 5400 | \n",
491 | " 19 | \n",
492 | " 25 | \n",
493 | " 22625 | \n",
494 | "
\n",
495 | " \n",
496 | "
\n",
497 | "
5 rows × 26 columns
\n",
498 | "
"
499 | ],
500 | "text/plain": [
501 | " symboling normalized-losses make fuel-type aspiration num-of-doors \\\n",
502 | "200 -1 95 volvo gas std four \n",
503 | "201 -1 95 volvo gas turbo four \n",
504 | "202 -1 95 volvo gas std four \n",
505 | "203 -1 95 volvo diesel turbo four \n",
506 | "204 -1 95 volvo gas turbo four \n",
507 | "\n",
508 | " body-style drive-wheels engine-location wheel-base ... engine-size \\\n",
509 | "200 sedan rwd front 109.1 ... 141 \n",
510 | "201 sedan rwd front 109.1 ... 141 \n",
511 | "202 sedan rwd front 109.1 ... 173 \n",
512 | "203 sedan rwd front 109.1 ... 145 \n",
513 | "204 sedan rwd front 109.1 ... 141 \n",
514 | "\n",
515 | " fuel-system bore stroke compression-ratio horsepower peak-rpm \\\n",
516 | "200 mpfi 3.78 3.15 9.5 114 5400 \n",
517 | "201 mpfi 3.78 3.15 8.7 160 5300 \n",
518 | "202 mpfi 3.58 2.87 8.8 134 5500 \n",
519 | "203 idi 3.01 3.4 23.0 106 4800 \n",
520 | "204 mpfi 3.78 3.15 9.5 114 5400 \n",
521 | "\n",
522 | " city-mpg highway-mpg price \n",
523 | "200 23 28 16845 \n",
524 | "201 19 25 19045 \n",
525 | "202 18 23 21485 \n",
526 | "203 26 27 22470 \n",
527 | "204 19 25 22625 \n",
528 | "\n",
529 | "[5 rows x 26 columns]"
530 | ]
531 | },
532 | "execution_count": 3,
533 | "metadata": {},
534 | "output_type": "execute_result"
535 | }
536 | ],
537 | "source": [
538 | "car.tail()\n"
539 | ]
540 | },
541 | {
542 | "cell_type": "code",
543 | "execution_count": 4,
544 | "metadata": {},
545 | "outputs": [
546 | {
547 | "data": {
548 | "text/html": [
549 | "\n",
550 | "\n",
563 | "
\n",
564 | " \n",
565 | " \n",
566 | " | \n",
567 | " symboling | \n",
568 | " normalized-losses | \n",
569 | " make | \n",
570 | " fuel-type | \n",
571 | " aspiration | \n",
572 | " num-of-doors | \n",
573 | " body-style | \n",
574 | " drive-wheels | \n",
575 | " engine-location | \n",
576 | " wheel-base | \n",
577 | " ... | \n",
578 | " engine-size | \n",
579 | " fuel-system | \n",
580 | " bore | \n",
581 | " stroke | \n",
582 | " compression-ratio | \n",
583 | " horsepower | \n",
584 | " peak-rpm | \n",
585 | " city-mpg | \n",
586 | " highway-mpg | \n",
587 | " price | \n",
588 | "
\n",
589 | " \n",
590 | " \n",
591 | " \n",
592 | " 0 | \n",
593 | " 3 | \n",
594 | " ? | \n",
595 | " alfa-romero | \n",
596 | " gas | \n",
597 | " std | \n",
598 | " two | \n",
599 | " convertible | \n",
600 | " rwd | \n",
601 | " front | \n",
602 | " 88.6 | \n",
603 | " ... | \n",
604 | " 130 | \n",
605 | " mpfi | \n",
606 | " 3.47 | \n",
607 | " 2.68 | \n",
608 | " 9.00 | \n",
609 | " 111 | \n",
610 | " 5000 | \n",
611 | " 21 | \n",
612 | " 27 | \n",
613 | " 13495 | \n",
614 | "
\n",
615 | " \n",
616 | " 1 | \n",
617 | " 3 | \n",
618 | " ? | \n",
619 | " alfa-romero | \n",
620 | " gas | \n",
621 | " std | \n",
622 | " two | \n",
623 | " convertible | \n",
624 | " rwd | \n",
625 | " front | \n",
626 | " 88.6 | \n",
627 | " ... | \n",
628 | " 130 | \n",
629 | " mpfi | \n",
630 | " 3.47 | \n",
631 | " 2.68 | \n",
632 | " 9.00 | \n",
633 | " 111 | \n",
634 | " 5000 | \n",
635 | " 21 | \n",
636 | " 27 | \n",
637 | " 16500 | \n",
638 | "
\n",
639 | " \n",
640 | " 2 | \n",
641 | " 1 | \n",
642 | " ? | \n",
643 | " alfa-romero | \n",
644 | " gas | \n",
645 | " std | \n",
646 | " two | \n",
647 | " hatchback | \n",
648 | " rwd | \n",
649 | " front | \n",
650 | " 94.5 | \n",
651 | " ... | \n",
652 | " 152 | \n",
653 | " mpfi | \n",
654 | " 2.68 | \n",
655 | " 3.47 | \n",
656 | " 9.00 | \n",
657 | " 154 | \n",
658 | " 5000 | \n",
659 | " 19 | \n",
660 | " 26 | \n",
661 | " 16500 | \n",
662 | "
\n",
663 | " \n",
664 | " 3 | \n",
665 | " 2 | \n",
666 | " 164 | \n",
667 | " audi | \n",
668 | " gas | \n",
669 | " std | \n",
670 | " four | \n",
671 | " sedan | \n",
672 | " fwd | \n",
673 | " front | \n",
674 | " 99.8 | \n",
675 | " ... | \n",
676 | " 109 | \n",
677 | " mpfi | \n",
678 | " 3.19 | \n",
679 | " 3.4 | \n",
680 | " 10.00 | \n",
681 | " 102 | \n",
682 | " 5500 | \n",
683 | " 24 | \n",
684 | " 30 | \n",
685 | " 13950 | \n",
686 | "
\n",
687 | " \n",
688 | " 4 | \n",
689 | " 2 | \n",
690 | " 164 | \n",
691 | " audi | \n",
692 | " gas | \n",
693 | " std | \n",
694 | " four | \n",
695 | " sedan | \n",
696 | " 4wd | \n",
697 | " front | \n",
698 | " 99.4 | \n",
699 | " ... | \n",
700 | " 136 | \n",
701 | " mpfi | \n",
702 | " 3.19 | \n",
703 | " 3.4 | \n",
704 | " 8.00 | \n",
705 | " 115 | \n",
706 | " 5500 | \n",
707 | " 18 | \n",
708 | " 22 | \n",
709 | " 17450 | \n",
710 | "
\n",
711 | " \n",
712 | " 5 | \n",
713 | " 2 | \n",
714 | " ? | \n",
715 | " audi | \n",
716 | " gas | \n",
717 | " std | \n",
718 | " two | \n",
719 | " sedan | \n",
720 | " fwd | \n",
721 | " front | \n",
722 | " 99.8 | \n",
723 | " ... | \n",
724 | " 136 | \n",
725 | " mpfi | \n",
726 | " 3.19 | \n",
727 | " 3.4 | \n",
728 | " 8.50 | \n",
729 | " 110 | \n",
730 | " 5500 | \n",
731 | " 19 | \n",
732 | " 25 | \n",
733 | " 15250 | \n",
734 | "
\n",
735 | " \n",
736 | " 6 | \n",
737 | " 1 | \n",
738 | " 158 | \n",
739 | " audi | \n",
740 | " gas | \n",
741 | " std | \n",
742 | " four | \n",
743 | " sedan | \n",
744 | " fwd | \n",
745 | " front | \n",
746 | " 105.8 | \n",
747 | " ... | \n",
748 | " 136 | \n",
749 | " mpfi | \n",
750 | " 3.19 | \n",
751 | " 3.4 | \n",
752 | " 8.50 | \n",
753 | " 110 | \n",
754 | " 5500 | \n",
755 | " 19 | \n",
756 | " 25 | \n",
757 | " 17710 | \n",
758 | "
\n",
759 | " \n",
760 | " 7 | \n",
761 | " 1 | \n",
762 | " ? | \n",
763 | " audi | \n",
764 | " gas | \n",
765 | " std | \n",
766 | " four | \n",
767 | " wagon | \n",
768 | " fwd | \n",
769 | " front | \n",
770 | " 105.8 | \n",
771 | " ... | \n",
772 | " 136 | \n",
773 | " mpfi | \n",
774 | " 3.19 | \n",
775 | " 3.4 | \n",
776 | " 8.50 | \n",
777 | " 110 | \n",
778 | " 5500 | \n",
779 | " 19 | \n",
780 | " 25 | \n",
781 | " 18920 | \n",
782 | "
\n",
783 | " \n",
784 | " 8 | \n",
785 | " 1 | \n",
786 | " 158 | \n",
787 | " audi | \n",
788 | " gas | \n",
789 | " turbo | \n",
790 | " four | \n",
791 | " sedan | \n",
792 | " fwd | \n",
793 | " front | \n",
794 | " 105.8 | \n",
795 | " ... | \n",
796 | " 131 | \n",
797 | " mpfi | \n",
798 | " 3.13 | \n",
799 | " 3.4 | \n",
800 | " 8.30 | \n",
801 | " 140 | \n",
802 | " 5500 | \n",
803 | " 17 | \n",
804 | " 20 | \n",
805 | " 23875 | \n",
806 | "
\n",
807 | " \n",
808 | " 9 | \n",
809 | " 0 | \n",
810 | " ? | \n",
811 | " audi | \n",
812 | " gas | \n",
813 | " turbo | \n",
814 | " two | \n",
815 | " hatchback | \n",
816 | " 4wd | \n",
817 | " front | \n",
818 | " 99.5 | \n",
819 | " ... | \n",
820 | " 131 | \n",
821 | " mpfi | \n",
822 | " 3.13 | \n",
823 | " 3.4 | \n",
824 | " 7.00 | \n",
825 | " 160 | \n",
826 | " 5500 | \n",
827 | " 16 | \n",
828 | " 22 | \n",
829 | " ? | \n",
830 | "
\n",
831 | " \n",
832 | " 10 | \n",
833 | " 2 | \n",
834 | " 192 | \n",
835 | " bmw | \n",
836 | " gas | \n",
837 | " std | \n",
838 | " two | \n",
839 | " sedan | \n",
840 | " rwd | \n",
841 | " front | \n",
842 | " 101.2 | \n",
843 | " ... | \n",
844 | " 108 | \n",
845 | " mpfi | \n",
846 | " 3.5 | \n",
847 | " 2.8 | \n",
848 | " 8.80 | \n",
849 | " 101 | \n",
850 | " 5800 | \n",
851 | " 23 | \n",
852 | " 29 | \n",
853 | " 16430 | \n",
854 | "
\n",
855 | " \n",
856 | " 11 | \n",
857 | " 0 | \n",
858 | " 192 | \n",
859 | " bmw | \n",
860 | " gas | \n",
861 | " std | \n",
862 | " four | \n",
863 | " sedan | \n",
864 | " rwd | \n",
865 | " front | \n",
866 | " 101.2 | \n",
867 | " ... | \n",
868 | " 108 | \n",
869 | " mpfi | \n",
870 | " 3.5 | \n",
871 | " 2.8 | \n",
872 | " 8.80 | \n",
873 | " 101 | \n",
874 | " 5800 | \n",
875 | " 23 | \n",
876 | " 29 | \n",
877 | " 16925 | \n",
878 | "
\n",
879 | " \n",
880 | " 12 | \n",
881 | " 0 | \n",
882 | " 188 | \n",
883 | " bmw | \n",
884 | " gas | \n",
885 | " std | \n",
886 | " two | \n",
887 | " sedan | \n",
888 | " rwd | \n",
889 | " front | \n",
890 | " 101.2 | \n",
891 | " ... | \n",
892 | " 164 | \n",
893 | " mpfi | \n",
894 | " 3.31 | \n",
895 | " 3.19 | \n",
896 | " 9.00 | \n",
897 | " 121 | \n",
898 | " 4250 | \n",
899 | " 21 | \n",
900 | " 28 | \n",
901 | " 20970 | \n",
902 | "
\n",
903 | " \n",
904 | " 13 | \n",
905 | " 0 | \n",
906 | " 188 | \n",
907 | " bmw | \n",
908 | " gas | \n",
909 | " std | \n",
910 | " four | \n",
911 | " sedan | \n",
912 | " rwd | \n",
913 | " front | \n",
914 | " 101.2 | \n",
915 | " ... | \n",
916 | " 164 | \n",
917 | " mpfi | \n",
918 | " 3.31 | \n",
919 | " 3.19 | \n",
920 | " 9.00 | \n",
921 | " 121 | \n",
922 | " 4250 | \n",
923 | " 21 | \n",
924 | " 28 | \n",
925 | " 21105 | \n",
926 | "
\n",
927 | " \n",
928 | " 14 | \n",
929 | " 1 | \n",
930 | " ? | \n",
931 | " bmw | \n",
932 | " gas | \n",
933 | " std | \n",
934 | " four | \n",
935 | " sedan | \n",
936 | " rwd | \n",
937 | " front | \n",
938 | " 103.5 | \n",
939 | " ... | \n",
940 | " 164 | \n",
941 | " mpfi | \n",
942 | " 3.31 | \n",
943 | " 3.19 | \n",
944 | " 9.00 | \n",
945 | " 121 | \n",
946 | " 4250 | \n",
947 | " 20 | \n",
948 | " 25 | \n",
949 | " 24565 | \n",
950 | "
\n",
951 | " \n",
952 | " 15 | \n",
953 | " 0 | \n",
954 | " ? | \n",
955 | " bmw | \n",
956 | " gas | \n",
957 | " std | \n",
958 | " four | \n",
959 | " sedan | \n",
960 | " rwd | \n",
961 | " front | \n",
962 | " 103.5 | \n",
963 | " ... | \n",
964 | " 209 | \n",
965 | " mpfi | \n",
966 | " 3.62 | \n",
967 | " 3.39 | \n",
968 | " 8.00 | \n",
969 | " 182 | \n",
970 | " 5400 | \n",
971 | " 16 | \n",
972 | " 22 | \n",
973 | " 30760 | \n",
974 | "
\n",
975 | " \n",
976 | " 16 | \n",
977 | " 0 | \n",
978 | " ? | \n",
979 | " bmw | \n",
980 | " gas | \n",
981 | " std | \n",
982 | " two | \n",
983 | " sedan | \n",
984 | " rwd | \n",
985 | " front | \n",
986 | " 103.5 | \n",
987 | " ... | \n",
988 | " 209 | \n",
989 | " mpfi | \n",
990 | " 3.62 | \n",
991 | " 3.39 | \n",
992 | " 8.00 | \n",
993 | " 182 | \n",
994 | " 5400 | \n",
995 | " 16 | \n",
996 | " 22 | \n",
997 | " 41315 | \n",
998 | "
\n",
999 | " \n",
1000 | " 17 | \n",
1001 | " 0 | \n",
1002 | " ? | \n",
1003 | " bmw | \n",
1004 | " gas | \n",
1005 | " std | \n",
1006 | " four | \n",
1007 | " sedan | \n",
1008 | " rwd | \n",
1009 | " front | \n",
1010 | " 110.0 | \n",
1011 | " ... | \n",
1012 | " 209 | \n",
1013 | " mpfi | \n",
1014 | " 3.62 | \n",
1015 | " 3.39 | \n",
1016 | " 8.00 | \n",
1017 | " 182 | \n",
1018 | " 5400 | \n",
1019 | " 15 | \n",
1020 | " 20 | \n",
1021 | " 36880 | \n",
1022 | "
\n",
1023 | " \n",
1024 | " 18 | \n",
1025 | " 2 | \n",
1026 | " 121 | \n",
1027 | " chevrolet | \n",
1028 | " gas | \n",
1029 | " std | \n",
1030 | " two | \n",
1031 | " hatchback | \n",
1032 | " fwd | \n",
1033 | " front | \n",
1034 | " 88.4 | \n",
1035 | " ... | \n",
1036 | " 61 | \n",
1037 | " 2bbl | \n",
1038 | " 2.91 | \n",
1039 | " 3.03 | \n",
1040 | " 9.50 | \n",
1041 | " 48 | \n",
1042 | " 5100 | \n",
1043 | " 47 | \n",
1044 | " 53 | \n",
1045 | " 5151 | \n",
1046 | "
\n",
1047 | " \n",
1048 | " 19 | \n",
1049 | " 1 | \n",
1050 | " 98 | \n",
1051 | " chevrolet | \n",
1052 | " gas | \n",
1053 | " std | \n",
1054 | " two | \n",
1055 | " hatchback | \n",
1056 | " fwd | \n",
1057 | " front | \n",
1058 | " 94.5 | \n",
1059 | " ... | \n",
1060 | " 90 | \n",
1061 | " 2bbl | \n",
1062 | " 3.03 | \n",
1063 | " 3.11 | \n",
1064 | " 9.60 | \n",
1065 | " 70 | \n",
1066 | " 5400 | \n",
1067 | " 38 | \n",
1068 | " 43 | \n",
1069 | " 6295 | \n",
1070 | "
\n",
1071 | " \n",
1072 | " 20 | \n",
1073 | " 0 | \n",
1074 | " 81 | \n",
1075 | " chevrolet | \n",
1076 | " gas | \n",
1077 | " std | \n",
1078 | " four | \n",
1079 | " sedan | \n",
1080 | " fwd | \n",
1081 | " front | \n",
1082 | " 94.5 | \n",
1083 | " ... | \n",
1084 | " 90 | \n",
1085 | " 2bbl | \n",
1086 | " 3.03 | \n",
1087 | " 3.11 | \n",
1088 | " 9.60 | \n",
1089 | " 70 | \n",
1090 | " 5400 | \n",
1091 | " 38 | \n",
1092 | " 43 | \n",
1093 | " 6575 | \n",
1094 | "
\n",
1095 | " \n",
1096 | " 21 | \n",
1097 | " 1 | \n",
1098 | " 118 | \n",
1099 | " dodge | \n",
1100 | " gas | \n",
1101 | " std | \n",
1102 | " two | \n",
1103 | " hatchback | \n",
1104 | " fwd | \n",
1105 | " front | \n",
1106 | " 93.7 | \n",
1107 | " ... | \n",
1108 | " 90 | \n",
1109 | " 2bbl | \n",
1110 | " 2.97 | \n",
1111 | " 3.23 | \n",
1112 | " 9.41 | \n",
1113 | " 68 | \n",
1114 | " 5500 | \n",
1115 | " 37 | \n",
1116 | " 41 | \n",
1117 | " 5572 | \n",
1118 | "
\n",
1119 | " \n",
1120 | " 22 | \n",
1121 | " 1 | \n",
1122 | " 118 | \n",
1123 | " dodge | \n",
1124 | " gas | \n",
1125 | " std | \n",
1126 | " two | \n",
1127 | " hatchback | \n",
1128 | " fwd | \n",
1129 | " front | \n",
1130 | " 93.7 | \n",
1131 | " ... | \n",
1132 | " 90 | \n",
1133 | " 2bbl | \n",
1134 | " 2.97 | \n",
1135 | " 3.23 | \n",
1136 | " 9.40 | \n",
1137 | " 68 | \n",
1138 | " 5500 | \n",
1139 | " 31 | \n",
1140 | " 38 | \n",
1141 | " 6377 | \n",
1142 | "
\n",
1143 | " \n",
1144 | " 23 | \n",
1145 | " 1 | \n",
1146 | " 118 | \n",
1147 | " dodge | \n",
1148 | " gas | \n",
1149 | " turbo | \n",
1150 | " two | \n",
1151 | " hatchback | \n",
1152 | " fwd | \n",
1153 | " front | \n",
1154 | " 93.7 | \n",
1155 | " ... | \n",
1156 | " 98 | \n",
1157 | " mpfi | \n",
1158 | " 3.03 | \n",
1159 | " 3.39 | \n",
1160 | " 7.60 | \n",
1161 | " 102 | \n",
1162 | " 5500 | \n",
1163 | " 24 | \n",
1164 | " 30 | \n",
1165 | " 7957 | \n",
1166 | "
\n",
1167 | " \n",
1168 | " 24 | \n",
1169 | " 1 | \n",
1170 | " 148 | \n",
1171 | " dodge | \n",
1172 | " gas | \n",
1173 | " std | \n",
1174 | " four | \n",
1175 | " hatchback | \n",
1176 | " fwd | \n",
1177 | " front | \n",
1178 | " 93.7 | \n",
1179 | " ... | \n",
1180 | " 90 | \n",
1181 | " 2bbl | \n",
1182 | " 2.97 | \n",
1183 | " 3.23 | \n",
1184 | " 9.40 | \n",
1185 | " 68 | \n",
1186 | " 5500 | \n",
1187 | " 31 | \n",
1188 | " 38 | \n",
1189 | " 6229 | \n",
1190 | "
\n",
1191 | " \n",
1192 | " 25 | \n",
1193 | " 1 | \n",
1194 | " 148 | \n",
1195 | " dodge | \n",
1196 | " gas | \n",
1197 | " std | \n",
1198 | " four | \n",
1199 | " sedan | \n",
1200 | " fwd | \n",
1201 | " front | \n",
1202 | " 93.7 | \n",
1203 | " ... | \n",
1204 | " 90 | \n",
1205 | " 2bbl | \n",
1206 | " 2.97 | \n",
1207 | " 3.23 | \n",
1208 | " 9.40 | \n",
1209 | " 68 | \n",
1210 | " 5500 | \n",
1211 | " 31 | \n",
1212 | " 38 | \n",
1213 | " 6692 | \n",
1214 | "
\n",
1215 | " \n",
1216 | " 26 | \n",
1217 | " 1 | \n",
1218 | " 148 | \n",
1219 | " dodge | \n",
1220 | " gas | \n",
1221 | " std | \n",
1222 | " four | \n",
1223 | " sedan | \n",
1224 | " fwd | \n",
1225 | " front | \n",
1226 | " 93.7 | \n",
1227 | " ... | \n",
1228 | " 90 | \n",
1229 | " 2bbl | \n",
1230 | " 2.97 | \n",
1231 | " 3.23 | \n",
1232 | " 9.40 | \n",
1233 | " 68 | \n",
1234 | " 5500 | \n",
1235 | " 31 | \n",
1236 | " 38 | \n",
1237 | " 7609 | \n",
1238 | "
\n",
1239 | " \n",
1240 | " 27 | \n",
1241 | " 1 | \n",
1242 | " 148 | \n",
1243 | " dodge | \n",
1244 | " gas | \n",
1245 | " turbo | \n",
1246 | " ? | \n",
1247 | " sedan | \n",
1248 | " fwd | \n",
1249 | " front | \n",
1250 | " 93.7 | \n",
1251 | " ... | \n",
1252 | " 98 | \n",
1253 | " mpfi | \n",
1254 | " 3.03 | \n",
1255 | " 3.39 | \n",
1256 | " 7.60 | \n",
1257 | " 102 | \n",
1258 | " 5500 | \n",
1259 | " 24 | \n",
1260 | " 30 | \n",
1261 | " 8558 | \n",
1262 | "
\n",
1263 | " \n",
1264 | " 28 | \n",
1265 | " -1 | \n",
1266 | " 110 | \n",
1267 | " dodge | \n",
1268 | " gas | \n",
1269 | " std | \n",
1270 | " four | \n",
1271 | " wagon | \n",
1272 | " fwd | \n",
1273 | " front | \n",
1274 | " 103.3 | \n",
1275 | " ... | \n",
1276 | " 122 | \n",
1277 | " 2bbl | \n",
1278 | " 3.34 | \n",
1279 | " 3.46 | \n",
1280 | " 8.50 | \n",
1281 | " 88 | \n",
1282 | " 5000 | \n",
1283 | " 24 | \n",
1284 | " 30 | \n",
1285 | " 8921 | \n",
1286 | "
\n",
1287 | " \n",
1288 | " 29 | \n",
1289 | " 3 | \n",
1290 | " 145 | \n",
1291 | " dodge | \n",
1292 | " gas | \n",
1293 | " turbo | \n",
1294 | " two | \n",
1295 | " hatchback | \n",
1296 | " fwd | \n",
1297 | " front | \n",
1298 | " 95.9 | \n",
1299 | " ... | \n",
1300 | " 156 | \n",
1301 | " mfi | \n",
1302 | " 3.6 | \n",
1303 | " 3.9 | \n",
1304 | " 7.00 | \n",
1305 | " 145 | \n",
1306 | " 5000 | \n",
1307 | " 19 | \n",
1308 | " 24 | \n",
1309 | " 12964 | \n",
1310 | "
\n",
1311 | " \n",
1312 | " 30 | \n",
1313 | " 2 | \n",
1314 | " 137 | \n",
1315 | " honda | \n",
1316 | " gas | \n",
1317 | " std | \n",
1318 | " two | \n",
1319 | " hatchback | \n",
1320 | " fwd | \n",
1321 | " front | \n",
1322 | " 86.6 | \n",
1323 | " ... | \n",
1324 | " 92 | \n",
1325 | " 1bbl | \n",
1326 | " 2.91 | \n",
1327 | " 3.41 | \n",
1328 | " 9.60 | \n",
1329 | " 58 | \n",
1330 | " 4800 | \n",
1331 | " 49 | \n",
1332 | " 54 | \n",
1333 | " 6479 | \n",
1334 | "
\n",
1335 | " \n",
1336 | " 31 | \n",
1337 | " 2 | \n",
1338 | " 137 | \n",
1339 | " honda | \n",
1340 | " gas | \n",
1341 | " std | \n",
1342 | " two | \n",
1343 | " hatchback | \n",
1344 | " fwd | \n",
1345 | " front | \n",
1346 | " 86.6 | \n",
1347 | " ... | \n",
1348 | " 92 | \n",
1349 | " 1bbl | \n",
1350 | " 2.91 | \n",
1351 | " 3.41 | \n",
1352 | " 9.20 | \n",
1353 | " 76 | \n",
1354 | " 6000 | \n",
1355 | " 31 | \n",
1356 | " 38 | \n",
1357 | " 6855 | \n",
1358 | "
\n",
1359 | " \n",
1360 | " 32 | \n",
1361 | " 1 | \n",
1362 | " 101 | \n",
1363 | " honda | \n",
1364 | " gas | \n",
1365 | " std | \n",
1366 | " two | \n",
1367 | " hatchback | \n",
1368 | " fwd | \n",
1369 | " front | \n",
1370 | " 93.7 | \n",
1371 | " ... | \n",
1372 | " 79 | \n",
1373 | " 1bbl | \n",
1374 | " 2.91 | \n",
1375 | " 3.07 | \n",
1376 | " 10.10 | \n",
1377 | " 60 | \n",
1378 | " 5500 | \n",
1379 | " 38 | \n",
1380 | " 42 | \n",
1381 | " 5399 | \n",
1382 | "
\n",
1383 | " \n",
1384 | " 33 | \n",
1385 | " 1 | \n",
1386 | " 101 | \n",
1387 | " honda | \n",
1388 | " gas | \n",
1389 | " std | \n",
1390 | " two | \n",
1391 | " hatchback | \n",
1392 | " fwd | \n",
1393 | " front | \n",
1394 | " 93.7 | \n",
1395 | " ... | \n",
1396 | " 92 | \n",
1397 | " 1bbl | \n",
1398 | " 2.91 | \n",
1399 | " 3.41 | \n",
1400 | " 9.20 | \n",
1401 | " 76 | \n",
1402 | " 6000 | \n",
1403 | " 30 | \n",
1404 | " 34 | \n",
1405 | " 6529 | \n",
1406 | "
\n",
1407 | " \n",
1408 | " 34 | \n",
1409 | " 1 | \n",
1410 | " 101 | \n",
1411 | " honda | \n",
1412 | " gas | \n",
1413 | " std | \n",
1414 | " two | \n",
1415 | " hatchback | \n",
1416 | " fwd | \n",
1417 | " front | \n",
1418 | " 93.7 | \n",
1419 | " ... | \n",
1420 | " 92 | \n",
1421 | " 1bbl | \n",
1422 | " 2.91 | \n",
1423 | " 3.41 | \n",
1424 | " 9.20 | \n",
1425 | " 76 | \n",
1426 | " 6000 | \n",
1427 | " 30 | \n",
1428 | " 34 | \n",
1429 | " 7129 | \n",
1430 | "
\n",
1431 | " \n",
1432 | " 35 | \n",
1433 | " 0 | \n",
1434 | " 110 | \n",
1435 | " honda | \n",
1436 | " gas | \n",
1437 | " std | \n",
1438 | " four | \n",
1439 | " sedan | \n",
1440 | " fwd | \n",
1441 | " front | \n",
1442 | " 96.5 | \n",
1443 | " ... | \n",
1444 | " 92 | \n",
1445 | " 1bbl | \n",
1446 | " 2.91 | \n",
1447 | " 3.41 | \n",
1448 | " 9.20 | \n",
1449 | " 76 | \n",
1450 | " 6000 | \n",
1451 | " 30 | \n",
1452 | " 34 | \n",
1453 | " 7295 | \n",
1454 | "
\n",
1455 | " \n",
1456 | " 36 | \n",
1457 | " 0 | \n",
1458 | " 78 | \n",
1459 | " honda | \n",
1460 | " gas | \n",
1461 | " std | \n",
1462 | " four | \n",
1463 | " wagon | \n",
1464 | " fwd | \n",
1465 | " front | \n",
1466 | " 96.5 | \n",
1467 | " ... | \n",
1468 | " 92 | \n",
1469 | " 1bbl | \n",
1470 | " 2.92 | \n",
1471 | " 3.41 | \n",
1472 | " 9.20 | \n",
1473 | " 76 | \n",
1474 | " 6000 | \n",
1475 | " 30 | \n",
1476 | " 34 | \n",
1477 | " 7295 | \n",
1478 | "
\n",
1479 | " \n",
1480 | " 37 | \n",
1481 | " 0 | \n",
1482 | " 106 | \n",
1483 | " honda | \n",
1484 | " gas | \n",
1485 | " std | \n",
1486 | " two | \n",
1487 | " hatchback | \n",
1488 | " fwd | \n",
1489 | " front | \n",
1490 | " 96.5 | \n",
1491 | " ... | \n",
1492 | " 110 | \n",
1493 | " 1bbl | \n",
1494 | " 3.15 | \n",
1495 | " 3.58 | \n",
1496 | " 9.00 | \n",
1497 | " 86 | \n",
1498 | " 5800 | \n",
1499 | " 27 | \n",
1500 | " 33 | \n",
1501 | " 7895 | \n",
1502 | "
\n",
1503 | " \n",
1504 | " 38 | \n",
1505 | " 0 | \n",
1506 | " 106 | \n",
1507 | " honda | \n",
1508 | " gas | \n",
1509 | " std | \n",
1510 | " two | \n",
1511 | " hatchback | \n",
1512 | " fwd | \n",
1513 | " front | \n",
1514 | " 96.5 | \n",
1515 | " ... | \n",
1516 | " 110 | \n",
1517 | " 1bbl | \n",
1518 | " 3.15 | \n",
1519 | " 3.58 | \n",
1520 | " 9.00 | \n",
1521 | " 86 | \n",
1522 | " 5800 | \n",
1523 | " 27 | \n",
1524 | " 33 | \n",
1525 | " 9095 | \n",
1526 | "
\n",
1527 | " \n",
1528 | " 39 | \n",
1529 | " 0 | \n",
1530 | " 85 | \n",
1531 | " honda | \n",
1532 | " gas | \n",
1533 | " std | \n",
1534 | " four | \n",
1535 | " sedan | \n",
1536 | " fwd | \n",
1537 | " front | \n",
1538 | " 96.5 | \n",
1539 | " ... | \n",
1540 | " 110 | \n",
1541 | " 1bbl | \n",
1542 | " 3.15 | \n",
1543 | " 3.58 | \n",
1544 | " 9.00 | \n",
1545 | " 86 | \n",
1546 | " 5800 | \n",
1547 | " 27 | \n",
1548 | " 33 | \n",
1549 | " 8845 | \n",
1550 | "
\n",
1551 | " \n",
1552 | " 40 | \n",
1553 | " 0 | \n",
1554 | " 85 | \n",
1555 | " honda | \n",
1556 | " gas | \n",
1557 | " std | \n",
1558 | " four | \n",
1559 | " sedan | \n",
1560 | " fwd | \n",
1561 | " front | \n",
1562 | " 96.5 | \n",
1563 | " ... | \n",
1564 | " 110 | \n",
1565 | " 1bbl | \n",
1566 | " 3.15 | \n",
1567 | " 3.58 | \n",
1568 | " 9.00 | \n",
1569 | " 86 | \n",
1570 | " 5800 | \n",
1571 | " 27 | \n",
1572 | " 33 | \n",
1573 | " 10295 | \n",
1574 | "
\n",
1575 | " \n",
1576 | " 41 | \n",
1577 | " 0 | \n",
1578 | " 85 | \n",
1579 | " honda | \n",
1580 | " gas | \n",
1581 | " std | \n",
1582 | " four | \n",
1583 | " sedan | \n",
1584 | " fwd | \n",
1585 | " front | \n",
1586 | " 96.5 | \n",
1587 | " ... | \n",
1588 | " 110 | \n",
1589 | " mpfi | \n",
1590 | " 3.15 | \n",
1591 | " 3.58 | \n",
1592 | " 9.00 | \n",
1593 | " 101 | \n",
1594 | " 5800 | \n",
1595 | " 24 | \n",
1596 | " 28 | \n",
1597 | " 12945 | \n",
1598 | "
\n",
1599 | " \n",
1600 | " 42 | \n",
1601 | " 1 | \n",
1602 | " 107 | \n",
1603 | " honda | \n",
1604 | " gas | \n",
1605 | " std | \n",
1606 | " two | \n",
1607 | " sedan | \n",
1608 | " fwd | \n",
1609 | " front | \n",
1610 | " 96.5 | \n",
1611 | " ... | \n",
1612 | " 110 | \n",
1613 | " 2bbl | \n",
1614 | " 3.15 | \n",
1615 | " 3.58 | \n",
1616 | " 9.10 | \n",
1617 | " 100 | \n",
1618 | " 5500 | \n",
1619 | " 25 | \n",
1620 | " 31 | \n",
1621 | " 10345 | \n",
1622 | "
\n",
1623 | " \n",
1624 | " 43 | \n",
1625 | " 0 | \n",
1626 | " ? | \n",
1627 | " isuzu | \n",
1628 | " gas | \n",
1629 | " std | \n",
1630 | " four | \n",
1631 | " sedan | \n",
1632 | " rwd | \n",
1633 | " front | \n",
1634 | " 94.3 | \n",
1635 | " ... | \n",
1636 | " 111 | \n",
1637 | " 2bbl | \n",
1638 | " 3.31 | \n",
1639 | " 3.23 | \n",
1640 | " 8.50 | \n",
1641 | " 78 | \n",
1642 | " 4800 | \n",
1643 | " 24 | \n",
1644 | " 29 | \n",
1645 | " 6785 | \n",
1646 | "
\n",
1647 | " \n",
1648 | " 44 | \n",
1649 | " 1 | \n",
1650 | " ? | \n",
1651 | " isuzu | \n",
1652 | " gas | \n",
1653 | " std | \n",
1654 | " two | \n",
1655 | " sedan | \n",
1656 | " fwd | \n",
1657 | " front | \n",
1658 | " 94.5 | \n",
1659 | " ... | \n",
1660 | " 90 | \n",
1661 | " 2bbl | \n",
1662 | " 3.03 | \n",
1663 | " 3.11 | \n",
1664 | " 9.60 | \n",
1665 | " 70 | \n",
1666 | " 5400 | \n",
1667 | " 38 | \n",
1668 | " 43 | \n",
1669 | " ? | \n",
1670 | "
\n",
1671 | " \n",
1672 | " 45 | \n",
1673 | " 0 | \n",
1674 | " ? | \n",
1675 | " isuzu | \n",
1676 | " gas | \n",
1677 | " std | \n",
1678 | " four | \n",
1679 | " sedan | \n",
1680 | " fwd | \n",
1681 | " front | \n",
1682 | " 94.5 | \n",
1683 | " ... | \n",
1684 | " 90 | \n",
1685 | " 2bbl | \n",
1686 | " 3.03 | \n",
1687 | " 3.11 | \n",
1688 | " 9.60 | \n",
1689 | " 70 | \n",
1690 | " 5400 | \n",
1691 | " 38 | \n",
1692 | " 43 | \n",
1693 | " ? | \n",
1694 | "
\n",
1695 | " \n",
1696 | " 46 | \n",
1697 | " 2 | \n",
1698 | " ? | \n",
1699 | " isuzu | \n",
1700 | " gas | \n",
1701 | " std | \n",
1702 | " two | \n",
1703 | " hatchback | \n",
1704 | " rwd | \n",
1705 | " front | \n",
1706 | " 96.0 | \n",
1707 | " ... | \n",
1708 | " 119 | \n",
1709 | " spfi | \n",
1710 | " 3.43 | \n",
1711 | " 3.23 | \n",
1712 | " 9.20 | \n",
1713 | " 90 | \n",
1714 | " 5000 | \n",
1715 | " 24 | \n",
1716 | " 29 | \n",
1717 | " 11048 | \n",
1718 | "
\n",
1719 | " \n",
1720 | " 47 | \n",
1721 | " 0 | \n",
1722 | " 145 | \n",
1723 | " jaguar | \n",
1724 | " gas | \n",
1725 | " std | \n",
1726 | " four | \n",
1727 | " sedan | \n",
1728 | " rwd | \n",
1729 | " front | \n",
1730 | " 113.0 | \n",
1731 | " ... | \n",
1732 | " 258 | \n",
1733 | " mpfi | \n",
1734 | " 3.63 | \n",
1735 | " 4.17 | \n",
1736 | " 8.10 | \n",
1737 | " 176 | \n",
1738 | " 4750 | \n",
1739 | " 15 | \n",
1740 | " 19 | \n",
1741 | " 32250 | \n",
1742 | "
\n",
1743 | " \n",
1744 | " 48 | \n",
1745 | " 0 | \n",
1746 | " ? | \n",
1747 | " jaguar | \n",
1748 | " gas | \n",
1749 | " std | \n",
1750 | " four | \n",
1751 | " sedan | \n",
1752 | " rwd | \n",
1753 | " front | \n",
1754 | " 113.0 | \n",
1755 | " ... | \n",
1756 | " 258 | \n",
1757 | " mpfi | \n",
1758 | " 3.63 | \n",
1759 | " 4.17 | \n",
1760 | " 8.10 | \n",
1761 | " 176 | \n",
1762 | " 4750 | \n",
1763 | " 15 | \n",
1764 | " 19 | \n",
1765 | " 35550 | \n",
1766 | "
\n",
1767 | " \n",
1768 | " 49 | \n",
1769 | " 0 | \n",
1770 | " ? | \n",
1771 | " jaguar | \n",
1772 | " gas | \n",
1773 | " std | \n",
1774 | " two | \n",
1775 | " sedan | \n",
1776 | " rwd | \n",
1777 | " front | \n",
1778 | " 102.0 | \n",
1779 | " ... | \n",
1780 | " 326 | \n",
1781 | " mpfi | \n",
1782 | " 3.54 | \n",
1783 | " 2.76 | \n",
1784 | " 11.50 | \n",
1785 | " 262 | \n",
1786 | " 5000 | \n",
1787 | " 13 | \n",
1788 | " 17 | \n",
1789 | " 36000 | \n",
1790 | "
\n",
1791 | " \n",
1792 | " 50 | \n",
1793 | " 1 | \n",
1794 | " 104 | \n",
1795 | " mazda | \n",
1796 | " gas | \n",
1797 | " std | \n",
1798 | " two | \n",
1799 | " hatchback | \n",
1800 | " fwd | \n",
1801 | " front | \n",
1802 | " 93.1 | \n",
1803 | " ... | \n",
1804 | " 91 | \n",
1805 | " 2bbl | \n",
1806 | " 3.03 | \n",
1807 | " 3.15 | \n",
1808 | " 9.00 | \n",
1809 | " 68 | \n",
1810 | " 5000 | \n",
1811 | " 30 | \n",
1812 | " 31 | \n",
1813 | " 5195 | \n",
1814 | "
\n",
1815 | " \n",
1816 | " 51 | \n",
1817 | " 1 | \n",
1818 | " 104 | \n",
1819 | " mazda | \n",
1820 | " gas | \n",
1821 | " std | \n",
1822 | " two | \n",
1823 | " hatchback | \n",
1824 | " fwd | \n",
1825 | " front | \n",
1826 | " 93.1 | \n",
1827 | " ... | \n",
1828 | " 91 | \n",
1829 | " 2bbl | \n",
1830 | " 3.03 | \n",
1831 | " 3.15 | \n",
1832 | " 9.00 | \n",
1833 | " 68 | \n",
1834 | " 5000 | \n",
1835 | " 31 | \n",
1836 | " 38 | \n",
1837 | " 6095 | \n",
1838 | "
\n",
1839 | " \n",
1840 | " 52 | \n",
1841 | " 1 | \n",
1842 | " 104 | \n",
1843 | " mazda | \n",
1844 | " gas | \n",
1845 | " std | \n",
1846 | " two | \n",
1847 | " hatchback | \n",
1848 | " fwd | \n",
1849 | " front | \n",
1850 | " 93.1 | \n",
1851 | " ... | \n",
1852 | " 91 | \n",
1853 | " 2bbl | \n",
1854 | " 3.03 | \n",
1855 | " 3.15 | \n",
1856 | " 9.00 | \n",
1857 | " 68 | \n",
1858 | " 5000 | \n",
1859 | " 31 | \n",
1860 | " 38 | \n",
1861 | " 6795 | \n",
1862 | "
\n",
1863 | " \n",
1864 | " 53 | \n",
1865 | " 1 | \n",
1866 | " 113 | \n",
1867 | " mazda | \n",
1868 | " gas | \n",
1869 | " std | \n",
1870 | " four | \n",
1871 | " sedan | \n",
1872 | " fwd | \n",
1873 | " front | \n",
1874 | " 93.1 | \n",
1875 | " ... | \n",
1876 | " 91 | \n",
1877 | " 2bbl | \n",
1878 | " 3.03 | \n",
1879 | " 3.15 | \n",
1880 | " 9.00 | \n",
1881 | " 68 | \n",
1882 | " 5000 | \n",
1883 | " 31 | \n",
1884 | " 38 | \n",
1885 | " 6695 | \n",
1886 | "
\n",
1887 | " \n",
1888 | " 54 | \n",
1889 | " 1 | \n",
1890 | " 113 | \n",
1891 | " mazda | \n",
1892 | " gas | \n",
1893 | " std | \n",
1894 | " four | \n",
1895 | " sedan | \n",
1896 | " fwd | \n",
1897 | " front | \n",
1898 | " 93.1 | \n",
1899 | " ... | \n",
1900 | " 91 | \n",
1901 | " 2bbl | \n",
1902 | " 3.08 | \n",
1903 | " 3.15 | \n",
1904 | " 9.00 | \n",
1905 | " 68 | \n",
1906 | " 5000 | \n",
1907 | " 31 | \n",
1908 | " 38 | \n",
1909 | " 7395 | \n",
1910 | "
\n",
1911 | " \n",
1912 | " 55 | \n",
1913 | " 3 | \n",
1914 | " 150 | \n",
1915 | " mazda | \n",
1916 | " gas | \n",
1917 | " std | \n",
1918 | " two | \n",
1919 | " hatchback | \n",
1920 | " rwd | \n",
1921 | " front | \n",
1922 | " 95.3 | \n",
1923 | " ... | \n",
1924 | " 70 | \n",
1925 | " 4bbl | \n",
1926 | " ? | \n",
1927 | " ? | \n",
1928 | " 9.40 | \n",
1929 | " 101 | \n",
1930 | " 6000 | \n",
1931 | " 17 | \n",
1932 | " 23 | \n",
1933 | " 10945 | \n",
1934 | "
\n",
1935 | " \n",
1936 | " 56 | \n",
1937 | " 3 | \n",
1938 | " 150 | \n",
1939 | " mazda | \n",
1940 | " gas | \n",
1941 | " std | \n",
1942 | " two | \n",
1943 | " hatchback | \n",
1944 | " rwd | \n",
1945 | " front | \n",
1946 | " 95.3 | \n",
1947 | " ... | \n",
1948 | " 70 | \n",
1949 | " 4bbl | \n",
1950 | " ? | \n",
1951 | " ? | \n",
1952 | " 9.40 | \n",
1953 | " 101 | \n",
1954 | " 6000 | \n",
1955 | " 17 | \n",
1956 | " 23 | \n",
1957 | " 11845 | \n",
1958 | "
\n",
1959 | " \n",
1960 | " 57 | \n",
1961 | " 3 | \n",
1962 | " 150 | \n",
1963 | " mazda | \n",
1964 | " gas | \n",
1965 | " std | \n",
1966 | " two | \n",
1967 | " hatchback | \n",
1968 | " rwd | \n",
1969 | " front | \n",
1970 | " 95.3 | \n",
1971 | " ... | \n",
1972 | " 70 | \n",
1973 | " 4bbl | \n",
1974 | " ? | \n",
1975 | " ? | \n",
1976 | " 9.40 | \n",
1977 | " 101 | \n",
1978 | " 6000 | \n",
1979 | " 17 | \n",
1980 | " 23 | \n",
1981 | " 13645 | \n",
1982 | "
\n",
1983 | " \n",
1984 | " 58 | \n",
1985 | " 3 | \n",
1986 | " 150 | \n",
1987 | " mazda | \n",
1988 | " gas | \n",
1989 | " std | \n",
1990 | " two | \n",
1991 | " hatchback | \n",
1992 | " rwd | \n",
1993 | " front | \n",
1994 | " 95.3 | \n",
1995 | " ... | \n",
1996 | " 80 | \n",
1997 | " mpfi | \n",
1998 | " ? | \n",
1999 | " ? | \n",
2000 | " 9.40 | \n",
2001 | " 135 | \n",
2002 | " 6000 | \n",
2003 | " 16 | \n",
2004 | " 23 | \n",
2005 | " 15645 | \n",
2006 | "
\n",
2007 | " \n",
2008 | " 59 | \n",
2009 | " 1 | \n",
2010 | " 129 | \n",
2011 | " mazda | \n",
2012 | " gas | \n",
2013 | " std | \n",
2014 | " two | \n",
2015 | " hatchback | \n",
2016 | " fwd | \n",
2017 | " front | \n",
2018 | " 98.8 | \n",
2019 | " ... | \n",
2020 | " 122 | \n",
2021 | " 2bbl | \n",
2022 | " 3.39 | \n",
2023 | " 3.39 | \n",
2024 | " 8.60 | \n",
2025 | " 84 | \n",
2026 | " 4800 | \n",
2027 | " 26 | \n",
2028 | " 32 | \n",
2029 | " 8845 | \n",
2030 | "
\n",
2031 | " \n",
2032 | "
\n",
2033 | "
60 rows × 26 columns
\n",
2034 | "
"
2035 | ],
2036 | "text/plain": [
2037 | " symboling normalized-losses make fuel-type aspiration \\\n",
2038 | "0 3 ? alfa-romero gas std \n",
2039 | "1 3 ? alfa-romero gas std \n",
2040 | "2 1 ? alfa-romero gas std \n",
2041 | "3 2 164 audi gas std \n",
2042 | "4 2 164 audi gas std \n",
2043 | "5 2 ? audi gas std \n",
2044 | "6 1 158 audi gas std \n",
2045 | "7 1 ? audi gas std \n",
2046 | "8 1 158 audi gas turbo \n",
2047 | "9 0 ? audi gas turbo \n",
2048 | "10 2 192 bmw gas std \n",
2049 | "11 0 192 bmw gas std \n",
2050 | "12 0 188 bmw gas std \n",
2051 | "13 0 188 bmw gas std \n",
2052 | "14 1 ? bmw gas std \n",
2053 | "15 0 ? bmw gas std \n",
2054 | "16 0 ? bmw gas std \n",
2055 | "17 0 ? bmw gas std \n",
2056 | "18 2 121 chevrolet gas std \n",
2057 | "19 1 98 chevrolet gas std \n",
2058 | "20 0 81 chevrolet gas std \n",
2059 | "21 1 118 dodge gas std \n",
2060 | "22 1 118 dodge gas std \n",
2061 | "23 1 118 dodge gas turbo \n",
2062 | "24 1 148 dodge gas std \n",
2063 | "25 1 148 dodge gas std \n",
2064 | "26 1 148 dodge gas std \n",
2065 | "27 1 148 dodge gas turbo \n",
2066 | "28 -1 110 dodge gas std \n",
2067 | "29 3 145 dodge gas turbo \n",
2068 | "30 2 137 honda gas std \n",
2069 | "31 2 137 honda gas std \n",
2070 | "32 1 101 honda gas std \n",
2071 | "33 1 101 honda gas std \n",
2072 | "34 1 101 honda gas std \n",
2073 | "35 0 110 honda gas std \n",
2074 | "36 0 78 honda gas std \n",
2075 | "37 0 106 honda gas std \n",
2076 | "38 0 106 honda gas std \n",
2077 | "39 0 85 honda gas std \n",
2078 | "40 0 85 honda gas std \n",
2079 | "41 0 85 honda gas std \n",
2080 | "42 1 107 honda gas std \n",
2081 | "43 0 ? isuzu gas std \n",
2082 | "44 1 ? isuzu gas std \n",
2083 | "45 0 ? isuzu gas std \n",
2084 | "46 2 ? isuzu gas std \n",
2085 | "47 0 145 jaguar gas std \n",
2086 | "48 0 ? jaguar gas std \n",
2087 | "49 0 ? jaguar gas std \n",
2088 | "50 1 104 mazda gas std \n",
2089 | "51 1 104 mazda gas std \n",
2090 | "52 1 104 mazda gas std \n",
2091 | "53 1 113 mazda gas std \n",
2092 | "54 1 113 mazda gas std \n",
2093 | "55 3 150 mazda gas std \n",
2094 | "56 3 150 mazda gas std \n",
2095 | "57 3 150 mazda gas std \n",
2096 | "58 3 150 mazda gas std \n",
2097 | "59 1 129 mazda gas std \n",
2098 | "\n",
2099 | " num-of-doors body-style drive-wheels engine-location wheel-base ... \\\n",
2100 | "0 two convertible rwd front 88.6 ... \n",
2101 | "1 two convertible rwd front 88.6 ... \n",
2102 | "2 two hatchback rwd front 94.5 ... \n",
2103 | "3 four sedan fwd front 99.8 ... \n",
2104 | "4 four sedan 4wd front 99.4 ... \n",
2105 | "5 two sedan fwd front 99.8 ... \n",
2106 | "6 four sedan fwd front 105.8 ... \n",
2107 | "7 four wagon fwd front 105.8 ... \n",
2108 | "8 four sedan fwd front 105.8 ... \n",
2109 | "9 two hatchback 4wd front 99.5 ... \n",
2110 | "10 two sedan rwd front 101.2 ... \n",
2111 | "11 four sedan rwd front 101.2 ... \n",
2112 | "12 two sedan rwd front 101.2 ... \n",
2113 | "13 four sedan rwd front 101.2 ... \n",
2114 | "14 four sedan rwd front 103.5 ... \n",
2115 | "15 four sedan rwd front 103.5 ... \n",
2116 | "16 two sedan rwd front 103.5 ... \n",
2117 | "17 four sedan rwd front 110.0 ... \n",
2118 | "18 two hatchback fwd front 88.4 ... \n",
2119 | "19 two hatchback fwd front 94.5 ... \n",
2120 | "20 four sedan fwd front 94.5 ... \n",
2121 | "21 two hatchback fwd front 93.7 ... \n",
2122 | "22 two hatchback fwd front 93.7 ... \n",
2123 | "23 two hatchback fwd front 93.7 ... \n",
2124 | "24 four hatchback fwd front 93.7 ... \n",
2125 | "25 four sedan fwd front 93.7 ... \n",
2126 | "26 four sedan fwd front 93.7 ... \n",
2127 | "27 ? sedan fwd front 93.7 ... \n",
2128 | "28 four wagon fwd front 103.3 ... \n",
2129 | "29 two hatchback fwd front 95.9 ... \n",
2130 | "30 two hatchback fwd front 86.6 ... \n",
2131 | "31 two hatchback fwd front 86.6 ... \n",
2132 | "32 two hatchback fwd front 93.7 ... \n",
2133 | "33 two hatchback fwd front 93.7 ... \n",
2134 | "34 two hatchback fwd front 93.7 ... \n",
2135 | "35 four sedan fwd front 96.5 ... \n",
2136 | "36 four wagon fwd front 96.5 ... \n",
2137 | "37 two hatchback fwd front 96.5 ... \n",
2138 | "38 two hatchback fwd front 96.5 ... \n",
2139 | "39 four sedan fwd front 96.5 ... \n",
2140 | "40 four sedan fwd front 96.5 ... \n",
2141 | "41 four sedan fwd front 96.5 ... \n",
2142 | "42 two sedan fwd front 96.5 ... \n",
2143 | "43 four sedan rwd front 94.3 ... \n",
2144 | "44 two sedan fwd front 94.5 ... \n",
2145 | "45 four sedan fwd front 94.5 ... \n",
2146 | "46 two hatchback rwd front 96.0 ... \n",
2147 | "47 four sedan rwd front 113.0 ... \n",
2148 | "48 four sedan rwd front 113.0 ... \n",
2149 | "49 two sedan rwd front 102.0 ... \n",
2150 | "50 two hatchback fwd front 93.1 ... \n",
2151 | "51 two hatchback fwd front 93.1 ... \n",
2152 | "52 two hatchback fwd front 93.1 ... \n",
2153 | "53 four sedan fwd front 93.1 ... \n",
2154 | "54 four sedan fwd front 93.1 ... \n",
2155 | "55 two hatchback rwd front 95.3 ... \n",
2156 | "56 two hatchback rwd front 95.3 ... \n",
2157 | "57 two hatchback rwd front 95.3 ... \n",
2158 | "58 two hatchback rwd front 95.3 ... \n",
2159 | "59 two hatchback fwd front 98.8 ... \n",
2160 | "\n",
2161 | " engine-size fuel-system bore stroke compression-ratio horsepower \\\n",
2162 | "0 130 mpfi 3.47 2.68 9.00 111 \n",
2163 | "1 130 mpfi 3.47 2.68 9.00 111 \n",
2164 | "2 152 mpfi 2.68 3.47 9.00 154 \n",
2165 | "3 109 mpfi 3.19 3.4 10.00 102 \n",
2166 | "4 136 mpfi 3.19 3.4 8.00 115 \n",
2167 | "5 136 mpfi 3.19 3.4 8.50 110 \n",
2168 | "6 136 mpfi 3.19 3.4 8.50 110 \n",
2169 | "7 136 mpfi 3.19 3.4 8.50 110 \n",
2170 | "8 131 mpfi 3.13 3.4 8.30 140 \n",
2171 | "9 131 mpfi 3.13 3.4 7.00 160 \n",
2172 | "10 108 mpfi 3.5 2.8 8.80 101 \n",
2173 | "11 108 mpfi 3.5 2.8 8.80 101 \n",
2174 | "12 164 mpfi 3.31 3.19 9.00 121 \n",
2175 | "13 164 mpfi 3.31 3.19 9.00 121 \n",
2176 | "14 164 mpfi 3.31 3.19 9.00 121 \n",
2177 | "15 209 mpfi 3.62 3.39 8.00 182 \n",
2178 | "16 209 mpfi 3.62 3.39 8.00 182 \n",
2179 | "17 209 mpfi 3.62 3.39 8.00 182 \n",
2180 | "18 61 2bbl 2.91 3.03 9.50 48 \n",
2181 | "19 90 2bbl 3.03 3.11 9.60 70 \n",
2182 | "20 90 2bbl 3.03 3.11 9.60 70 \n",
2183 | "21 90 2bbl 2.97 3.23 9.41 68 \n",
2184 | "22 90 2bbl 2.97 3.23 9.40 68 \n",
2185 | "23 98 mpfi 3.03 3.39 7.60 102 \n",
2186 | "24 90 2bbl 2.97 3.23 9.40 68 \n",
2187 | "25 90 2bbl 2.97 3.23 9.40 68 \n",
2188 | "26 90 2bbl 2.97 3.23 9.40 68 \n",
2189 | "27 98 mpfi 3.03 3.39 7.60 102 \n",
2190 | "28 122 2bbl 3.34 3.46 8.50 88 \n",
2191 | "29 156 mfi 3.6 3.9 7.00 145 \n",
2192 | "30 92 1bbl 2.91 3.41 9.60 58 \n",
2193 | "31 92 1bbl 2.91 3.41 9.20 76 \n",
2194 | "32 79 1bbl 2.91 3.07 10.10 60 \n",
2195 | "33 92 1bbl 2.91 3.41 9.20 76 \n",
2196 | "34 92 1bbl 2.91 3.41 9.20 76 \n",
2197 | "35 92 1bbl 2.91 3.41 9.20 76 \n",
2198 | "36 92 1bbl 2.92 3.41 9.20 76 \n",
2199 | "37 110 1bbl 3.15 3.58 9.00 86 \n",
2200 | "38 110 1bbl 3.15 3.58 9.00 86 \n",
2201 | "39 110 1bbl 3.15 3.58 9.00 86 \n",
2202 | "40 110 1bbl 3.15 3.58 9.00 86 \n",
2203 | "41 110 mpfi 3.15 3.58 9.00 101 \n",
2204 | "42 110 2bbl 3.15 3.58 9.10 100 \n",
2205 | "43 111 2bbl 3.31 3.23 8.50 78 \n",
2206 | "44 90 2bbl 3.03 3.11 9.60 70 \n",
2207 | "45 90 2bbl 3.03 3.11 9.60 70 \n",
2208 | "46 119 spfi 3.43 3.23 9.20 90 \n",
2209 | "47 258 mpfi 3.63 4.17 8.10 176 \n",
2210 | "48 258 mpfi 3.63 4.17 8.10 176 \n",
2211 | "49 326 mpfi 3.54 2.76 11.50 262 \n",
2212 | "50 91 2bbl 3.03 3.15 9.00 68 \n",
2213 | "51 91 2bbl 3.03 3.15 9.00 68 \n",
2214 | "52 91 2bbl 3.03 3.15 9.00 68 \n",
2215 | "53 91 2bbl 3.03 3.15 9.00 68 \n",
2216 | "54 91 2bbl 3.08 3.15 9.00 68 \n",
2217 | "55 70 4bbl ? ? 9.40 101 \n",
2218 | "56 70 4bbl ? ? 9.40 101 \n",
2219 | "57 70 4bbl ? ? 9.40 101 \n",
2220 | "58 80 mpfi ? ? 9.40 135 \n",
2221 | "59 122 2bbl 3.39 3.39 8.60 84 \n",
2222 | "\n",
2223 | " peak-rpm city-mpg highway-mpg price \n",
2224 | "0 5000 21 27 13495 \n",
2225 | "1 5000 21 27 16500 \n",
2226 | "2 5000 19 26 16500 \n",
2227 | "3 5500 24 30 13950 \n",
2228 | "4 5500 18 22 17450 \n",
2229 | "5 5500 19 25 15250 \n",
2230 | "6 5500 19 25 17710 \n",
2231 | "7 5500 19 25 18920 \n",
2232 | "8 5500 17 20 23875 \n",
2233 | "9 5500 16 22 ? \n",
2234 | "10 5800 23 29 16430 \n",
2235 | "11 5800 23 29 16925 \n",
2236 | "12 4250 21 28 20970 \n",
2237 | "13 4250 21 28 21105 \n",
2238 | "14 4250 20 25 24565 \n",
2239 | "15 5400 16 22 30760 \n",
2240 | "16 5400 16 22 41315 \n",
2241 | "17 5400 15 20 36880 \n",
2242 | "18 5100 47 53 5151 \n",
2243 | "19 5400 38 43 6295 \n",
2244 | "20 5400 38 43 6575 \n",
2245 | "21 5500 37 41 5572 \n",
2246 | "22 5500 31 38 6377 \n",
2247 | "23 5500 24 30 7957 \n",
2248 | "24 5500 31 38 6229 \n",
2249 | "25 5500 31 38 6692 \n",
2250 | "26 5500 31 38 7609 \n",
2251 | "27 5500 24 30 8558 \n",
2252 | "28 5000 24 30 8921 \n",
2253 | "29 5000 19 24 12964 \n",
2254 | "30 4800 49 54 6479 \n",
2255 | "31 6000 31 38 6855 \n",
2256 | "32 5500 38 42 5399 \n",
2257 | "33 6000 30 34 6529 \n",
2258 | "34 6000 30 34 7129 \n",
2259 | "35 6000 30 34 7295 \n",
2260 | "36 6000 30 34 7295 \n",
2261 | "37 5800 27 33 7895 \n",
2262 | "38 5800 27 33 9095 \n",
2263 | "39 5800 27 33 8845 \n",
2264 | "40 5800 27 33 10295 \n",
2265 | "41 5800 24 28 12945 \n",
2266 | "42 5500 25 31 10345 \n",
2267 | "43 4800 24 29 6785 \n",
2268 | "44 5400 38 43 ? \n",
2269 | "45 5400 38 43 ? \n",
2270 | "46 5000 24 29 11048 \n",
2271 | "47 4750 15 19 32250 \n",
2272 | "48 4750 15 19 35550 \n",
2273 | "49 5000 13 17 36000 \n",
2274 | "50 5000 30 31 5195 \n",
2275 | "51 5000 31 38 6095 \n",
2276 | "52 5000 31 38 6795 \n",
2277 | "53 5000 31 38 6695 \n",
2278 | "54 5000 31 38 7395 \n",
2279 | "55 6000 17 23 10945 \n",
2280 | "56 6000 17 23 11845 \n",
2281 | "57 6000 17 23 13645 \n",
2282 | "58 6000 16 23 15645 \n",
2283 | "59 4800 26 32 8845 \n",
2284 | "\n",
2285 | "[60 rows x 26 columns]"
2286 | ]
2287 | },
2288 | "execution_count": 4,
2289 | "metadata": {},
2290 | "output_type": "execute_result"
2291 | }
2292 | ],
2293 | "source": [
2294 | "car.head(60)"
2295 | ]
2296 | },
2297 | {
2298 | "cell_type": "code",
2299 | "execution_count": 5,
2300 | "metadata": {},
2301 | "outputs": [
2302 | {
2303 | "name": "stdout",
2304 | "output_type": "stream",
2305 | "text": [
2306 | "Rows : 205\n",
2307 | "Columns : 26\n",
2308 | "\n",
2309 | "Features :\n",
2310 | " : ['symboling', 'normalized-losses', 'make', 'fuel-type', 'aspiration', 'num-of-doors', 'body-style', 'drive-wheels', 'engine-location', 'wheel-base', 'length', 'width', 'height', 'curb-weight', 'engine-type', 'num-of-cylinders', 'engine-size', 'fuel-system', 'bore', 'stroke', 'compression-ratio', 'horsepower', 'peak-rpm', 'city-mpg', 'highway-mpg', 'price']\n",
2311 | "\n",
2312 | "Missing values : 0\n",
2313 | "\n",
2314 | "Unique values : \n",
2315 | " symboling 6\n",
2316 | "normalized-losses 52\n",
2317 | "make 22\n",
2318 | "fuel-type 2\n",
2319 | "aspiration 2\n",
2320 | "num-of-doors 3\n",
2321 | "body-style 5\n",
2322 | "drive-wheels 3\n",
2323 | "engine-location 2\n",
2324 | "wheel-base 53\n",
2325 | "length 75\n",
2326 | "width 44\n",
2327 | "height 49\n",
2328 | "curb-weight 171\n",
2329 | "engine-type 7\n",
2330 | "num-of-cylinders 7\n",
2331 | "engine-size 44\n",
2332 | "fuel-system 8\n",
2333 | "bore 39\n",
2334 | "stroke 37\n",
2335 | "compression-ratio 32\n",
2336 | "horsepower 60\n",
2337 | "peak-rpm 24\n",
2338 | "city-mpg 29\n",
2339 | "highway-mpg 30\n",
2340 | "price 187\n",
2341 | "dtype: int64\n"
2342 | ]
2343 | }
2344 | ],
2345 | "source": [
2346 | "print('Rows :',car.shape[0])\n",
2347 | "print('Columns :',car.shape[1])\n",
2348 | "print('\\nFeatures :\\n :',car.columns.tolist())\n",
2349 | "print('\\nMissing values :',car.isnull().values.sum())\n",
2350 | "print('\\nUnique values : \\n',car.nunique())"
2351 | ]
2352 | },
2353 | {
2354 | "cell_type": "code",
2355 | "execution_count": 6,
2356 | "metadata": {},
2357 | "outputs": [
2358 | {
2359 | "data": {
2360 | "text/plain": [
2361 | "(205, 26)"
2362 | ]
2363 | },
2364 | "execution_count": 6,
2365 | "metadata": {},
2366 | "output_type": "execute_result"
2367 | }
2368 | ],
2369 | "source": [
2370 | "car.shape"
2371 | ]
2372 | },
2373 | {
2374 | "cell_type": "markdown",
2375 | "metadata": {},
2376 | "source": [
2377 | " Understand what type of variable are in the dataset.
\n"
2378 | ]
2379 | },
2380 | {
2381 | "cell_type": "code",
2382 | "execution_count": 7,
2383 | "metadata": {
2384 | "scrolled": true
2385 | },
2386 | "outputs": [
2387 | {
2388 | "name": "stdout",
2389 | "output_type": "stream",
2390 | "text": [
2391 | "symboling int64\n",
2392 | "normalized-losses object\n",
2393 | "make object\n",
2394 | "fuel-type object\n",
2395 | "aspiration object\n",
2396 | "num-of-doors object\n",
2397 | "body-style object\n",
2398 | "drive-wheels object\n",
2399 | "engine-location object\n",
2400 | "wheel-base float64\n",
2401 | "length float64\n",
2402 | "width float64\n",
2403 | "height float64\n",
2404 | "curb-weight int64\n",
2405 | "engine-type object\n",
2406 | "num-of-cylinders object\n",
2407 | "engine-size int64\n",
2408 | "fuel-system object\n",
2409 | "bore object\n",
2410 | "stroke object\n",
2411 | "compression-ratio float64\n",
2412 | "horsepower object\n",
2413 | "peak-rpm object\n",
2414 | "city-mpg int64\n",
2415 | "highway-mpg int64\n",
2416 | "price object\n",
2417 | "dtype: object\n"
2418 | ]
2419 | }
2420 | ],
2421 | "source": [
2422 | "# list the data types for each column\n",
2423 | "print(car.dtypes)"
2424 | ]
2425 | },
2426 | {
2427 | "cell_type": "code",
2428 | "execution_count": 8,
2429 | "metadata": {},
2430 | "outputs": [
2431 | {
2432 | "data": {
2433 | "text/plain": [
2434 | "0 111\n",
2435 | "1 111\n",
2436 | "2 154\n",
2437 | "3 102\n",
2438 | "4 115\n",
2439 | " ... \n",
2440 | "200 114\n",
2441 | "201 160\n",
2442 | "202 134\n",
2443 | "203 106\n",
2444 | "204 114\n",
2445 | "Name: horsepower, Length: 205, dtype: object"
2446 | ]
2447 | },
2448 | "execution_count": 8,
2449 | "metadata": {},
2450 | "output_type": "execute_result"
2451 | }
2452 | ],
2453 | "source": [
2454 | "car['horsepower']"
2455 | ]
2456 | },
2457 | {
2458 | "cell_type": "code",
2459 | "execution_count": 9,
2460 | "metadata": {},
2461 | "outputs": [
2462 | {
2463 | "data": {
2464 | "text/html": [
2465 | "\n",
2466 | "\n",
2479 | "
\n",
2480 | " \n",
2481 | " \n",
2482 | " | \n",
2483 | " symboling | \n",
2484 | " normalized-losses | \n",
2485 | " make | \n",
2486 | " fuel-type | \n",
2487 | " aspiration | \n",
2488 | " num-of-doors | \n",
2489 | " body-style | \n",
2490 | " drive-wheels | \n",
2491 | " engine-location | \n",
2492 | " wheel-base | \n",
2493 | " ... | \n",
2494 | " engine-size | \n",
2495 | " fuel-system | \n",
2496 | " bore | \n",
2497 | " stroke | \n",
2498 | " compression-ratio | \n",
2499 | " horsepower | \n",
2500 | " peak-rpm | \n",
2501 | " city-mpg | \n",
2502 | " highway-mpg | \n",
2503 | " price | \n",
2504 | "
\n",
2505 | " \n",
2506 | " \n",
2507 | " \n",
2508 | " 130 | \n",
2509 | " 0 | \n",
2510 | " ? | \n",
2511 | " renault | \n",
2512 | " gas | \n",
2513 | " std | \n",
2514 | " four | \n",
2515 | " wagon | \n",
2516 | " fwd | \n",
2517 | " front | \n",
2518 | " 96.1 | \n",
2519 | " ... | \n",
2520 | " 132 | \n",
2521 | " mpfi | \n",
2522 | " 3.46 | \n",
2523 | " 3.9 | \n",
2524 | " 8.7 | \n",
2525 | " ? | \n",
2526 | " ? | \n",
2527 | " 23 | \n",
2528 | " 31 | \n",
2529 | " 9295 | \n",
2530 | "
\n",
2531 | " \n",
2532 | " 131 | \n",
2533 | " 2 | \n",
2534 | " ? | \n",
2535 | " renault | \n",
2536 | " gas | \n",
2537 | " std | \n",
2538 | " two | \n",
2539 | " hatchback | \n",
2540 | " fwd | \n",
2541 | " front | \n",
2542 | " 96.1 | \n",
2543 | " ... | \n",
2544 | " 132 | \n",
2545 | " mpfi | \n",
2546 | " 3.46 | \n",
2547 | " 3.9 | \n",
2548 | " 8.7 | \n",
2549 | " ? | \n",
2550 | " ? | \n",
2551 | " 23 | \n",
2552 | " 31 | \n",
2553 | " 9895 | \n",
2554 | "
\n",
2555 | " \n",
2556 | "
\n",
2557 | "
2 rows × 26 columns
\n",
2558 | "
"
2559 | ],
2560 | "text/plain": [
2561 | " symboling normalized-losses make fuel-type aspiration num-of-doors \\\n",
2562 | "130 0 ? renault gas std four \n",
2563 | "131 2 ? renault gas std two \n",
2564 | "\n",
2565 | " body-style drive-wheels engine-location wheel-base ... engine-size \\\n",
2566 | "130 wagon fwd front 96.1 ... 132 \n",
2567 | "131 hatchback fwd front 96.1 ... 132 \n",
2568 | "\n",
2569 | " fuel-system bore stroke compression-ratio horsepower peak-rpm \\\n",
2570 | "130 mpfi 3.46 3.9 8.7 ? ? \n",
2571 | "131 mpfi 3.46 3.9 8.7 ? ? \n",
2572 | "\n",
2573 | " city-mpg highway-mpg price \n",
2574 | "130 23 31 9295 \n",
2575 | "131 23 31 9895 \n",
2576 | "\n",
2577 | "[2 rows x 26 columns]"
2578 | ]
2579 | },
2580 | "execution_count": 9,
2581 | "metadata": {},
2582 | "output_type": "execute_result"
2583 | }
2584 | ],
2585 | "source": [
2586 | "df = car[car['horsepower']=='?']\n",
2587 | "df"
2588 | ]
2589 | },
2590 | {
2591 | "cell_type": "code",
2592 | "execution_count": 10,
2593 | "metadata": {},
2594 | "outputs": [
2595 | {
2596 | "data": {
2597 | "text/plain": [
2598 | "130 ?\n",
2599 | "131 ?\n",
2600 | "Name: horsepower, dtype: object"
2601 | ]
2602 | },
2603 | "execution_count": 10,
2604 | "metadata": {},
2605 | "output_type": "execute_result"
2606 | }
2607 | ],
2608 | "source": [
2609 | "car['horsepower'].loc[car['horsepower'] == '?']"
2610 | ]
2611 | },
2612 | {
2613 | "cell_type": "code",
2614 | "execution_count": 11,
2615 | "metadata": {},
2616 | "outputs": [
2617 | {
2618 | "data": {
2619 | "text/plain": [
2620 | "0 111\n",
2621 | "1 111\n",
2622 | "2 154\n",
2623 | "3 102\n",
2624 | "4 115\n",
2625 | " ... \n",
2626 | "200 114\n",
2627 | "201 160\n",
2628 | "202 134\n",
2629 | "203 106\n",
2630 | "204 114\n",
2631 | "Name: horsepower, Length: 205, dtype: int32"
2632 | ]
2633 | },
2634 | "execution_count": 11,
2635 | "metadata": {},
2636 | "output_type": "execute_result"
2637 | }
2638 | ],
2639 | "source": [
2640 | "#Cleaning Horsepower attribute\n",
2641 | "horsepower = car['horsepower'].loc[car['horsepower'] != '?']\n",
2642 | "hpmean = horsepower.astype(str).astype(int).mean()\n",
2643 | "car['horsepower'] = car['horsepower'].replace('?',hpmean).astype(int)\n",
2644 | "car['horsepower']"
2645 | ]
2646 | },
2647 | {
2648 | "cell_type": "code",
2649 | "execution_count": 12,
2650 | "metadata": {},
2651 | "outputs": [
2652 | {
2653 | "data": {
2654 | "text/plain": [
2655 | "55 ?\n",
2656 | "56 ?\n",
2657 | "57 ?\n",
2658 | "58 ?\n",
2659 | "Name: bore, dtype: object"
2660 | ]
2661 | },
2662 | "execution_count": 12,
2663 | "metadata": {},
2664 | "output_type": "execute_result"
2665 | }
2666 | ],
2667 | "source": [
2668 | "car['bore'].loc[car['bore'] == '?']"
2669 | ]
2670 | },
2671 | {
2672 | "cell_type": "code",
2673 | "execution_count": 13,
2674 | "metadata": {},
2675 | "outputs": [
2676 | {
2677 | "data": {
2678 | "text/plain": [
2679 | "0 3.47\n",
2680 | "1 3.47\n",
2681 | "2 2.68\n",
2682 | "3 3.19\n",
2683 | "4 3.19\n",
2684 | " ... \n",
2685 | "200 3.78\n",
2686 | "201 3.78\n",
2687 | "202 3.58\n",
2688 | "203 3.01\n",
2689 | "204 3.78\n",
2690 | "Name: bore, Length: 205, dtype: float64"
2691 | ]
2692 | },
2693 | "execution_count": 13,
2694 | "metadata": {},
2695 | "output_type": "execute_result"
2696 | }
2697 | ],
2698 | "source": [
2699 | "#Cleaning bore attribute\n",
2700 | "bore = car['bore'].loc[car['bore'] != '?']\n",
2701 | "boremean = pd.to_numeric(bore,errors='coerce')\n",
2702 | "car['bore'] = car['bore'].replace('?',boremean)\n",
2703 | "car['bore'] = pd.to_numeric(car['bore'],errors='coerce')\n",
2704 | "car['bore']\n",
2705 | "\n"
2706 | ]
2707 | },
2708 | {
2709 | "cell_type": "code",
2710 | "execution_count": 14,
2711 | "metadata": {},
2712 | "outputs": [
2713 | {
2714 | "data": {
2715 | "text/plain": [
2716 | "55 ?\n",
2717 | "56 ?\n",
2718 | "57 ?\n",
2719 | "58 ?\n",
2720 | "Name: stroke, dtype: object"
2721 | ]
2722 | },
2723 | "execution_count": 14,
2724 | "metadata": {},
2725 | "output_type": "execute_result"
2726 | }
2727 | ],
2728 | "source": [
2729 | "stroke1 = car['stroke'].loc[car['stroke'] == '?']\n",
2730 | "stroke1"
2731 | ]
2732 | },
2733 | {
2734 | "cell_type": "code",
2735 | "execution_count": 15,
2736 | "metadata": {},
2737 | "outputs": [
2738 | {
2739 | "data": {
2740 | "text/plain": [
2741 | "0 2.68\n",
2742 | "1 2.68\n",
2743 | "2 3.47\n",
2744 | "3 3.40\n",
2745 | "4 3.40\n",
2746 | " ... \n",
2747 | "200 3.15\n",
2748 | "201 3.15\n",
2749 | "202 2.87\n",
2750 | "203 3.40\n",
2751 | "204 3.15\n",
2752 | "Name: stroke, Length: 205, dtype: float64"
2753 | ]
2754 | },
2755 | "execution_count": 15,
2756 | "metadata": {},
2757 | "output_type": "execute_result"
2758 | }
2759 | ],
2760 | "source": [
2761 | "#Cleaning stroke attribute\n",
2762 | "stroke = car['stroke'].loc[car['stroke'] != '?']\n",
2763 | "strokemean = pd.to_numeric(stroke,errors='coerce')\n",
2764 | "car['stroke'] = car['stroke'].replace('?',strokemean)\n",
2765 | "car['stroke'] = pd.to_numeric(car['stroke'],errors='coerce')\n",
2766 | "car['stroke']"
2767 | ]
2768 | },
2769 | {
2770 | "cell_type": "code",
2771 | "execution_count": 16,
2772 | "metadata": {
2773 | "scrolled": true
2774 | },
2775 | "outputs": [
2776 | {
2777 | "data": {
2778 | "text/plain": [
2779 | "9 ?\n",
2780 | "44 ?\n",
2781 | "45 ?\n",
2782 | "129 ?\n",
2783 | "Name: price, dtype: object"
2784 | ]
2785 | },
2786 | "execution_count": 16,
2787 | "metadata": {},
2788 | "output_type": "execute_result"
2789 | }
2790 | ],
2791 | "source": [
2792 | "# Values which are not numeric in price attribute\n",
2793 | "car['price'].loc[car['price'].str.isnumeric() == False]"
2794 | ]
2795 | },
2796 | {
2797 | "cell_type": "code",
2798 | "execution_count": 17,
2799 | "metadata": {},
2800 | "outputs": [
2801 | {
2802 | "data": {
2803 | "text/plain": [
2804 | "0 13495\n",
2805 | "1 16500\n",
2806 | "2 16500\n",
2807 | "3 13950\n",
2808 | "4 17450\n",
2809 | "Name: price, dtype: int32"
2810 | ]
2811 | },
2812 | "execution_count": 17,
2813 | "metadata": {},
2814 | "output_type": "execute_result"
2815 | }
2816 | ],
2817 | "source": [
2818 | "#Cleaning Price attribute\n",
2819 | "price = car['price'].loc[car['price'] != '?']\n",
2820 | "pmean = price.astype(str).astype(int).mean()\n",
2821 | "car['price'] = car['price'].replace('?',pmean).astype(int)\n",
2822 | "car['price'].head()"
2823 | ]
2824 | },
2825 | {
2826 | "cell_type": "code",
2827 | "execution_count": 18,
2828 | "metadata": {},
2829 | "outputs": [
2830 | {
2831 | "name": "stdout",
2832 | "output_type": "stream",
2833 | "text": [
2834 | "symboling int64\n",
2835 | "normalized-losses object\n",
2836 | "make object\n",
2837 | "fuel-type object\n",
2838 | "aspiration object\n",
2839 | "num-of-doors object\n",
2840 | "body-style object\n",
2841 | "drive-wheels object\n",
2842 | "engine-location object\n",
2843 | "wheel-base float64\n",
2844 | "length float64\n",
2845 | "width float64\n",
2846 | "height float64\n",
2847 | "curb-weight int64\n",
2848 | "engine-type object\n",
2849 | "num-of-cylinders object\n",
2850 | "engine-size int64\n",
2851 | "fuel-system object\n",
2852 | "bore float64\n",
2853 | "stroke float64\n",
2854 | "compression-ratio float64\n",
2855 | "horsepower int32\n",
2856 | "peak-rpm object\n",
2857 | "city-mpg int64\n",
2858 | "highway-mpg int64\n",
2859 | "price int32\n",
2860 | "dtype: object\n"
2861 | ]
2862 | }
2863 | ],
2864 | "source": [
2865 | "print(car.dtypes)"
2866 | ]
2867 | },
2868 | {
2869 | "cell_type": "code",
2870 | "execution_count": 19,
2871 | "metadata": {},
2872 | "outputs": [],
2873 | "source": [
2874 | "car.to_csv('car.csv')\n"
2875 | ]
2876 | },
2877 | {
2878 | "cell_type": "markdown",
2879 | "metadata": {},
2880 | "source": [
2881 | "Thank you
"
2882 | ]
2883 | },
2884 | {
2885 | "cell_type": "code",
2886 | "execution_count": null,
2887 | "metadata": {},
2888 | "outputs": [],
2889 | "source": []
2890 | }
2891 | ],
2892 | "metadata": {
2893 | "anaconda-cloud": {},
2894 | "kernelspec": {
2895 | "display_name": "Python 3",
2896 | "language": "python",
2897 | "name": "python3"
2898 | },
2899 | "language_info": {
2900 | "codemirror_mode": {
2901 | "name": "ipython",
2902 | "version": 3
2903 | },
2904 | "file_extension": ".py",
2905 | "mimetype": "text/x-python",
2906 | "name": "python",
2907 | "nbconvert_exporter": "python",
2908 | "pygments_lexer": "ipython3",
2909 | "version": "3.7.6"
2910 | }
2911 | },
2912 | "nbformat": 4,
2913 | "nbformat_minor": 2
2914 | }
2915 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # EDA-Automobile-Dataset
2 | How to get start with a Machine Learning or a Data Science Project - Exploratory Data Analysis - step by step
3 | Youtube link - https://www.youtube.com/playlist?list=PLmVBvYz0kthhPDB3xcV9XMyMxfbyl4C-E
4 |
--------------------------------------------------------------------------------
/datasets_1291_2355_Automobile_data.csv:
--------------------------------------------------------------------------------
1 | symboling,normalized-losses,make,fuel-type,aspiration,num-of-doors,body-style,drive-wheels,engine-location,wheel-base,length,width,height,curb-weight,engine-type,num-of-cylinders,engine-size,fuel-system,bore,stroke,compression-ratio,horsepower,peak-rpm,city-mpg,highway-mpg,price
2 | 3,?,alfa-romero,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,13495
3 | 3,?,alfa-romero,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,16500
4 | 1,?,alfa-romero,gas,std,two,hatchback,rwd,front,94.5,171.2,65.5,52.4,2823,ohcv,six,152,mpfi,2.68,3.47,9,154,5000,19,26,16500
5 | 2,164,audi,gas,std,four,sedan,fwd,front,99.8,176.6,66.2,54.3,2337,ohc,four,109,mpfi,3.19,3.4,10,102,5500,24,30,13950
6 | 2,164,audi,gas,std,four,sedan,4wd,front,99.4,176.6,66.4,54.3,2824,ohc,five,136,mpfi,3.19,3.4,8,115,5500,18,22,17450
7 | 2,?,audi,gas,std,two,sedan,fwd,front,99.8,177.3,66.3,53.1,2507,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,15250
8 | 1,158,audi,gas,std,four,sedan,fwd,front,105.8,192.7,71.4,55.7,2844,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,17710
9 | 1,?,audi,gas,std,four,wagon,fwd,front,105.8,192.7,71.4,55.7,2954,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,18920
10 | 1,158,audi,gas,turbo,four,sedan,fwd,front,105.8,192.7,71.4,55.9,3086,ohc,five,131,mpfi,3.13,3.4,8.3,140,5500,17,20,23875
11 | 0,?,audi,gas,turbo,two,hatchback,4wd,front,99.5,178.2,67.9,52,3053,ohc,five,131,mpfi,3.13,3.4,7,160,5500,16,22,?
12 | 2,192,bmw,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16430
13 | 0,192,bmw,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16925
14 | 0,188,bmw,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2710,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,20970
15 | 0,188,bmw,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2765,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,21105
16 | 1,?,bmw,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3055,ohc,six,164,mpfi,3.31,3.19,9,121,4250,20,25,24565
17 | 0,?,bmw,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3230,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,30760
18 | 0,?,bmw,gas,std,two,sedan,rwd,front,103.5,193.8,67.9,53.7,3380,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,41315
19 | 0,?,bmw,gas,std,four,sedan,rwd,front,110,197,70.9,56.3,3505,ohc,six,209,mpfi,3.62,3.39,8,182,5400,15,20,36880
20 | 2,121,chevrolet,gas,std,two,hatchback,fwd,front,88.4,141.1,60.3,53.2,1488,l,three,61,2bbl,2.91,3.03,9.5,48,5100,47,53,5151
21 | 1,98,chevrolet,gas,std,two,hatchback,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6295
22 | 0,81,chevrolet,gas,std,four,sedan,fwd,front,94.5,158.8,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6575
23 | 1,118,dodge,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.41,68,5500,37,41,5572
24 | 1,118,dodge,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6377
25 | 1,118,dodge,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,7957
26 | 1,148,dodge,gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229
27 | 1,148,dodge,gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692
28 | 1,148,dodge,gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,7609
29 | 1,148,dodge,gas,turbo,?,sedan,fwd,front,93.7,157.3,63.8,50.6,2191,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,8558
30 | -1,110,dodge,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.34,3.46,8.5,88,5000,24,30,8921
31 | 3,145,dodge,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2811,ohc,four,156,mfi,3.6,3.9,7,145,5000,19,24,12964
32 | 2,137,honda,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1713,ohc,four,92,1bbl,2.91,3.41,9.6,58,4800,49,54,6479
33 | 2,137,honda,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1819,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,31,38,6855
34 | 1,101,honda,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1837,ohc,four,79,1bbl,2.91,3.07,10.1,60,5500,38,42,5399
35 | 1,101,honda,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1940,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,6529
36 | 1,101,honda,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1956,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7129
37 | 0,110,honda,gas,std,four,sedan,fwd,front,96.5,163.4,64,54.5,2010,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7295
38 | 0,78,honda,gas,std,four,wagon,fwd,front,96.5,157.1,63.9,58.3,2024,ohc,four,92,1bbl,2.92,3.41,9.2,76,6000,30,34,7295
39 | 0,106,honda,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2236,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,7895
40 | 0,106,honda,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2289,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,9095
41 | 0,85,honda,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2304,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,8845
42 | 0,85,honda,gas,std,four,sedan,fwd,front,96.5,175.4,62.5,54.1,2372,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,10295
43 | 0,85,honda,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2465,ohc,four,110,mpfi,3.15,3.58,9,101,5800,24,28,12945
44 | 1,107,honda,gas,std,two,sedan,fwd,front,96.5,169.1,66,51,2293,ohc,four,110,2bbl,3.15,3.58,9.1,100,5500,25,31,10345
45 | 0,?,isuzu,gas,std,four,sedan,rwd,front,94.3,170.7,61.8,53.5,2337,ohc,four,111,2bbl,3.31,3.23,8.5,78,4800,24,29,6785
46 | 1,?,isuzu,gas,std,two,sedan,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,?
47 | 0,?,isuzu,gas,std,four,sedan,fwd,front,94.5,155.9,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,?
48 | 2,?,isuzu,gas,std,two,hatchback,rwd,front,96,172.6,65.2,51.4,2734,ohc,four,119,spfi,3.43,3.23,9.2,90,5000,24,29,11048
49 | 0,145,jaguar,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,32250
50 | 0,?,jaguar,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,35550
51 | 0,?,jaguar,gas,std,two,sedan,rwd,front,102,191.7,70.6,47.8,3950,ohcv,twelve,326,mpfi,3.54,2.76,11.5,262,5000,13,17,36000
52 | 1,104,mazda,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1890,ohc,four,91,2bbl,3.03,3.15,9,68,5000,30,31,5195
53 | 1,104,mazda,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1900,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6095
54 | 1,104,mazda,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1905,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6795
55 | 1,113,mazda,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1945,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6695
56 | 1,113,mazda,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1950,ohc,four,91,2bbl,3.08,3.15,9,68,5000,31,38,7395
57 | 3,150,mazda,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,?,?,9.4,101,6000,17,23,10945
58 | 3,150,mazda,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,?,?,9.4,101,6000,17,23,11845
59 | 3,150,mazda,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2385,rotor,two,70,4bbl,?,?,9.4,101,6000,17,23,13645
60 | 3,150,mazda,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2500,rotor,two,80,mpfi,?,?,9.4,135,6000,16,23,15645
61 | 1,129,mazda,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8845
62 | 0,115,mazda,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8495
63 | 1,129,mazda,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10595
64 | 0,115,mazda,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10245
65 | 0,?,mazda,diesel,std,?,sedan,fwd,front,98.8,177.8,66.5,55.5,2443,ohc,four,122,idi,3.39,3.39,22.7,64,4650,36,42,10795
66 | 0,115,mazda,gas,std,four,hatchback,fwd,front,98.8,177.8,66.5,55.5,2425,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,11245
67 | 0,118,mazda,gas,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2670,ohc,four,140,mpfi,3.76,3.16,8,120,5000,19,27,18280
68 | 0,?,mazda,diesel,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2700,ohc,four,134,idi,3.43,3.64,22,72,4200,31,39,18344
69 | -1,93,mercedes-benz,diesel,turbo,four,sedan,rwd,front,110,190.9,70.3,56.5,3515,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,25552
70 | -1,93,mercedes-benz,diesel,turbo,four,wagon,rwd,front,110,190.9,70.3,58.7,3750,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28248
71 | 0,93,mercedes-benz,diesel,turbo,two,hardtop,rwd,front,106.7,187.5,70.3,54.9,3495,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28176
72 | -1,93,mercedes-benz,diesel,turbo,four,sedan,rwd,front,115.6,202.6,71.7,56.3,3770,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,31600
73 | -1,?,mercedes-benz,gas,std,four,sedan,rwd,front,115.6,202.6,71.7,56.5,3740,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,34184
74 | 3,142,mercedes-benz,gas,std,two,convertible,rwd,front,96.6,180.3,70.5,50.8,3685,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,35056
75 | 0,?,mercedes-benz,gas,std,four,sedan,rwd,front,120.9,208.1,71.7,56.7,3900,ohcv,eight,308,mpfi,3.8,3.35,8,184,4500,14,16,40960
76 | 1,?,mercedes-benz,gas,std,two,hardtop,rwd,front,112,199.2,72,55.4,3715,ohcv,eight,304,mpfi,3.8,3.35,8,184,4500,14,16,45400
77 | 1,?,mercury,gas,turbo,two,hatchback,rwd,front,102.7,178.4,68,54.8,2910,ohc,four,140,mpfi,3.78,3.12,8,175,5000,19,24,16503
78 | 2,161,mitsubishi,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1918,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,37,41,5389
79 | 2,161,mitsubishi,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1944,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6189
80 | 2,161,mitsubishi,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,2004,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6669
81 | 1,161,mitsubishi,gas,turbo,two,hatchback,fwd,front,93,157.3,63.8,50.8,2145,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7689
82 | 3,153,mitsubishi,gas,turbo,two,hatchback,fwd,front,96.3,173,65.4,49.4,2370,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9959
83 | 3,153,mitsubishi,gas,std,two,hatchback,fwd,front,96.3,173,65.4,49.4,2328,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8499
84 | 3,?,mitsubishi,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2833,ohc,four,156,spdi,3.58,3.86,7,145,5000,19,24,12629
85 | 3,?,mitsubishi,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2921,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14869
86 | 3,?,mitsubishi,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2926,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14489
87 | 1,125,mitsubishi,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2365,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,6989
88 | 1,125,mitsubishi,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2405,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8189
89 | 1,125,mitsubishi,gas,turbo,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279
90 | -1,137,mitsubishi,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279
91 | 1,128,nissan,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1889,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,5499
92 | 1,128,nissan,diesel,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,2017,ohc,four,103,idi,2.99,3.47,21.9,55,4800,45,50,7099
93 | 1,128,nissan,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1918,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6649
94 | 1,122,nissan,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1938,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6849
95 | 1,103,nissan,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2024,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7349
96 | 1,128,nissan,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1951,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7299
97 | 1,128,nissan,gas,std,two,hatchback,fwd,front,94.5,165.6,63.8,53.3,2028,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7799
98 | 1,122,nissan,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1971,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7499
99 | 1,103,nissan,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2037,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7999
100 | 2,168,nissan,gas,std,two,hardtop,fwd,front,95.1,162.4,63.8,53.3,2008,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,8249
101 | 0,106,nissan,gas,std,four,hatchback,fwd,front,97.2,173.4,65.2,54.7,2324,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,8949
102 | 0,106,nissan,gas,std,four,sedan,fwd,front,97.2,173.4,65.2,54.7,2302,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,9549
103 | 0,128,nissan,gas,std,four,sedan,fwd,front,100.4,181.7,66.5,55.1,3095,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,13499
104 | 0,108,nissan,gas,std,four,wagon,fwd,front,100.4,184.6,66.5,56.1,3296,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,14399
105 | 0,108,nissan,gas,std,four,sedan,fwd,front,100.4,184.6,66.5,55.1,3060,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,19,25,13499
106 | 3,194,nissan,gas,std,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3071,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,17199
107 | 3,194,nissan,gas,turbo,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,7.8,200,5200,17,23,19699
108 | 1,231,nissan,gas,std,two,hatchback,rwd,front,99.2,178.5,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,18399
109 | 0,161,peugot,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3020,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,11900
110 | 0,161,peugot,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3197,l,four,152,idi,3.7,3.52,21,95,4150,28,33,13200
111 | 0,?,peugot,gas,std,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3230,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,12440
112 | 0,?,peugot,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3430,l,four,152,idi,3.7,3.52,21,95,4150,25,25,13860
113 | 0,161,peugot,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,15580
114 | 0,161,peugot,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,16900
115 | 0,?,peugot,gas,std,four,wagon,rwd,front,114.2,198.9,68.4,56.7,3285,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,16695
116 | 0,?,peugot,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3485,l,four,152,idi,3.7,3.52,21,95,4150,25,25,17075
117 | 0,161,peugot,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,16630
118 | 0,161,peugot,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,17950
119 | 0,161,peugot,gas,turbo,four,sedan,rwd,front,108,186.7,68.3,56,3130,l,four,134,mpfi,3.61,3.21,7,142,5600,18,24,18150
120 | 1,119,plymouth,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1918,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,37,41,5572
121 | 1,119,plymouth,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7957
122 | 1,154,plymouth,gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229
123 | 1,154,plymouth,gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692
124 | 1,154,plymouth,gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,2191,ohc,four,98,2bbl,2.97,3.23,9.4,68,5500,31,38,7609
125 | -1,74,plymouth,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,24,30,8921
126 | 3,?,plymouth,gas,turbo,two,hatchback,rwd,front,95.9,173.2,66.3,50.2,2818,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,12764
127 | 3,186,porsche,gas,std,two,hatchback,rwd,front,94.5,168.9,68.3,50.2,2778,ohc,four,151,mpfi,3.94,3.11,9.5,143,5500,19,27,22018
128 | 3,?,porsche,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,32528
129 | 3,?,porsche,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,34028
130 | 3,?,porsche,gas,std,two,convertible,rwd,rear,89.5,168.9,65,51.6,2800,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,37028
131 | 1,?,porsche,gas,std,two,hatchback,rwd,front,98.4,175.7,72.3,50.5,3366,dohcv,eight,203,mpfi,3.94,3.11,10,288,5750,17,28,?
132 | 0,?,renault,gas,std,four,wagon,fwd,front,96.1,181.5,66.5,55.2,2579,ohc,four,132,mpfi,3.46,3.9,8.7,?,?,23,31,9295
133 | 2,?,renault,gas,std,two,hatchback,fwd,front,96.1,176.8,66.6,50.5,2460,ohc,four,132,mpfi,3.46,3.9,8.7,?,?,23,31,9895
134 | 3,150,saab,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2658,ohc,four,121,mpfi,3.54,3.07,9.31,110,5250,21,28,11850
135 | 2,104,saab,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2695,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,12170
136 | 3,150,saab,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2707,ohc,four,121,mpfi,2.54,2.07,9.3,110,5250,21,28,15040
137 | 2,104,saab,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2758,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,15510
138 | 3,150,saab,gas,turbo,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2808,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18150
139 | 2,104,saab,gas,turbo,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2847,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18620
140 | 2,83,subaru,gas,std,two,hatchback,fwd,front,93.7,156.9,63.4,53.7,2050,ohcf,four,97,2bbl,3.62,2.36,9,69,4900,31,36,5118
141 | 2,83,subaru,gas,std,two,hatchback,fwd,front,93.7,157.9,63.6,53.7,2120,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7053
142 | 2,83,subaru,gas,std,two,hatchback,4wd,front,93.3,157.3,63.8,55.7,2240,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7603
143 | 0,102,subaru,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2145,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4800,32,37,7126
144 | 0,102,subaru,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2190,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4400,28,33,7775
145 | 0,102,subaru,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2340,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,26,32,9960
146 | 0,102,subaru,gas,std,four,sedan,4wd,front,97,172,65.4,54.3,2385,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,24,25,9233
147 | 0,102,subaru,gas,turbo,four,sedan,4wd,front,97,172,65.4,54.3,2510,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,24,29,11259
148 | 0,89,subaru,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2290,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,28,32,7463
149 | 0,89,subaru,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2455,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,25,31,10198
150 | 0,85,subaru,gas,std,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2420,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,23,29,8013
151 | 0,85,subaru,gas,turbo,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2650,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,23,23,11694
152 | 1,87,toyota,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,1985,ohc,four,92,2bbl,3.05,3.03,9,62,4800,35,39,5348
153 | 1,87,toyota,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,2040,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6338
154 | 1,74,toyota,gas,std,four,hatchback,fwd,front,95.7,158.7,63.6,54.5,2015,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6488
155 | 0,77,toyota,gas,std,four,wagon,fwd,front,95.7,169.7,63.6,59.1,2280,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,37,6918
156 | 0,81,toyota,gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,2290,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,7898
157 | 0,91,toyota,gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,3110,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,8778
158 | 0,91,toyota,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2081,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,6938
159 | 0,91,toyota,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2109,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,7198
160 | 0,91,toyota,diesel,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,34,36,7898
161 | 0,91,toyota,diesel,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,38,47,7788
162 | 0,91,toyota,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2094,ohc,four,98,2bbl,3.19,3.03,9,70,4800,38,47,7738
163 | 0,91,toyota,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2122,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,8358
164 | 0,91,toyota,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,52.8,2140,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,9258
165 | 1,168,toyota,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2169,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8058
166 | 1,168,toyota,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2204,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8238
167 | 1,168,toyota,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2265,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9298
168 | 1,168,toyota,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2300,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9538
169 | 2,134,toyota,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2540,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,8449
170 | 2,134,toyota,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2536,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9639
171 | 2,134,toyota,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2551,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9989
172 | 2,134,toyota,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2679,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11199
173 | 2,134,toyota,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2714,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11549
174 | 2,134,toyota,gas,std,two,convertible,rwd,front,98.4,176.2,65.6,53,2975,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,17669
175 | -1,65,toyota,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2326,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,29,34,8948
176 | -1,65,toyota,diesel,turbo,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2480,ohc,four,110,idi,3.27,3.35,22.5,73,4500,30,33,10698
177 | -1,65,toyota,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,9988
178 | -1,65,toyota,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,10898
179 | -1,65,toyota,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2458,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,11248
180 | 3,197,toyota,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,2976,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,20,24,16558
181 | 3,197,toyota,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,3016,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,19,24,15998
182 | -1,90,toyota,gas,std,four,sedan,rwd,front,104.5,187.8,66.5,54.1,3131,dohc,six,171,mpfi,3.27,3.35,9.2,156,5200,20,24,15690
183 | -1,?,toyota,gas,std,four,wagon,rwd,front,104.5,187.8,66.5,54.1,3151,dohc,six,161,mpfi,3.27,3.35,9.2,156,5200,19,24,15750
184 | 2,122,volkswagen,diesel,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2261,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7775
185 | 2,122,volkswagen,gas,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2209,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,7975
186 | 2,94,volkswagen,diesel,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2264,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7995
187 | 2,94,volkswagen,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2212,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8195
188 | 2,94,volkswagen,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2275,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8495
189 | 2,94,volkswagen,diesel,turbo,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2319,ohc,four,97,idi,3.01,3.4,23,68,4500,37,42,9495
190 | 2,94,volkswagen,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2300,ohc,four,109,mpfi,3.19,3.4,10,100,5500,26,32,9995
191 | 3,?,volkswagen,gas,std,two,convertible,fwd,front,94.5,159.3,64.2,55.6,2254,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,11595
192 | 3,256,volkswagen,gas,std,two,hatchback,fwd,front,94.5,165.7,64,51.4,2221,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,9980
193 | 0,?,volkswagen,gas,std,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2661,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,24,13295
194 | 0,?,volkswagen,diesel,turbo,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2579,ohc,four,97,idi,3.01,3.4,23,68,4500,33,38,13845
195 | 0,?,volkswagen,gas,std,four,wagon,fwd,front,100.4,183.1,66.9,55.1,2563,ohc,four,109,mpfi,3.19,3.4,9,88,5500,25,31,12290
196 | -2,103,volvo,gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2912,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,12940
197 | -1,74,volvo,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3034,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,13415
198 | -2,103,volvo,gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2935,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,15985
199 | -1,74,volvo,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3042,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,16515
200 | -2,103,volvo,gas,turbo,four,sedan,rwd,front,104.3,188.8,67.2,56.2,3045,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18420
201 | -1,74,volvo,gas,turbo,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3157,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18950
202 | -1,95,volvo,gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,2952,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,16845
203 | -1,95,volvo,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.8,55.5,3049,ohc,four,141,mpfi,3.78,3.15,8.7,160,5300,19,25,19045
204 | -1,95,volvo,gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3012,ohcv,six,173,mpfi,3.58,2.87,8.8,134,5500,18,23,21485
205 | -1,95,volvo,diesel,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3217,ohc,six,145,idi,3.01,3.4,23,106,4800,26,27,22470
206 | -1,95,volvo,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3062,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,19,25,22625
207 |
--------------------------------------------------------------------------------