Consider whether your question would be better at http://statistics.stackexchange.com. Statistics is the mathematical study of using probability to infer characteristics of a population from a limited number of samples or observations.

learn more… | top users | synonyms (1)

1
vote
1answer
15 views
+50

how to interpret IRStatisticsImpl data in mahout

i want to read the IRStatisticsImpl data but have some problems: my result is: ...
-3
votes
0answers
12 views

What is algebraic statistics and why is it useful? [closed]

Algebraic statistics seems to be a relatively new field that is largely unknown to the common statistician? What can algebraic statistics do that more conventional methods cannot?
24
votes
1answer
2k views

Is there a good math/stats library for Scala?

I'm looking for a good open source library for scala for math and statistics. Hopefully something like Apache Math or Colt, but implemented in Scala. Can anyone point me in the right direction?
2
votes
2answers
15k views

How to draw probability density function in MatLab?

x = [1 2 3 3 4] cdfplot(x) After Googling, I find the above code will draw a cumulative distribution function for me in Matlab. Is there a simple way to draw a probability density function? To ...
0
votes
2answers
27 views

Using tapply in a function/loop that will replace variable name for the length of the columns of the dataframe

In R, I have a dataset (which I call star) of records with about 50 appended demographics (each demographic can be called var1, var2, var3, etc). I have split the dataset in ~10% groups by using the ...
4
votes
2answers
337 views

Univariate outlier detection

This time I won't be asking a direct question on how to detect outliers as I did before in one of my questions. I did read some posts related to this topic but didn't get what I needed. I have a set ...
0
votes
1answer
25 views

Training Set Balancing Strategies

If you had a training set containing instances for various classes and it was highly imbalanced. What strategy would you use to balance it? Information about real-world population: 7 classes whereof ...
0
votes
2answers
37 views

Finding white pixels on monitor in camera image

I have a camera pointed at a monitor displaying a line of white pixels. I get an array of byte values back from the camera. The area of the camera's view is larger than the space taken up by the ...
2
votes
1answer
27 views

How can I apply fisher test on this set of data (nominal variables)

I'm pretty new in statistics: fisher = function(idxToTest, idxATI){ idxDependent=c() dependent=c() p = c() for(i in c(1:length(idxToTest))) { tbl = table(data[[idxToTest[i]]], data[[idxATI]]) ...
0
votes
1answer
16 views

Most used pointcuts

Regarding AspectJ and AOP in general: What are the most used pointcut primitives? Are there any statistics on this? I think it could be execution and call, is that right? Thanks.
0
votes
0answers
8 views

Realiablilty of unique user identification based only on user agent and IP adress

Is there any data analysis available which could help me quantize the error I make when I'm assuming the combination (user-agent, ip-adress) to be a unique fingerprint of a certain browser? I'm aware ...
-1
votes
0answers
37 views

Mapping gini index [closed]

In my model, there are 3 players, whose income is function of two arbitrary parameters. Say, P(1) = F(a,b) where 0<a<1 , 0<b<1 and P(1) is income of player 1. Similarly for other two ...
0
votes
0answers
15 views

MySql no difference between stddev_samp() and stddev_pop()

In a MySQL database I have a view (view_one) that contains a number of vegetation indices for several agricultural fields. The fields are further devided into plots, transects and points. Here's the ...
3
votes
1answer
79 views

Extracting t-statistic for coefficient of interst from “mlm” object in R

I've used lm() to fit multiple regression models, for multiple (~1 million) response variables in R. Eg. allModels <- lm(t(responseVariablesMatrix)~modelMatrix) This returns an object of class ...
3
votes
1answer
172 views

Google analytics results differ between iframe and parent

We are having trouble with analytics results not matching up between the parent page and iframe child. We're aware that tracking shouldn't be about solid numbers, but our differences are too big to ...
23
votes
2answers
1k views
+400

Getting statistics from Google Play Developers with an API

I am in charge of developing a website which should be able to show statistics from both Apple's app store and Google Play Store to clients, so they can easily see what's going on. I have figured out ...
0
votes
1answer
20 views

bin/group numeric vectors of different length

I have numeric vectors with different lengths, ranging from 300 to 500. I would like to 'normalize' them to a length of 100, i.e. for a vector of length 300 I take the mean of 3 values, for a vector ...
0
votes
1answer
41 views

Directory Stats command line interface?

Windirstat/ Kdirstat/ Disk Inventory X has been nothing short of revolutionary in file managment. Why is there no text-only command line equivalent? I'd need it for SSH administration of my file ...
0
votes
1answer
42 views

Frequencies for a normal distribution

How to get frequencies that reflect a normal distribution for each integer 1...400. Values 1 and 400 would have the minimum frequency of 1, what would the frequencies be for the other values? Also, ...
0
votes
2answers
38 views

R - cut a vector

I have 503 datapoints and I want to cut away the last 250 to get the 253. I tried cut ,but these function only gives me groups back... How can I do that in R?
0
votes
2answers
61 views

Perl fast matrix multiply

I have implemented the following statistical computation in perl http://en.wikipedia.org/wiki/Fisher_information. The results are correct. I know this because I have 100's of test cases that match ...
0
votes
0answers
7 views

count pedestrians with Google Analytics

I'm developing software for coworking centre. Main task of that system is to track visitors and show how much they must pay. Also customer wants to have some kind of analytics. I should say that there ...
-2
votes
0answers
9 views

Text Data Statistics [closed]

I want to scrape a job site then run a statistical analysis on the data over a number of years to find the top used keywords, top locations, etc based on the number of occurrences/frequency of words ...
-1
votes
1answer
26 views

correlation test between repeated measures variables using Roy (2006) method [closed]

I'm trying to calculate the correlation coefficient between two variables with repeated measures both. I got eight different individuals and I measure their thickness three times using one device ...
0
votes
1answer
31 views

Errors with PCoA in R due to large dataset

For my workproject I have to perform a PCoA (principal coordinate analysis aka multidimensional scaling). However when using R to perform this analysis I run into a few problems. The function ...
0
votes
0answers
13 views

when to aggregate when time series forecasting

