Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
355 views

What is wrong with this python function from “Programming Collective Intelligence”?

This is the function in question. It calculates the Pearson correlation coefficient for p1 and p2, which is supposed to be a number between -1 and 1. When I use this with real user data, it sometimes ...
3
votes
4answers
840 views

Collaborative Filtering Program: What to do for a Pearson Score When There Isn't Enough Data

I'm building a recommendation engine using collaborative filtering. For similarity scores, I use a Pearson correlation. This is great most of the time, but sometimes I have users that only share a 1 ...
3
votes
4answers
489 views

What is wrong with the pearson algorithm from “Programming Collective Intelligence”?

This function is from the book "Programming Collective Intelligence”, and is supposed to calculate the Pearson correlation coefficient for p1 and p2, which is supposed to be a number between -1 and 1. ...
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
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 ...
1
vote
1answer
60 views

Apache Mahout + Pearson Correlation Ignores Users With Same Preference For Every Item

I'm using Mahout with the Pearson Correlation algorithm to compare and find similar users based on their preferences for several items. The problem I'm running into is that Mahout and/or Pearson is ...
1
vote
1answer
137 views

pearson correlation

I have a dataframe as follows: x <- data.frame(Name=c("a", "b","c", "d", "e"),A=(1:5), B=(2:6), C=(7:11), D=c(1,1,1,1,1)) I want to get a dataframe including all the pearson coefficients of a vs ...
1
vote
1answer
114 views

Need some pointing in the right direction with regards to calculating Pearson's correlation in java

I am trying to calculate Pearsons correlation between 13 variables in a tab delimited text file where each column is a variable. I am using java and was hoping that somebody can give me some guidance ...
1
vote
3answers
1k views

Determining Perfect Hash Lookup Table for Pearson Hash

I'm developing a programming language, and in my programming language, I'm storing objects as hash tables. The hash function I'm using is Pearson Hashing, which depends on a 256-bit lookup table. ...
1
vote
8answers
1k views

Pearson Similarity Score, how can I optimise this further?

I have an implemented of Pearson's Similarity score for comparing two dictionaries of values. More time is spent in this method than anywhere else (potentially many millions of calls), so this is ...
0
votes
2answers
62 views

Pearson Correlation without using zero element in Matlab

I have 2 example vector in Matlab : A = [5,3,3,0,4,1,5,0,2,5,5,0,5,3,4,0,1,4,4,0,4,2]; B = [1,0,0,0,1,0,4,0,0,0,0,4,4,0,1,0,0,0,0,0,0,0]; When, I try to calculate pearson correlation with manual ...
0
votes
2answers
68 views

Error detection code for 33 bytes word detecting zero or one flip in first 32 bytes

Could you please suggest an error detection scheme for detecting one possible bit flip in first 32 bytes of 33 byte message using no more than 8 bit of additional data. Could Pearson hashing be a ...
0
votes
1answer
132 views

Statistical correlation: Pearson or Spearman?

I have 2 series of 45 values in the interval [0,1]. The first series is a human-generated standard, the second one is computer-generated (full series here http://www.copypastecode.com/74844/). The ...
0
votes
0answers
24 views

Which combination of datapoints have the highest correlation?

This may be more of a basic computational algorithm question than a programmatic one If you imagine I have m datapoints, each with n variables. I expect some of the datapoints (correct terminology?) ...
0
votes
2answers
177 views

Pearson perfect hashing

I'm trying to write a generator that produces Pearson perfect hashes. Note that I don't need a minimal perfect hash. Wikipedia says that a Pearson perfect hash can be found in O(|S|) time using a ...
0
votes
1answer
128 views

Pearson Correlation problem

I'm not sure which figures to use below in a problem Im trying to solve that involves using the Pearson Correlation formula. A B C D E F Bob 4 5 4 2 Fra 2 2 2 3 2 Lee 2 4 3 ...
0
votes
1answer
126 views

Finding related texts(correlation between two texts)

I'm trying to find similar articles in database via correlation. So i split text in array of words, then delete frequently used words (articles,pronouns and so on), then compare two text with pearson ...
0
votes
2answers
608 views

How to replace missing value with Pearson Correlation on MATLAB

I have problem with using 'corr' function in MATLAB, a = 1 4 3 2 2 3 3 2 3 2 3 2 4 1 3 2 >> corr(a) ans = 1 -1 ...