Biomechanical Features Of Orthopedic Patients
Classifying patients based on six features
@kaggle.uciml_biomechanical_features_of_orthopedic_patients
Classifying patients based on six features
@kaggle.uciml_biomechanical_features_of_orthopedic_patients
The data have been organized in two different but related classification tasks.
column_3C_weka.csv (file with three class labels)
column_2C_weka.csv (file with two class labels)
Field Descriptions:
Each patient is represented in the data set by six biomechanical attributes derived from the shape and orientation of the pelvis and lumbar spine (each one is a column):
The original dataset was downloaded from UCI ML repository:
Lichman, M. (2013). UCI Machine Learning Repository [http://archive.ics.uci.edu/ml]. Irvine, CA: University of California, School of Information and Computer Science
Files were converted to CSV
Use these biomechanical features to classify patients according to their labels
CREATE TABLE column_2c_weka (
"pelvic_incidence" DOUBLE,
"pelvic_tilt_numeric" DOUBLE,
"lumbar_lordosis_angle" DOUBLE,
"sacral_slope" DOUBLE,
"pelvic_radius" DOUBLE,
"degree_spondylolisthesis" DOUBLE,
"class" VARCHAR
);CREATE TABLE column_3c_weka (
"pelvic_incidence" DOUBLE,
"pelvic_tilt" DOUBLE,
"lumbar_lordosis_angle" DOUBLE,
"sacral_slope" DOUBLE,
"pelvic_radius" DOUBLE,
"degree_spondylolisthesis" DOUBLE,
"class" VARCHAR
);Anyone who has the link will be able to view this.