PP: Tripoles: A new class of relationships in time series data
Problem:
?? mining relationships in time series data; A new class of relationships in time series data.
traditional methods: discover pair-wise relationships.
Introduction:
Challenge: discovery of complex patterns of relationships between individual time-series. ?? what does this mean?
A common type of relationship in time series data is pairs of time-series with strong Pearson correlations.
In this paper, we define a novel relationship across three time series.
tripole: a group of three time-series, one root node/ two leaf nodes.
Note that a tripole is interesting only if correlation ofT0 withT1+2 is much stronger than correlation of T0 with T1 or T2 individually。
a formal study of tripole and explore their utility in different domains:
需要思考清楚,这个tripole pattern适用于什么domains之下,比如他可以适用于交通数据transportation data/ sea level pressure data 都和区域有关,那如果对于天气,生产,消费的time series关系是否适用,需要认真思考一下。但是我奇怪为什么要衡量T0 and T1+T2的相关性,这种现象在我们的数据中,有什么特殊的代表特征吗。
这种tripole现象,以期并没有进行系统的研究,因此,如何定义tripole,如何发现tripole,如何评估/解释发现的tripole成为了重要的问题。
define; measures to assess its interestingness; discovery with efficiency;
DEFINITIONS:
N time-series, {T1,T2,T3...Tn}
tripole: (T0: T1, T2); root; leaves;
Strength;
Note that while there could be other ways to combine the information in the two leaves, we chose the sum for its simplicity and ease of interpretation.
Jump; 用来判断这个tripole的有趣程度。
PROPOSED APPROACH:
how to discover tripoles in time-series data.
主要描述提出了节约计算的发现tripoles的方法。
EXPERIMENTAL RESULTS AND EVALUATION
两个数据库,海平面压力数据库,location, time series data. 神经影像学数据库,
用到了假设检验,p-value;
PHYSICAL INTERPRETATION OF TRIPOLES
Further validation and study of these tripoles by domain experts could possibly explain the phenomenon that results in the manifestation of these tripoles.
问题:tripole的物理意义应该由该领域的专家进行解释,而且是could possibly explain the phenomenon, 比较弱势的描述。
解释实例:大气中的遥相关,
PP: Tripoles: A new class of relationships in time series data的更多相关文章
- PP: Toeplitz Inverse Covariance-Based Clustering of Multivariate Time Series Data
From: Stanford University; Jure Leskovec, citation 6w+; Problem: subsequence clustering. Challenging ...
- PP: A dual-stage attention-based recurrent neural network for time series prediction
Problem: time series prediction The nonlinear autoregressive exogenous model: The Nonlinear autoregr ...
- Programming Entity Framework 翻译(1)-目录
1. Introducing the ADO.NET Entity Framework ado.net entity framework 介绍 1 The Entity Relationship Mo ...
- JPA 教程
Entities An entity is a lightweight persistence domain object. Typically an entity represents a tabl ...
- 使用Python一步一步地来进行数据分析总结
原文链接:Step by step approach to perform data analysis using Python译文链接:使用Python一步一步地来进行数据分析--By Michae ...
- [转载]NoSQL by Martin Flower
============================================================== URL1 nosql ========================== ...
- vc++ 内存连续读写操作
//初始化内存 int *data=(int*)malloc(sizeof(int)*4); ZeroMemory(data, sizeof(int)*4); int *m=(int*)malloc( ...
- Understanding Convolution in Deep Learning
Understanding Convolution in Deep Learning Convolution is probably the most important concept in dee ...
- easyui源码翻译1.32--Tabs(选项卡)
前言 使用$.fn.tabs.defaults重写默认值对象.下载该插件翻译源码 选项卡显示一批面板.但在同一个时间只会显示一个面板.每个选项卡面板都有头标题和一些小的按钮工具菜单,包括关闭按钮和其他 ...
随机推荐
- cesium1.65api版本贴地贴模型标绘工具效果(附源码下载)
前言 cesium 官网的api文档介绍地址cesium官网api,里面详细的介绍 cesium 各个类的介绍,还有就是在线例子:cesium 官网在线例子,这个也是学习 cesium 的好素材. 内 ...
- 链接github
引用https://www.cnblogs.com/u-1596086/p/11588957.html 第一步:登录git创建项目 右上角头像按钮,点击your repositories 接着绿色按钮 ...
- opencv —— setMouseCallback 响应鼠标操作事件
鼠标操作:setMouseCallback 函数 借助回调函数,实现对鼠标每次操作的相应,即每进行一步鼠标操作,都会执行一次回调函数. void setMouseCallback(const stri ...
- Mybaits(9)MyBatis级联-2
一.鉴别器和一对多级联 1.完善体检表,分为男雇员体检和女雇员体检表 (1)持久层dao编写 package com.xhbjava.dao; import com.xhbjava.domain.Ma ...
- 两种从 TensorFlow 的 checkpoint生成 frozenpb 的方法
1. 从 ckpt-.data,ckpt-.index 和 .meta 生成 frozenpb import os import tensorflow as tf from tensorflow.py ...
- RPC远程过程调用(Remote Procedure Call)
RPC,就是Remote Procedure Call,远程过程调用 远程过程调用,自然是相对于本地过程调用 本地过程调用,就好比你现在在家里,你要想洗碗,那你直接把碗放进洗碗机,打开洗碗机开关就可以 ...
- mongo shell
mongo shell mongo 连接 本地 mongo # 连接127.0.0.1:27017 远程 mongo "mongodb://mongodb0.example.com:2801 ...
- 【sklearn文本特征提取】词袋模型/稀疏表示/停用词/TF-IDF模型
1. 词袋模型 (Bag of Words, BOW) 文本分析是机器学习算法的一个主要应用领域.然而,原始数据的这些符号序列不能直接提供给算法进行训练,因为大多数算法期望的是固定大小的数字特征向量, ...
- Python3 基本语法 学习笔记
如何定义python源文件的文件编码 如果想要定义文件代码的编码,一个特殊的注释应该放到源文件的第一或第二行,例如: # coding=<encoding name> 或 使用一种大多数编 ...
- 洛谷【P5004 专心OI - 跳房子】 题解
题目链接 https://www.luogu.org/problem/P5004 洛谷 P5004 专心OI - 跳房子 Imakf有一天参加了PINO 2017 PJ组,他突然看见最后一道题 他十分 ...