Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
11answers
1k views

Detecting an online poker cheat

It recently emerged on a large poker site that some players were possibly able to see all opponents cards as they played through exploiting a security vulnerability that was discovered. A naïve ...
7
votes
8answers
1k views

R and SPSS difference

i will be analysing vast amount of network traffic related data shortly. i will pre-process the data in order to analyse it. i have found that R and SPSS are among the most popular tools for ...
4
votes
3answers
168 views

Making predictions from a CV

I have a database with many CVs, including structured data of the gender, age, address, number of years of education, and many other parameters of each person. For about 10% of the sample, I also ...
3
votes
1answer
73 views

ICA - Statistical Independence & Eigenvalues of Covariance Matrix

I am currently creating different signals using Matlab, mixing them by multiplying them by a mixing matrix A, and then trying to get back the original signals using FastICA. So far, the recovered ...
3
votes
1answer
94 views

How to test difference among several time series using R

i have many time series, each one representing a plant species. I think there is a pattern dependent on the woody density. High woody density species just flower between rain periods. Low woody ...
2
votes
1answer
77 views

Which R functions are useful for analysis of an investment strategy's profitability? [closed]

I have multiple variations of an automated strategy for trading certain investment vehicles. For each of these variations I have cross-validated backtests on historic data. I need to pick the ...
2
votes
3answers
100 views

How to distinguish photo from text image

I am writing OCR recognition program. It works fine with scanned texts, however, there are two problems: It gives false positives on photos (some rubbish random text like "bkigopes") It works quite ...
2
votes
4answers
167 views

Pure statistical, or Natural Language Processing engine?

What are the statistical engines that yield better results than the OpenNLP suite of tools, if any? What I'm looking for is an engine that picks keywords from texts and provides stemming on those ...
2
votes
1answer
332 views

How to fill in the 'holes' in an irregular spaced grid or array having missing data?

Does anyone have a straight forward Delphi example of filling in a grid using Delauney Triangles or kriging? Either method can fill a grid by 'interpolating.' What do I want to do? I have a grid, ...
1
vote
1answer
74 views

GNU R, VennDiagram, and making a complement diagram

I have been working on Venn Diagrams in GNU R. I have tried using the packages venneuler and VennDiagram. I find that VennDiagram has a lot more granular control, but it seems to lack the ...
1
vote
2answers
110 views

Find statistical correlations in a relational database

I have a large SQL database of associations between state features and a reward metric. e.g. A ^ B ^ C ^ D ^ Action(E) => 0.1 F ^ G ^ W ^ D ^ Action(R,P,H) => 0.9 A ^ T ^ U ^ Y ^ Action(A,S) ...
1
vote
1answer
78 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
92 views

Statistically optimize a genetic algorithms selection operator

I am familiar with the methods of selection for genetic algorithms such as stochastic universal sampling, roulette wheel, tournament and others. However, I realize that these methods are close to ...
0
votes
1answer
26 views

Expectation maximization algorithm implementation with NaiveBayes

I've implemented the Naive-Bayes Document classification with good text filtration and i have accepted statistical results with a good accuracy , i need to enhance my results using an EM algorithm . ...
0
votes
1answer
71 views

How to calculate statistical significance of conversion rate of several goals?

I am making a python/django split testing or a/b testing library for my own use. However I don't know how to calculate if my test is statisically significant. I have no knowledge of statistics, so I ...
0
votes
1answer
41 views

Predict the execution time of query [closed]

I want to create a statistical model which predicts the execution time of query from previous data. I will be having query: Start time End time parameters query result size I am thinking about ...
-1
votes
1answer
54 views

Discount Coupons Project-.nextGaussian()

I am working on an assignment for my computer science course and in this assignment we have to generate random coupons with a value of between $1000 and $5000. I have most of it done but our teacher ...