I have a some historical sales data for various product SKUs, including category information ("department" "category", "subcategory"). I want to use this to generate sales curve (a baseline forecast ...
0
votes
1answer
23 views

How to produce a data set in MATLAB in which variables will correlate to a prespecified level?

I'm looking to create a data set with three columns and an arbitrary number of rows. I'd like column 1 to have a Pearson correlation .20 with column 2, column 1 to correlate .24 with column 3, and ...
0
votes
2answers
56 views

How can I overlay 2 normal distribution curves on the same plot?

I'm brand new to R, and I'm facing a problem without much in- class resources. I need to do something that I'm sure is very simple. Can someone point me in the right direction? This is my task: ...
1
vote
3answers
53 views

How to determine if a current set of data values represent or relate to previous historic data values?

I am trying to develop an method to identify browsing pattern of a user on the basis of page requests. In a simple example I have created 8 pages and for each page request from the user to the page I ...
10
votes
6answers
333 views

Structuring a Statistical Analysis with R Using Emacs/ESS

I am looking for a way to structure my statistical analysis. I currently use Emacs/ESS and the analysis file turned out quite long. I have started to put parts of the code into sourceable functions in ...
1
vote
1answer
47 views

How can I ensure that a partition has representative observations from each level of a factor?

I wrote a small function to partition my dataset into training and testing sets. However, I am running into trouble when dealing with factor variables. In the model validation phase of my code, I ...
1
vote
1answer
24 views

catch data that creates a table with only one non-empty row or column in R

I am doing a chisq.test on a bunch variables but it unexpectedly failed with: Error in chisq.test(var1, var2) : 'x' and 'y' must have at least 2 levels A quick examination yields that: > ...
1
vote
1answer
54 views

Mahalanobis distance between two vectors

I tried to apply mahal to calculate the Mahalanobis distance between 2 row-vectors of 27 variables, i.e mahal(X, Y), where X and Y are the two vectors. However, it comes up with an error: The ...
-1
votes
1answer
50 views

How to remove multiple outliers from a data.frame in R

Hi I have 5 variables with 1000 observations. So the 5 variables contain lot of outliers like 10,11, 13, 1003, 10987, 1099 and also it contain missing values. So I want to remove multiple outliers. ...
3
votes
2answers
705 views

Is there any numpy autocorrellation function with standardized output?

I followed the advice of defining the autocorrelation function in another post: def autocorr(x): result = np.correlate(x, x, mode = 'full') maxcorr = np.argmax(result) #print 'maximum = ...
-1
votes
0answers
11 views

Confidence interval for statistics other than mean [closed]

Can we get an approximate value for confidence intervals for statistics other than mean (eg. 75%tile, median, etc) without bootstrapping? And is there anyway to generalize that for any kind of ...
9
votes
5answers
9k views

Stepwise Regression using P-Values to drop variables with nonsignificant p-values

I want to use R to perform a stepwise linear Regression using p-values as a selection criterion e.g. at each step dropping variables that have the highest i.e. the most insignificant p-values, ...
2
votes
1answer
35 views

The ideal SVD implementation?

Ofcourse, ideal is subjective. I am doing some research where I need to implement production level code for SVD computation for a rectangular matrix. So here is what I found out, GraphLab and Mahout ...
-3
votes
0answers
15 views

MSc research Topic Statistics [closed]

If any one for good MSc research Topic for Statistics, which is including computing also please tell me, my major subject is stat and I m passionate about computing so if that topic including both ...
0
votes
0answers
26 views

How to un-break a once nice (albeit embarrassingly) parallel algorithm

Imagine you have a big labyrinth with lots of doors, lots of entries and lots of exits, where millions of robots traverse the labyrinth every day. The algorithm that a particular robot will use is ...
12
votes
3answers
6k views

Calculate poisson probability percentage

When you use the POISSON function in Excel (or in OpenOffice Calc), it takes two arguments: an integer an 'average' number and returns a float. In Python (I tried RandomArray and NumPy) it ...
-1
votes
2answers
24 views

Find outliers in a group of double values

I have a list of double values and I want to find outliers in it. Does weka provide any algorithm to settle the problem?
0
votes
2answers
23 views

Expectation Maximization Reestimation

Typically, the re-estimation iterative procedure stops when lambda.bar - lambda is less than some epsilon value. How exactly does one determine this epsilon value? I often only see is written as the ...
0
votes
0answers
39 views

Wilcox test in R for two groups in a distance matrix

I have a matrix which looks like this (its just a head of it): S1 S2 S3 S4 S5 S6 S7 Acetanaerobacterium 3 1 0 ...
0
votes
2answers
3k views

Adding line separator to Gridview

I’m relatively new to ASP.NET and SQL, so what I’m asking maybe a simple question for some, but not for me. What I have is a Grid View that I’m trying to populate softball hitting statistics with. ...
0
votes
0answers
8 views

Stats of web traffic over different ip-address

I am caching traffic history over 8 different Hashtables. But to effectively cache, I want to get the information of traffic distribution over ip-address. Using this, I can effectively distribute keys ...
0
votes
0answers
35 views

Test to indentify change in median in a time-series [migrated]

the question is trivial, but is there any statistical test (can be done in R) to show that the median is changing in a time-series?? For example, if you go to the following link, you would notice ...
0
votes
0answers
34 views

How to calculate mean average of dates using PHP

I have a system that captures attendance data, which gets stored in the database with name of the person and the date of attendance. What the system has to do is to calculate the average of attendance ...
0
votes
4answers
37 views

iOS library to detect app stats

Is there any iOS library which detects various user stats within the app like time spent on a view, number of times app was activated etc.? Any suggestions will be most welcome. Thanks.
5
votes
2answers
113 views

Predict binary occupancy vector from history of vectors

I have a set of binary vectors where each vector represents one day of occupancy in a house and consists of 48 elements (each element for 30 minutes of the day). Each element can be 1 meaning that ...

1 2 3 4 5 62