Auto-mpg Dataset
Mileage per gallon performances of various cars
@kaggle.uciml_autompg_dataset
Mileage per gallon performances of various cars
@kaggle.uciml_autompg_dataset
The data is technical spec of cars. The dataset is downloaded from UCI Machine Learning Repository
Title: Auto-Mpg Data
Sources:
(a) Origin:  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.
(c) Date: July 7, 1993
Past Usage:
Relevant Information:
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".
"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)
Number of Instances: 398
Number of Attributes: 9 including the class attribute
Attribute Information:
Missing Attribute Values: horsepower has 6 missing values
Dataset: UCI Machine Learning Repository
Data link : https://archive.ics.uci.edu/ml/datasets/auto+mpg
I have used this dataset for practicing my exploratory analysis skills.
CREATE TABLE auto_mpg (
  "mpg" DOUBLE,
  "cylinders" BIGINT,
  "displacement" DOUBLE,
  "horsepower" VARCHAR,
  "weight" BIGINT,
  "acceleration" DOUBLE,
  "model_year" BIGINT,
  "origin" BIGINT,
  "car_name" VARCHAR
);Anyone who has the link will be able to view this.