我在进行自动机器学习工作时,最后需要绘制出boundary边界图,但其中的feature one 和feature two我不是很清楚他们代表的是什么。我的特征向量如图
我的boundary边界图如下
from pathlib import Path
import numpy as np
import pandas as pd
import random
# Classification
from pycaret.classification import *
#获取数据集
df1=pd.read_csv(r"C:\Users\Hp\Desktop\2015.csv")
#数据预处理:删除缺失值、相同值、以及将其按照0.8的比例训练、以及移除特别离谱的值
data=setup(data=df1,target='label',train_size=0.8,remove_outliers = True)
# 比较所有模型、比较了60多个模型包括回归算法、分类算法、nlp等
compare_models()
#模型创建:根据上述模型的比较创建出最优的模型
model= create_model('lightgbm')
model
#模型调优
new_model= tune_model(model)
new_model
#模型集成(此处采用ensemble_model函数)
#如果对多模型集成,则采用blend_models等函数
bagged_model = ensemble_model(new_model)
bagged_model
#模型分析
#plot_model(bagged_model, plot = 'auc')
#plot_model(bagged_model, plot = 'boundary')
#plot_model(bagged_model, plot = 'pr')
#plot_model(bagged_model, plot = 'confusion_matrix')
#保存模型
save_model(bagged_model,"Classifier")
请大家帮我看看 这个featureone 、feature two是什么意思,如果是一个合成的特征请告诉我合成方法大概是什么 谢谢大家