Skip to content

Instantly share code, notes, and snippets.

@naz123786
Last active January 24, 2019 04:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naz123786/ff263a02650660403a4f9aa6817548eb to your computer and use it in GitHub Desktop.
Save naz123786/ff263a02650660403a4f9aa6817548eb to your computer and use it in GitHub Desktop.
feature selection
from pathlib import Path
import numpy as np
import sklearn as sk
import pandas as pd
#%% Configuration
INPUT_PATH = Path('')
#%% Import Dataset
SUS = pd.read_excel(INPUT_PATH,
dtype={"Region",
"Top_Account_Nme",
"Claim_Office_Cde
Marital_Status_Cde
Primary_Part_Of_Body_Cde
Trtm_Cde
Tenure_Bucket
Report_Bucket
Primary_Nature_Of_Injury_Cde
Occurrence_Cde
Age_Bucket
})
@travisclagrone
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment