01 開始Python資料分析之旅

2021-08-10 23:09:28 字數 1288 閱讀 8758

序號

庫(模組)名稱說明1

numpy

python數學庫

2pandas

python資料分析庫(python anaylise data)

3matplotlib

python繪相簿

4json

json格式資料處理模組

5xml

xml個數資料處理模組

python是一種動態弱型別語言,變數在使用的時候即完成了變數的定義
int_a = 123

str_b = '123'

print(type(int_a))

print(type(str_b))

條件分支
flag = 1

if flag == 1:

print('hello flag 1')

else:

print('hello flag 2')

hello flag 1
迴圈結構 for
python中的for迴圈結構屬於範圍迴圈,在in關鍵字之後必須是乙個\underline型別
for i in range(1,10):

print(i)

print(type(range(1,10)))

123

4567

89

迴圈結構while
flag = 10

while flag>0:

flag = flag-1

print(flag)

987

6543210

使用python標準函式open開啟檔案
file = open('./lessondata/helloworld.txt')

資料分析 01

import pandas as pd import numpy as np from ipython.core.interactiveshell import interactiveshell interactiveshell.ast node interactivity all 檔案目錄,相對路...

Python之資料分析(寶可夢資料分析)

在此感謝阿里雲天池平台提供的學習平台,並提供相應的教程供小白們學習資料分析。seaborn庫 seaborn 是基於 python 且非常受歡迎的圖形視覺化庫,在 matplotlib 的基礎上,進行了更高階的封裝,使得作圖更加方便快捷。即便是沒有什麼基礎的人,也能通過極簡的 做出具有分析價值而又十...

python資料分析之Numpy

numpy系統是python的一種開源的數值計算擴充套件 ndarray 多維陣列 所有元素必須是相同型別 ndim屬性,維度個數 shape屬性,各維度大小 dtype屬性,資料型別 coding utf 8 import numpy as np 生成指定維度的隨機多維資料 data np.ran...