目录
正数 positive number
负数 negative number
整数 integer number
自然数 Natural number
实数 real number
虚数 imaginary number
复数 complex number
复数的模 ∣z∣
共轭复数 conjugate complex number
复数运算法则 正数 positive number 正数全称正实数&…
实现功能
使用f_classif()获得每个特征的方差分析f值。f值越高,表明特征与目标的相关性越强。
实现代码
from sklearn.feature_selection import f_classif
import pandas as pd
from sklearn.datasets import load_breast_cancer
import matplotlib.pyplot as p…