Lung Cancer Data
Does smoking really cause lung cancer?
@kaggle.samuelotiattakorah_lung_cancer_data
Does smoking really cause lung cancer?
@kaggle.samuelotiattakorah_lung_cancer_data
The effectiveness of cancer prediction system helps the people to know their cancer risk with low cost and it also helps the people to take the appropriate decision based on their cancer risk status.
The data is collected from the website online lung cancer prediction system.
Total no. of attributes: 16
No .of instances: 284
Attribute information:
Gender: M(male), F(female)
Age: Age of the patient
Smoking: YES=2 , NO=1.
Yellow fingers: YES=2 , NO=1.
Anxiety: YES=2 , NO=1.
Peer_pressure: YES=2 , NO=1.
Chronic Disease: YES=2 , NO=1.
Fatigue: YES=2 , NO=1. Allergy: YES=2 , NO=1.
Wheezing: YES=2 , NO=1.
Alcohol: YES=2 , NO=1.
Coughing: YES=2 , NO=1.
Shortness of Breath: YES=2 , NO=1.
Swallowing Difficulty: YES=2 , NO=1.
Chest pain: YES=2 , NO=1.
Lung Cancer: YES , NO.
CREATE TABLE lung_cancer_survey (
"gender" VARCHAR,
"age" BIGINT,
"smoking" BIGINT,
"yellow_fingers" BIGINT,
"anxiety" BIGINT,
"peer_pressure" BIGINT,
"chronic_disease" BIGINT,
"fatigue" BIGINT,
"allergy" BIGINT,
"wheezing" BIGINT,
"alcohol_consuming" BIGINT,
"coughing" BIGINT,
"shortness_of_breath" BIGINT,
"swallowing_difficulty" BIGINT,
"chest_pain" BIGINT,
"lung_cancer" VARCHAR
);Anyone who has the link will be able to view this.