numpy 数组选取

以前python 使用,没有总结的现在写上,今天在切分训练数据集特征和标签是放在一起的 如:[feature1,feature2,feature3,...featuren,label]=source_data

numpy中,假设特征大小是n,features选取就是 features=source_data[:,0:n] ,标签选取是 labels=source_data[:,-1]

你可能感兴趣的:(numpy 数组选取)