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重写默认值对象.下载该插件翻译源码 选项卡显示一批面板.但在同一个时间只会显示一个面板.每个选项卡面板都有头标题和一些小的按钮工具菜单,包括关闭按钮和其他 ...
随机推荐
- 零基础Python应该怎样学习呢?(附视频教程)
Python应该怎样学习呢? 阶段一:适合自己的学习方式 对于零基础的初学者来说,最迷茫的是不知道怎样开始学习?那这里小编建议可以采用视频+书籍的方式进行学习.看视频学习可以让你迅速掌握编程的基础语法 ...
- flex布局小结
2009年,W3C 提出了一种新的方案----Flex 布局,可以简便.完整.响应式地实现各种页面布局.目前,它已经得到了所有浏览器的支持. Flex 是 Flexible Box 的缩写,意为&qu ...
- vue中报错Do not use built-in or reserved HTML elements as component id details
原因是定义了一个叫做details的comonent 跟现有的html网页中的标签重合 export default { name: 'details', data () { return { equ ...
- 树莓派搭载CentOS7系统初始配置
系统属性: 树莓派型号:3b SD:32GB 系统:CentOS-Userland-7-armv7hl-RaspberryPI-Minimal-1908-sda.raw 开机配置: 连接树莓派: 配件 ...
- 剑指offer-面试题44-数字序列中某一位的数字-脑筋急转弯
/* 题目: 数字以0123456789101112131415…的格式序列化到一个字符序列中. 在这个序列中,第5位(从0开始计数,即从第0位开始)是5,第13位是1,第19位是4,等等. 请写一个 ...
- 高并发系统:消息队列MQ
注:前提是知道什么是消息队列.不懂的去搜索各种消息队列入门(activeMQ.rabbitMQ.rocketMQ.kafka) 1.为什么要使用MQ?(MQ的好处:解耦.异步.削峰) (1)解耦:主要 ...
- GUI之JavaFX
一.JavaFX不深究系列,目的只是为了尝试使用GUI的方式来生成桌面应用. 二.JavaFX是一个强大的图形和多媒体处理工具包集合,它允许开发者来设计.创建.测试.调试和部署富客户端程序,并且和Ja ...
- C. Long Beautiful Integer
题目思路还是很直接,首先按要求生成字符串.如果该目标字符串小于原字符串,那么从第k位开始,找到最后一个非9的位置,++,同时如果有9,要考虑进位(一开始没有考虑WA了一次). 犯了一个错误,就是比较字 ...
- 【计算语言学实验】基于 Skip-Gram with Negative Sampling (SGNS) 的汉语词向量学习和评估
一.概述 训练语料来源:维基媒体 https://dumps.wikimedia.org/backup-index.html 汉语数据 用word2vec训练词向量,并用所学得的词向量,计算 pku_ ...
- 输出redis cluster集群所有节点指定的参数的配置
需要:实现类似redis-trib.rb call 命令的功能,输出redis cluster集群所有节点指定的参数的配置 redis-trib.rb的输出 [redis@lxd-vm3 ~]$ re ...