Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
376 views

SQL why is SELECT COUNT(*) , MIN(col), MAX(col) faster then SELECT MIN(col), MAX(col)

We're seeing a huge difference between these queries. The slow query SELECT MIN(col) AS Firstdate, MAX(col) AS Lastdate FROM table WHERE status = 'OK' AND fk = 4193 Table 'table'. Scan count 2, ...
7
votes
2answers
194 views

Event correlation and filtering - How to, where-to start?

Got an asynchronous stream of events, where each event has information like - Agency (one of many Agencies possible to be served by my solution) Agent (one of many Agents in an Agency) Served-Entity ...
6
votes
2answers
147 views

How was the cor() function sped up?

Slightly off-topic question, but I was wondering if anybody could tell me when and how the cor() function was improved recently? It is much, much faster than I remember and is now comparable in speed ...
5
votes
4answers
825 views

How can I extract peak values from auto-correlated data in MATLAB?

I have information (20,000 frames of data) about an audio track that I have auto-correlated using: [r,lags] = xcorr(XX,XX,'biased'); And it looks like this: Which hopefully is so far so good. ...
4
votes
1answer
662 views

Basic R - Outputting basic R correlation table -> LaTex or text

I am generating a correlation table with http://myowelt.blogspot.com/2008/04/beautiful-correlation-tables-in-r.html I am not successful, however, in outputting the file to a usable LaTex file or text ...
4
votes
1answer
354 views

Any framework for real-time correlation/analysis of event-stream (aka CEP) in Erlang?

Would like to analyze a stream of events, sharing certain characteristics (s.a. a common source), and within a given time-window, ultimately to correlate those multiple events and draw some inference ...
4
votes
3answers
280 views

How can I find out if two strings are mostly equal (in perl)?

I have a string that I want to compare against an array of strings, and return the array element that most closely matches. I can write a sliding correlator that counts the number of matching ...
4
votes
2answers
594 views

How to efficiently find correlation and discard points outside 3-sigma range in MATLAB?

I have a data file m.txt that looks something like this (with a lot more points): 286.842995 3.444398 3.707202 338.227797 3.597597 283.740414 3.514729 3.512116 3.744235 3.365461 3.384880 Some of ...
3
votes
0answers
76 views

A reliable measure of series similarity - correlation just doesn't cut it for me [migrated]

I'm trying to determine a method to compare one particular time series against about 10,000+ reference time series programmatically, and shortlist those reference time series which can be of interest. ...
3
votes
1answer
121 views

Correlation significance for non-zero null hypothesis using R

I'm testing the correlation between two variables: set.seed(123) x <- rnorm(20) y <- x + x * 1:20 cor.test(x, y, method = c("spearman")) which gives: Spearman's rank correlation rho data: ...
3
votes
1answer
98 views

Boot package in R simple help

