九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
用Python玩轉(zhuǎn)數(shù)據(jù)
# -*- coding: utf-8 -*-
"""
AKdf create
@author: Dazhuang
"""
# -*- coding: utf-8 -*-
"""
Count days
@author: Dazhuang
"""
import requests
import re
import json
import pandas as pd
from datetime import date
import time
from pylab import *
from scipy.cluster.vq import *
def retrieve_quotes_historical(stock_code):
quotes = []
url = 'https://finance.yahoo.com/quote/%s/history?p=%s' % (stock_code, stock_code)
r = requests.get(url)
m = re.findall('"HistoricalPriceStore":{"prices":(.*?),"isPending"', r.text)
if m:
quotes = json.loads(m[0])
quotes = quotes[::-1]
return  [item for item in quotes if not 'type' in item]
def create_df(stock_code):
quotes = retrieve_quotes_historical(stock_code)
list1 = []
for i in range(len(quotes)):
x = date.fromtimestamp(quotes[i]['date'])
y = date.strftime(x,'%Y-%m-%d')
list1.append(y)
quotesdf_ori = pd.DataFrame(quotes, index = list1)
listtemp = []
for i in range(len(quotesdf_ori)):
temp = time.strptime(quotesdf_ori.index[i],"%Y-%m-%d")
listtemp.append(temp.tm_mon)
tempdf = quotesdf_ori.copy()
tempdf['month'] = listtemp
totalclose = tempdf.groupby('month').close.mean()
df_totalclose = pd.DataFrame(totalclose)
df_totalclose['code'] = stock_code
return df_totalclose
dfAXP_totalclose = create_df('AXP')
dfKO_totalclose = create_df('KO')
AKdf = dfAXP_totalclose.append(dfKO_totalclose)
AKdf['month'] = AKdf.index
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
python入門基礎(chǔ)代碼
python pandas to
基于dagster定期更新A股日線后復(fù)權(quán)數(shù)據(jù)
ArcGIS與Python結(jié)合(一)
[Python]
Py之IPython:IPython庫中的display函數(shù)的簡介、使用方法、應(yīng)用案例之詳細(xì)攻略
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服