資料的分類和介紹

2022-05-30 02:45:09 字數 1633 閱讀 9869

例項:

#

!/usr/bin/env python

#-*- coding: utf-8 -*-

#author tom

from sklearn.datasets import

load_iris

from sklearn.model_selection import

train_test_split

li=load_iris()

print("

獲取特徵值")

print

(li.data)

print('

獲取目標值')

print

(li.target)

print('描述'

)print

(li.descr)

#注意返回值 訓練集 trian x_trian,y_trian 測試集 test x_test y_test

#x_trian,x_test,y_trian,y_test=train_test_split(li.data,li.target,test_size=0.25)

#print('訓練集的特徵值和目標值',x_trian,y_trian)

#print('測試集的特徵值和目標值',x_test,y_test)

from sklearn.datasets import load_iris,fetch_20newsgroups,load_boston
#獲取大資料集

news=fetch_20newsgroups(subset='

all'

)print('

news===

',news.data)

print('

news-target

',news.target)

#lb=load_boston()

print("

獲取特徵值")

print

(lb.data)

print('

獲取目標值')

print

(lb.target)

print('描述'

)print(lb.descr)

索引介紹和分類

索引介紹 mysql官方對索引的定義為,索引 index 是幫助mysql高效獲取資料的資料結構。提取句子主幹,就可以得到索引的本質 索引是資料結構。索引分類 unique key identitycard identitycard 前面為索引名,後面為列名 key email email 基礎語法...

js事件的分類和介紹

1 常用window事件 window.onload onscroll.function load事件 unload事件 頁面載入時生效 scroll事件 頁面滾動時生效 2 常用滑鼠事件 box.onclick onmouseover.function click事件 單擊 dbclick事件 雙...

排序演算法介紹和分類

排序也成排序演算法 排序也稱排序演算法 sort algorithm 排序是將一組資料,依指定的順序進行排列的過程。排序的分類 1 內部排序 指將需要處理的所有資料都載入到 內部儲存器 記憶體 中進行排序。2 外部排序法 資料量過大,無法全部載入到記憶體中,需要借助外部儲存進行 排序。3 常見的排序...