
算法
莉莉丫丫的海角
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
时间序列预测:指数平滑法及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 · 17616 阅读 · 13 评论 -
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 · 215 阅读 · 0 评论