Dairy Goods Sales Dataset
A comprehensive dataset on dairy farms, products, sales, and inventory tracking
@kaggle.suraj520_dairy_goods_sales_dataset
A comprehensive dataset on dairy farms, products, sales, and inventory tracking
@kaggle.suraj520_dairy_goods_sales_dataset
The Dairy Goods Sales Dataset provides a detailed and comprehensive collection of data related to dairy farms, dairy products, sales, and inventory management. This dataset encompasses a wide range of information, including farm location, land area, cow population, farm size, production dates, product details, brand information, quantities, pricing, shelf life, storage conditions, expiration dates, sales information, customer locations, sales channels, stock quantities, stock thresholds, and reorder quantities.
This dataset can be used by researchers, analysts, and businesses in the dairy industry for various purposes, such as:
Note: This dataset includes data from the period between 2019 and 2022, and it specifically focuses on selected dairy brands operating in specific states and union territories of India. There is an intentional drift highlighted in the dataset's figures due to its opensource and creative license, currently !
CREATE TABLE dairy_dataset (
"location" VARCHAR,
"total_land_area_acres" DOUBLE -- Total Land Area (acres),
"number_of_cows" BIGINT,
"farm_size" VARCHAR,
"date" TIMESTAMP,
"product_id" BIGINT,
"product_name" VARCHAR,
"brand" VARCHAR,
"quantity_liters_kg" DOUBLE -- Quantity (liters/kg),
"price_per_unit" DOUBLE,
"total_value" DOUBLE,
"shelf_life_days" BIGINT -- Shelf Life (days),
"storage_condition" VARCHAR,
"production_date" TIMESTAMP,
"expiration_date" TIMESTAMP,
"quantity_sold_liters_kg" BIGINT -- Quantity Sold (liters/kg),
"price_per_unit_sold" DOUBLE -- Price Per Unit (sold),
"approx_total_revenue_inr" DOUBLE -- Approx. Total Revenue(INR),
"customer_location" VARCHAR,
"sales_channel" VARCHAR,
"quantity_in_stock_liters_kg" BIGINT -- Quantity In Stock (liters/kg),
"minimum_stock_threshold_liters_kg" DOUBLE -- Minimum Stock Threshold (liters/kg),
"reorder_quantity_liters_kg" DOUBLE -- Reorder Quantity (liters/kg)
);Anyone who has the link will be able to view this.