Turnover Survival Analysis
Turnover data for Survival Analysis
@kaggle.aman2114_turnover_survival_analysis
Turnover data for Survival Analysis
@kaggle.aman2114_turnover_survival_analysis
This is a data used for Survival Analysis.
stag - Represents the event duration
events - Represents the occurrence of an event
gender - Gender of the customer
age - Age of the customer
industry - Industry where the customer works
profession - Profession/occupation of the customer
Other are categorical variables.
CREATE TABLE turnover (
"stag" DOUBLE,
"event" BIGINT,
"gender" VARCHAR,
"age" DOUBLE,
"industry" VARCHAR,
"profession" VARCHAR,
"traffic" VARCHAR,
"coach" VARCHAR,
"head_gender" VARCHAR,
"greywage" VARCHAR,
"way" VARCHAR,
"extraversion" DOUBLE,
"independ" DOUBLE,
"selfcontrol" DOUBLE,
"anxiety" DOUBLE,
"novator" DOUBLE
);CREATE TABLE turnover1 (
"stag" DOUBLE,
"event" BIGINT,
"gender" VARCHAR,
"age" DOUBLE,
"industry" VARCHAR,
"profession" VARCHAR,
"traffic" VARCHAR,
"coach" VARCHAR,
"head_gender" VARCHAR,
"greywage" VARCHAR,
"way" VARCHAR,
"extraversion" DOUBLE,
"independ" DOUBLE,
"selfcontrol" DOUBLE,
"anxiety" DOUBLE,
"novator" DOUBLE
);Anyone who has the link will be able to view this.