1 Star 0 Fork 0

jx0913/stock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
year_analysis.py 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rockyzsu 提交于 2018-08-20 00:59 . add comment
#-*-coding=utf-8-*-
import os
import pandas as pd
import matplotlib.pyplot as plt
from setting import DATA_PATH
# 分析年度的数据
def stock_analysis():
df=pd.read_excel('2017-year.xls',encoding='gbk')
print('mean:\n',df['price_change'].mean())
print('max:\n',df['price_change'].max())
print('min:\n',df['price_change'].min())
print('middle\n',df['price_change'].median())
plt.figure()
df['price_change'].plot.hist()
plt.show()
def main():
stock_analysis()
if __name__ == '__main__':
data_path =r'C:\OneDrive\Stock_Data'
# data_path=DATA_PATH
os.chdir(data_path)
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jx0913/stock.git
git@gitee.com:jx0913/stock.git
jx0913
stock
stock
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385