Baselight

Real Breast Cancer Data

Real breast cancer sample dataset, for healthcare and cancer data analysis.

@kaggle.amandam1_breastcancerdataset

Brca
@kaggle.amandam1_breastcancerdataset.brca

  • 29.46 KB
  • 341 rows
  • 16 columns
patient_id

Patient ID

age

Age

gender

Gender

protein1

Protein1

protein2

Protein2

protein3

Protein3

protein4

Protein4

tumour_stage

Tumour Stage

histology

Histology

er_status

ER Status

pr_status

PR Status

her2_status

HER2 Status

surgery_type

Surgery Type

date_of_surgery

Date Of Surgery

date_of_last_visit

Date Of Last Visit

patient_status

Patient Status

TCGA-D8-A1XD36FEMALE0.0803530.426380.547150.27368IIIInfiltrating Ductal CarcinomaPositivePositiveNegativeModified Radical Mastectomy15-Jan-1719-Jun-17Alive
TCGA-EW-A1OX43FEMALE-0.420320.578070.61447-0.031505IIMucinous CarcinomaPositivePositiveNegativeLumpectomy26-Apr-1709-Nov-18Dead
TCGA-A8-A07969FEMALE0.213981.3114-0.32747-0.23426IIIInfiltrating Ductal CarcinomaPositivePositiveNegativeOther08-Sep-1709-Jun-18Alive
TCGA-D8-A1XR56FEMALE0.34509-0.21147-0.193040.12427IIInfiltrating Ductal CarcinomaPositivePositiveNegativeModified Radical Mastectomy25-Jan-1712-Jul-17Alive
TCGA-BH-A0BF56FEMALE0.221551.90680.52045-0.31199IIInfiltrating Ductal CarcinomaPositivePositiveNegativeOther06-May-1727-Jun-19Dead
TCGA-AO-A1KQ84MALE-0.0818721.7241-0.0573350.043025IIIInfiltrating Ductal CarcinomaPositivePositiveNegativeModified Radical Mastectomy18-Sep-1715-Nov-21Alive
TCGA-D8-A73X53FEMALE-0.0695351.4183-0.361050.39158IIInfiltrating Ductal CarcinomaPositivePositiveNegativeSimple Mastectomy04-Feb-1707-Feb-18Alive
TCGA-A7-A42650FEMALE0.672491.279-0.32107-0.11239IIIInfiltrating Ductal CarcinomaPositivePositiveNegativeSimple Mastectomy16-May-17nannan
TCGA-EW-A1P577FEMALE-0.15175-0.663321.18940.21718IIInfiltrating Ductal CarcinomaPositivePositiveNegativeModified Radical Mastectomy28-Sep-1728-Sep-18Alive
TCGA-A8-A09A40FEMALE-0.56571.2668-0.293460.19395IIInfiltrating Lobular CarcinomaPositivePositivePositiveOther14-Feb-1715-Dec-17Alive

CREATE TABLE brca (
  "patient_id" VARCHAR,
  "age" DOUBLE,
  "gender" VARCHAR,
  "protein1" DOUBLE,
  "protein2" DOUBLE,
  "protein3" DOUBLE,
  "protein4" DOUBLE,
  "tumour_stage" VARCHAR,
  "histology" VARCHAR,
  "er_status" VARCHAR,
  "pr_status" VARCHAR,
  "her2_status" VARCHAR,
  "surgery_type" VARCHAR,
  "date_of_surgery" VARCHAR,
  "date_of_last_visit" VARCHAR,
  "patient_status" VARCHAR
);

Share link

Anyone who has the link will be able to view this.