Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Auto Miles per Gallon (MPG) Dataset
|
2 |
+
|
3 |
+
Following description was taken from [UCI machine learning repository](https://archive.ics.uci.edu/ml/datasets/auto+mpg).
|
4 |
+
Source: This dataset was taken from the StatLib library which is maintained at Carnegie Mellon University. The dataset was used in the 1983 American Statistical Association Exposition.
|
5 |
+
|
6 |
+
Data Set Information:
|
7 |
+
|
8 |
+
This dataset is a slightly modified version of the dataset provided in the StatLib library. In line with the use by Ross Quinlan (1993) in predicting the attribute "mpg", 8 of the original instances were removed because they had unknown values for the "mpg" attribute. The original dataset is available in the file "auto-mpg.data-original".
|
9 |
+
|
10 |
+
"The data concerns city-cycle fuel consumption in miles per gallon, to be predicted in terms of 3 multivalued discrete and 5 continuous attributes." (Quinlan, 1993)
|
11 |
+
|
12 |
+
|
13 |
+
Attribute Information:
|
14 |
+
|
15 |
+
- mpg: continuous
|
16 |
+
- cylinders: multi-valued discrete
|
17 |
+
- displacement: continuous
|
18 |
+
- horsepower: continuous
|
19 |
+
- weight: continuous
|
20 |
+
- acceleration: continuous
|
21 |
+
- model year: multi-valued discrete
|
22 |
+
- origin: multi-valued discrete
|
23 |
+
- car name: string (unique for each instance)
|
24 |
+
|