KDD: Knowledge Discovery and Data Mining (KDD) Insititute: 复旦大学,中科大 Problem: time series prediction; modelling extreme events; overlook the existence ...
分类:
其他好文 时间:
2020-01-29 10:18:10
阅读次数:
97
[toc] 一、时间序列是什么 时间序列在多个时间点观察或测量到的任何事物,很多都是固定频率出现 的,比如每15秒、每5分钟、每月。 padnas提供了一组标准的时间序列处理工具和数据算法,基本的时间序列类型是以时间戳为索引的Series。 当创建一个带有DatetimeIndex的Series时, ...
分类:
其他好文 时间:
2020-01-28 00:06:27
阅读次数:
201
1052 Linked List Sorting (25分) A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each str ...
分类:
其他好文 时间:
2020-01-26 19:07:47
阅读次数:
72
Dimensionality in statistics refers to how many attributes a dataset has. For example, healthcare data is notorious for having vast amounts of variabl ...
分类:
其他好文 时间:
2020-01-24 20:05:14
阅读次数:
98
1.相关性分析 分析连续变量之间的线性相关程度的强弱 图示初判 / Pearson相关系数(皮尔逊相关系数) / Sperman秩相关系数(斯皮尔曼相关系数) # 图示初判 # (1)变量之间的线性相关性 data1 = pd.Series(np.random.rand(50)*100).sort_ ...
分类:
其他好文 时间:
2020-01-22 23:55:44
阅读次数:
150
You are given a series of video clips from a sporting event that lasted T seconds. These video clips can be overlapping with each other and have varie ...
分类:
其他好文 时间:
2020-01-22 10:50:53
阅读次数:
80
pandas 引入约定 >>> from pandas import Series,DataFrame >>> import pandas as pd Series 类似于一维数组的对象,由一组数据和相关的数据标签(索引)组成 >>> obj=Series([4,7,-5,3]) >>> obj 0 ...
分类:
其他好文 时间:
2020-01-20 00:21:26
阅读次数:
71
可以把pandas看作是numpy的字典形式 array == Series 一维 array == DataFrame 二维 DataFrame有两种初始化方式:1、利用numpy(可以指定行名称和列名称) 2、利用字典 数组选择:默认按列索引, loc按标签索引, iloc按数字索引(切片时可以 ...
分类:
其他好文 时间:
2020-01-19 12:54:03
阅读次数:
70
本文翻译自官网:https://prometheus.io/docs/prometheus/latest/querying/examples/ 简单时间序列选择 Return all time series with the metric http_requests_total: 返回指标 http ...
分类:
其他好文 时间:
2020-01-18 13:12:12
阅读次数:
119
Series 和 DataFrame Pandas库基本运用 Series 包含一维索引的一组数据 DataFrame 包含 index 和 column 两个轴 Panel 一种三维数据容器 import pandas as pd import numpy as np from pandas im ...
分类:
其他好文 时间:
2020-01-16 22:13:47
阅读次数:
66