您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“Python常用的模塊有哪些”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
1、random 隨機(jī)模塊
2、matplotlab.pyplot 作圖模塊
3、mpl_toolkits.mplot3d 繪制3D圖模塊
import random
code = random.choice(stock_list)
# 從一個(gè)列表中隨機(jī)選取元素下面是我目前經(jīng)常用到的模塊,為了方便使用,不是有特殊需求的話,個(gè)人覺得一開始沒比亞每個(gè)模塊都很深入學(xué)習(xí),只要知道自己常用的一些方法就行。隨時(shí)更新,請(qǐng)搜索使用。
random 隨機(jī)選取模塊:
import random a = [1, 2, 3, 4, 5] print(random.choice(a)) # 隨機(jī)從列表中抽取一個(gè)元素 code = random.choice(stock_list) # 從一個(gè)列表中隨機(jī)選取元素
os 文件夾模塊:
import os # 設(shè)置默認(rèn)文件路徑 os.chdir() os.chdir(u'C:/Users/Ocean/OneDrive/class5/data/input_data/stock_data') df = pd.read_csv('sz300001.csv') print df
程序根目錄地址,os.pardir:父目錄 parent directory
root_path = os.path.abspath(os.path.join(current_file, os.pardir, os.pardir)) # 兩級(jí)父目錄 print root_path
輸入數(shù)據(jù)根目錄地址
input_data_path = os.path.abspath(os.path.join(root_path, 'data', 'input_data'))
time 時(shí)間模塊:
import time
獲取當(dāng)前日期
date_now = time.strftime('%Y-%m-%d', time.localtime(time.time()))
計(jì)時(shí)器
start = time.time() end = time.time() used_time = str(end - start) print "used_time: " + used_time
import matplotlib.pyplot as plt
添加空白畫布
fig = plt.figure(figsize=(12,5))
在空白畫布上設(shè)置一塊區(qū)域
ax = fig.add_subplot(1,1,1)
設(shè)置畫塊的標(biāo)題
ax.set_title(str(code)) ax.set_xlabel('Time') # 設(shè)置橫坐標(biāo)x軸的名字 ax.set_ylabel('Return') # 設(shè)置Y軸
畫一根2D線圖,并設(shè)置名稱為 'stock_return'
plt.plot(df[equity], label='stock_return')
繪制散點(diǎn)圖
plt.scatter(df['ma_long'], df['final_ratio'], label='ma_long')
還有更多的圖形可以繪制,如果真的有需要,可以網(wǎng)上再搜索
plt.legend(loc='best') # 顯示圖線的名字 plt.show() # 繪出圖像結(jié)果
from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = Axes3D(fig) ax.scatter(df['ma_long'],df['ma_short'],df['final_ratio'], c='b') #繪制數(shù)據(jù)點(diǎn) # 設(shè)置坐標(biāo)軸名字 ax.set_zlabel('final_ratio') #坐標(biāo)軸 ax.set_ylabel('ma_short') ax.set_xlabel('ma_long') plt.show()
“Python常用的模塊有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。