python
文章平均质量分 93
莉莉丫丫的海角
这个作者很懒,什么都没留下…
展开
-
时间序列预测:指数平滑法及python实现
1. 移动平均法from sklearn.metrics import r2_score, mean_absolute_error, median_absolute_error# 滑动窗口估计,发现数据变化趋势def plotMovingAverage(series, window, plot_intervals=False, scale=1.96, plot_anomalies=False): """ series - dataframe with timeserie原创 2020-09-22 21:54:28 · 17259 阅读 · 13 评论 -
【解决方法】matplotlib画图时候x轴的标签显示密集
原代码:import matplotlib.pyplot as plt fig = plt.figure(figsize=(20, 5))ax = fig.add_subplot(111)ax.plot(single_data['2015-01-01':'2015-12-31'])ax.plot(single_data['2016-01-01':'2016-12-31'])plt.title(single_data.name)plt.grid()修改后代码:import原创 2020-06-02 10:59:53 · 17698 阅读 · 2 评论 -
Python时间戳学习
原文链接:https://www.cnblogs.com/fangbei/p/python-time.html1、获取秒级时间戳与毫秒级时间戳、微秒级时间戳import timet = time.time()print(t) # 原始时间数据print(int(t)) ...转载 2020-02-05 17:59:03 · 702 阅读 · 0 评论 -
TensorFlow安装笔记
查了一些网上资料,终于将TensorFlow安装成功了,期间也的确遇到一些坑,整理存档。首先,介绍一下安装时的背景情况,涉及到TensorFlow支持的版本问题,还是值得注意一下的。环境:win10 64位操作系统 时间:2018年11月10日(此时间节点上最新版本为Python3.7,Anaconda3-5.3.0-Windows-x86_64 )第一次失败经历开始安装的时候为了...原创 2018-11-11 14:58:46 · 621 阅读 · 1 评论 -
Leetcode 167 —— 双指针问题
167. Two Sum II - Input array is sortedGiven an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.The function twoSum ...原创 2019-03-06 11:00:35 · 196 阅读 · 0 评论