Company Financials Dataset
Test your preprocessing skills with this dataset!!
@kaggle.atharvaarya25_financials
Test your preprocessing skills with this dataset!!
@kaggle.atharvaarya25_financials
This is a dataset that requires a lot of preprocessing with amazing EDA insights for a company. A dataset consisting of sales and profit data sorted by market segment and country/region.
Tips for pre-processing:
CREATE TABLE financials (
"segment" VARCHAR,
"country" VARCHAR,
"n__product" VARCHAR -- Product,
"n__discount_band" VARCHAR -- Discount Band,
"n__units_sold" VARCHAR -- Units Sold,
"n__manufacturing_price" VARCHAR -- Manufacturing Price,
"n__sale_price" VARCHAR -- Sale Price,
"n__gross_sales" VARCHAR -- Gross Sales,
"n__discounts" VARCHAR -- Discounts,
"n__sales" VARCHAR -- Sales,
"n__cogs" VARCHAR -- COGS,
"n__profit" VARCHAR -- Profit,
"date" TIMESTAMP,
"month_number" BIGINT,
"n__month_name" VARCHAR -- Month Name,
"year" BIGINT
);
Anyone who has the link will be able to view this.