Industry Market Cap Dataset
Financial analysis dataset comparing 1500 companies across 8 industries
@kaggle.zibranzarif_industry_market_cap_analysis_dataset
Financial analysis dataset comparing 1500 companies across 8 industries
@kaggle.zibranzarif_industry_market_cap_analysis_dataset
This dataset contains financial information of 1500 companies across 8 different industries scraped from companiesmarketcap.com on May 2024. It contains information about the company's name, industry, country, employees, marketcap, revenue, earnings, etc.
The dataset contains 2 files with the same column names. scraped_company_data.csv file is further transformed and cleaned to produce the finaltransformed_company_data.csvfile.
The website companiesmarketcap.com was used to scrape this dataset. Please include citations for this dataset if you use it in your own research.
The dataset can be used to find industries with the highest average market value, most profitable industries, most growth-oriented sectors, etc. More interesting insights can be found in this README file.
CREATE TABLE scraped_company_data (
"company" VARCHAR,
"company_path" VARCHAR,
"industry" VARCHAR,
"country" VARCHAR,
"employees" BIGINT,
"marketcap" VARCHAR,
"revenue" VARCHAR,
"earnings" VARCHAR,
"operating_margin" VARCHAR,
"total_assets" VARCHAR,
"total_liabilities" VARCHAR,
"total_debt" VARCHAR,
"net_assets" VARCHAR,
"pe_ratio" VARCHAR,
"ps_ratio" VARCHAR
);CREATE TABLE transformed_company_data (
"company" VARCHAR,
"company_path" VARCHAR,
"industry" VARCHAR,
"country" VARCHAR,
"employees" BIGINT,
"marketcap" DOUBLE,
"revenue" DOUBLE,
"earnings" DOUBLE,
"operating_margin" DOUBLE,
"total_assets" DOUBLE,
"total_liabilities" DOUBLE,
"total_debt" DOUBLE,
"net_assets" DOUBLE,
"pe_ratio" DOUBLE,
"ps_ratio" DOUBLE
);Anyone who has the link will be able to view this.