i performed feature selection using ExtraTreesClassifier and SelectFromModel in data set that loaded as DataFrame, however i want to save these selected feature as DataFrame
Use the method DataFrame.to_csv() to save your dataframe as a csv file.
DataFrame.to_csv()
csv
Do the following :
X_new.to_csv("your/path", sep=';')
Here is a link to the documentation of the method.