Random Forest

    머신러닝을 이용한 DEG 분석

    DEG by Machine Learning 데이터를 사용하여 기계학습 모델을 학습시키고 기계학습 모델에서 중요하게 사용된 특성(feature)에 대해 특성 중요도(feature importance)를 계산 => 특성 중요도(feature importance)를 기준으로 DEG 선정 Decision Tree Random Forest Generation Random Forest Prediction Feature Importance 실습 코드 import pandas as pd data=pd.read_csv("LUAD.txt",delimiter="\t",skiprows=lambda x: x == 1,index_col=0) lst_labels = [] for col in data.columns: # if col..