Petroleum Products Consumption In India
India's consumption of different types of petroleum products from 2020 to 2023
@kaggle.tahzeer_consumption_of_petroleum_products_in_india
India's consumption of different types of petroleum products from 2020 to 2023
@kaggle.tahzeer_consumption_of_petroleum_products_in_india
This Kaggle dataset provides monthly consumption data of petroleum products in India from April 2020 to February 2023. The dataset includes various types of petroleum products, each categorized under specific product labels, such as:
Have a look at these pivot tables to have a better understanding of the dataset.
monthyearproduct: Type of petroleum product (12 unique types)quantity_in_1000_metric_tonnes: Quantity consumed (in 1000 metric tonnes)CREATE TABLE petroleum_prod_consumption (
"month" VARCHAR,
"year" BIGINT,
"products" VARCHAR,
"quantity_in_1000_metric_tonnes" DOUBLE
);Anyone who has the link will be able to view this.