Happiness Classification Dataset
Responses from a survey about people being happy or unhappy from varying cities.
@kaggle.priyanshusethi_happiness_classification_dataset
Responses from a survey about people being happy or unhappy from varying cities.
@kaggle.priyanshusethi_happiness_classification_dataset
A feeling of happiness while self introspecting is the major reason we indulge in our hobbies and choose places to live.
This Dataset is based on a survey conducted where people rated different metrics of their city on a scale of 5 and answered if they are happy or unhappy.
The goal of this dataset is to understand the important factors that play a role in making the residents of a city more happy with their lives.
Data Dictionary:-
infoavail = the availability of information about the city services
housecost = the cost of housing
schoolquality = the overall quality of public schools
policetrust = your trust in the local police
streetquality = the maintenance of streets and sidewalks
events = the availability of social community events
happy = decision attribute (D) with values 0 (unhappy) and 1 (happy)
CREATE TABLE happydata (
"infoavail" BIGINT,
"housecost" BIGINT,
"schoolquality" BIGINT,
"policetrust" BIGINT,
"streetquality" BIGINT,
"n__vents" BIGINT -- Ëvents,
"happy" BIGINT
);Anyone who has the link will be able to view this.