Cancer-treatment-response
synthetic clinical data + outcomes
@kaggle.lijsbeth_cancer_treatment_response
synthetic clinical data + outcomes
@kaggle.lijsbeth_cancer_treatment_response
Prediction of the pathologically complete response after neoadjuvant chemoradiotherapy for oesophageal cancer (Toxopeus, E. L. A., Nieboer, D., Shapiro, J., Biermann, K., van der Gaast, A., van Rij, C. M., ... & Wijnhoven, B. P. L. (2015). Nomogram for predicting pathologically complete response after neoadjuvant chemoradiotherapy for oesophageal cancer. Radiotherapy and Oncology, 115(3), 392-398.)
Columns:
For information
Cancer stages:
Differentiation grades: 1-4 from well differentiated to undifferentiated, X - cannot be measured.
We use an assumption that the input parameters are non-correlated, which is not biologically the case.
There are some distortions:
CREATE TABLE treatment_response_development (
"unnamed_0" BIGINT -- Unnamed: 0,
"index" BIGINT,
"id" VARCHAR,
"age" DOUBLE,
"sex" VARCHAR,
"tumor_type" VARCHAR,
"differentiation_grade" VARCHAR,
"t_stage" VARCHAR,
"n_stage" VARCHAR,
"m_stage" VARCHAR,
"survival_time_days" DOUBLE,
"overall_stage" VARCHAR,
"smoking" VARCHAR,
"weight_loss_percent" DOUBLE,
"tumor_location" VARCHAR,
"complete_response_probability" DOUBLE
);
CREATE TABLE treatment_response_external (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" VARCHAR,
"age" DOUBLE,
"sex" VARCHAR,
"tumor_type" VARCHAR,
"differentiation_grade" VARCHAR,
"t_stage" VARCHAR,
"n_stage" VARCHAR,
"m_stage" VARCHAR,
"survival_time_days" DOUBLE,
"overall_stage" VARCHAR,
"smoking" VARCHAR,
"weight_loss_percent" DOUBLE,
"tumor_location" VARCHAR,
"complete_response_probability" DOUBLE
);
Anyone who has the link will be able to view this.