Brazilian Insurance Market Data
Insurance data compiled by SUSEP, the brazilian insurance market regulator
@kaggle.ex0ticone_brazilian_insurance_market_data
Insurance data compiled by SUSEP, the brazilian insurance market regulator
@kaggle.ex0ticone_brazilian_insurance_market_data
This is a dataset obtained from SUSEP, the government body that regulates the insurance market of Brazil.
We have a main file, containing data of premiums, claims and claims/premiums ratio by month, insurance company, insurance product and state of Brazil. All values are expressed in Brazilian Reais (BRL currency).
This dataset starts at January 2003 and it's updated on a quarterly basis, based on the information sent by the insurance companies to SUSEP on official documents with auditors approval.
CREATE TABLE insurance_dataset (
"company_code" BIGINT,
"company_name" VARCHAR,
"year_month" TIMESTAMP,
"product" VARCHAR,
"state" VARCHAR,
"premiums" DOUBLE,
"claims" DOUBLE,
"claim_premium_ratio" DOUBLE
);
Anyone who has the link will be able to view this.