If I want to use the the boot function from R`s boot package for obtaining the significance of Pearson correlation coefficient between two vectors should I do it like this boot(re1, cor, R = 1000) ...
3
votes
1answer
167 views

Bootstrap variables correlation in R

My intention was to write several functions aimed at finding the overall similarity between two covariance matrices, either by multiplying them with random vectors and correlating the response vectors ...
3
votes
1answer
80 views

correlation computation with threshold in R

I would like to compute correlations in R. However I have a lot of missing values. So, I would like to admit in the correlations matrix only correlations that were calculated from at least 10 pairs of ...
3
votes
1answer
131 views

Is there a way to calculate correlation in TSQL using OVER Clauses instead of CTE's?

Let's say you have a table with columns, Date, GroupID, X and Y. CREATE TABLE #sample ( [Date] DATETIME, GroupID INT, X FLOAT, Y FLOAT ) DECLARE @date DATETIME = ...
3
votes
1answer
319 views

Tutorial on Autocorrelation?

Ive recently been considering using Autocorrelation for Pitch Detection. However, I am finding it difficult on finding good sources of where to learn autocorrelation, by this I mean sources that make ...
3
votes
3answers
129 views

Display Correlation Tables as Descending List

When running cor() on a times series with a lot of variables, I get a table back that has a row and column for each variable, showing the correlation between them. How can I view this table as a list ...
3
votes
1answer
448 views

Canonical Correlation Analysis in R

I'm using R (and package CCA) and trying to perform regularized canonical correlation analysis with two variable sets (species abundances and food abundances stored as the two matrices Y and X, ...
3
votes
3answers
635 views

R - change size of axis labels for corrplot

Hello using the following with corrplot: require("corrplot") ## needs the corrplot package corrplot(cor(lpp_axis1, lpp_axis2), method=c("number"), bg = "grey10", addgrid.col = "gray50", ...
3
votes
4answers
668 views

find time shift between two similar waveforms

I have to compare two time-vs-voltage waveforms. Because of the peculiarity of the sources of these waveforms, one of them can be a time shifted version of the other. How can i find whether there is ...
3
votes
1answer
369 views

Why do my numbers not match, multivariate t distribution in R mvtnorm

I was trying to program the algorithm for the cdf for the multivariate t-distribution following Genz and Bretz, The reference package in R is mvtnorm. When I was testing my function, I found that my ...
3
votes
1answer
924 views

Correlation in WF 4 on workflow InstanceId

In Windows Workflow Foundation under .NET 4.0, is there a way to correlate operations based on the InstanceId (GUID) of a long-running persisted workflow? For example: Operation 1 creates workflow ...
3
votes
2answers
6k views

Calculate autocorrelation using FFT in matlab

I've read some explanations of how autocorrelation can be more efficiently calculated using the fft of a signal, multiplying the real part by the complex conjugate (fourier domain), then using the ...
3
votes
3answers
3k views

R: How to calculate correlation - cor() - for only a subset of columns?

I have a dataframe and would like to calculate the correlation (with Spearman, data is categorical and ranked) but only for a subset of columns. I tried with all, but R's cor() function only accepts ...
2
votes
3answers
71 views

determining “how good” a correlation is in matlab?

I'm working with a set of data and I've obtained a certain correlations (using pearson's correlation coefficient). I've been asked to determine the "quality of the correlation," and by that my ...
2
votes
1answer
72 views

cor() behavior in R different between individual vectors and data.frame

i'm trying to get the Pearson correlation coefficient for all rows in a data frame relative to each other. there are values that are empty (NA) and this seems to be presenting a problem that I don't ...
2
votes
1answer
76 views

Workflow services correlation

I would like to implement next workflow scenario: I have workflow service with two branches. Operation2 (Receive activity) is correlated with CorrelationHandle “handle2” which is initialized from ...
2
votes
2answers
101 views

Problem with finding correlation of two variables in a huge data set in R?

I've got a huge data set with six columns (call them A, B, C, D, E, F), about 450,000 rows. I simply tried to find the correlation between columns A and B: cor(A, B) and I got [1] NA as a result. ...
2
votes
1answer
124 views

Scheduling child activity that implements an interface with input parameters

public sealed class Parent : NativeActivity { public Parent() { Childrens = new Collection<Activity>(); Variables = new Collection<Variable>(); ...
2
votes
1answer
419 views

How to get the correlation between two timeseries using Pandas

I have two sets of temperature date, which have readings at regular (but different) time intervals. I'm trying to get the correlation between these two sets of data. I've been playing with Pandas to ...
2
votes
2answers
253 views

Matlab: How to generate a 4x1 matrix of random variables, assuming a 4x4 correlation matrix?

I start with 4 time series, labelled A, B, C, D. I generate the following: A 4x1 matrix of means. A 4x1 matrix of standard deviations. A 4x4 correlation matrix, by taking 30 samples from each time ...
2
votes
2answers
2k views

Pearson's Coefficient and Covariance calculation in Matlab

I want to calculate Pearson's correlation coefficent in Matlab (without using Matlab's corr function). Simply, I have two vectors A and B (each of them is 1x100) and I am trying to calculate the ...
2
votes
1answer
548 views

Why NUMPY correlate and corrcoef return different values and how to “normalize” a correlate in “full” mode?

I'm trying to use some Time Series Analysis in Python, using Numpy. I have two somewhat medium-sized series, with 20k values each and I want to check the sliding correlation. The corrcoef gives me ...
2
votes
2answers
461 views

kissfft scaling

I am looking to compute a fast correlation using FFTs and the kissfft library, and scaling needs to be precise. What scaling is necessary (forward and backwards) and what value do I use to scale my ...
2
votes
4answers
492 views

R: Calculate correlation for a subset of my dataset?

I have a dataset with 20 variables v1 - v20. Now I'd like to use cor(...) to calculate the correlation between v2 and v10 until v15 and v3 and v10 until v15. What's the best way to do this? Do I have ...
2
votes
1answer
753 views

Cross-correlation Code in C# [closed]

HI all, I have been hunting around for some code that implements various correlation coefficients (specifically cross-correlation) in C# to no avail. The one I found alglib has some licensing ...
2
votes
5answers
188 views

MySQL Query to Pull Distinct Id with Multiple WHEREs

I am having a brain freeze with what originally I thought would be a simple query. I have a table like the following: ID DETAILID NAME ------------------------------------------------- 1 ...
2
votes
2answers
306 views

Minimize variance “intuitively”

We have a problem the arises in asset management. I think (and hope) it raises interesting enough questions for this forum to consider it. We made pretty extensive searches of the literature and find ...
2
votes
5answers
1k views

Remove outliers from correlation coefficient calculation

Assume we have two numeric vectors x and y. The Pearson correlation coefficient between x and y is given by cor(x, y) How can I automatically consider only a subset of x and y in the calculation ...
2
votes
1answer
118 views

Graph correlation discovery algorithm

I'm not a mathematician, so I'll try to describe this in a layperson's terms. I'm trying to take two time series, which could represent any variable quantity, maximum daily temperature, stock price ...
2
votes
1answer
361 views

Accurate signal delay calculation in Python

I'm trying to calculate the lag between two signals in Python using cross correlation. The two signals are almost identical except for a very small timelag. I've tried numpy.correlate and ...
2
votes
1answer
694 views

Matlab: correlation number

I have a 2 vectors of numbers of either 1 or -1. What are the standard tools on Matlab that would help me calculate a correlation number between the two vectors? Thanks in advance!
2
votes
1answer
260 views

HT create a new vector in data frame that takes correlation of existing vectors

I have a time series of two indexes, with each row representing the closing price on the same day. I'd like to go to row 30 and lookback over the last 30 'days' and calculate the pearson correlation. ...
2
votes
3answers
836 views

How to do: Correlation with “blocks” (or - “repeated measures” ?!)?

I have the following setup to analyse: We have about 150 subjects, and for each subject we performed a pair of tests (under different conditions) 18 times. The 18 different conditions of the test are ...
1
vote
1answer
35 views

How to use the GSL implementation of the Pearson correlation coefficient?

I have two vectors of floats, x and y, and I want to compute the Pearson correlation coefficients. As I have to do it on a lot of data (for instance 10 millions different vectors x and 20 thousand ...
1
vote
1answer
37 views

Can I perform autocorrelation / lag analysis on a zoo object in R with non-regular time steps? If so, how?

Can I perform autocorrelation / lag analysis on a zoo object in R with non-regular time steps? If so, how? The only other post I could find here dealt with regular time series. I have a sequence of ...
1
vote
1answer
35 views

table of correlation values

If you run the following code you will end up with a cell array composed of a correlation value in CovMatrix(:,3) and the name of the data used in calculating the correlation in CovMatrix(:,1) and ...
1
vote
2answers
64 views

multiple dimension correlation in c#

ive got two N-dimensional series of points, each of length M.. the objective is to correlate them and calculate the correlation coefficient.. using formulae for variance, covariance and standard ...
1
vote
0answers
86 views

how to calculate correlation with a sliding window?

I have a zoo object called aux with yearly data from 1961 to 2009: x$nao x[, 2] 1961 -0.03 63.3 1962 0.20 155.9 1963 -2.98 211.0 I want to calculate the correlation between the two ...
1
vote
1answer
68 views

Significance test on the difference of Spearman's correlation coefficient

I have got a human-rated set of ranking (HUMAN-RANKING), a set of ranking generated by the presently used, popular method (PRESENT-RANKING), and finally a set of ranking generated by my purposed ...
1
vote
1answer
65 views

Correlation in text using R

My data looks like (example) ID Col1 Col2 1232 ABCSD abd 2342 ABCSD esw 7643 ABCSD rty 9821 ETHS fvc I have 2845428 such rows. I want to find out how correlated each ...

1 2 3