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)

0
votes
1answer
62 views

How to build groups with read_csv()?

I have a csv files following this layout : Finances and enterprises Mortgages Mortgages constituted Unidades:Capital loaned (millions euros) ,Total,,RUSTIC,,URBAN,,-Urban. Dwellings,,-Urban. ...
0
votes
0answers
44 views

Elasticsearch, trying to get stats on object in an array

I've walk through a lot of thread to resolve my issue but I think that it's not possible. Perhaps someone will have an idea : I got a mapping including an array of objects (perhaps it's my mistake ?): ...
0
votes
0answers
10 views

Determining optimal subdivisions for partitioning data

I have a set of genomic data in a database that I would like to partition based on the value of a particular column, but I am having trouble trying to come up with the optimal way to subdivide the ...
5
votes
0answers
80 views

How do I perform a Mixed model analysis on my data in SPSS?

In my thesis I'm trying to discover which factors influence the CSR (corporate social responsibility, GSE_RAW) behavior of companies. Two groups of possible factors / variables have been identified: ...
0
votes
0answers
27 views

How to find cross validation accuracy in my project

I am doing project to find out text and non text from car picture using statistical model in matlab. I have 462 trained text component data set and 4664 trained Non text component. Now I pass one car ...
1
vote
2answers
40 views

PostgreSQL statistical mode value

I am using the SQL query SELECT round(avg(int_value)) AS modal_value FROM t; to obtain modal value, that, of couse, not is correct, but is a first option to show some result. So, my question ...
1
vote
2answers
60 views

Interview: random3 function implementation using random2

On recent interview I was asked the following question. There is a function random2(), wich returns 0 or 1 with equal probability (0.5). Write implementation of random4() and random3() using ...
0
votes
0answers
17 views

Gretl - find out if a constant variance is given

I am experimenting with gretl and was wondering if I could compute sth like that: I want to group the residuals for an X in my multiple regression model and estimate the variance of the ...
0
votes
0answers
30 views

Gretl - Find out if a coefficient is different to zero?

I have a multiple regression model and I want to find out with gretl if each coefficient I obtained is siginificantly different from zero(on the 95% level). How can I do that in gretl?
-1
votes
1answer
64 views

Rat in Maze Probability [closed]

I am trying understand what am I missing in my way of solving rat in maze problem... The question and solution is given in this link http://www.ams.sunysb.edu/~jsbm/courses/311/rat-in-maze.pdf ...
0
votes
0answers
13 views

Bayesian probability with uncertain quality of evidence

Suppose a Bayesian updater receives one of a finite number of signals. The device that gives him the signal is of uncertain quality. If it is high-quality the signal is always a perfect signal about ...
-3
votes
1answer
109 views

How to justify the sample size? [closed]

I'm wondering how can I justify my sample size! I have 45 observations and 6 independent variables from which one is control variable. Many thanks,
3
votes
3answers
75 views

Given a list of uneven probabilities, what is chance of at least one occurring? [closed]

I'm writing a Python program that has a list of probabilities. Each probability represents a catastrophic outcome of an event: # doing six different events, the array is the risk of each having a ...
0
votes
1answer
107 views

Anchor plus href and onclick event (tracking)

i got the following anchors to go to the target site and to track the user for stats: <a href="http://target.tld" target="_blank" onclick="$('<img></img>').attr({src: ...
0
votes
0answers
12 views

Hypothesis Testing for 270 instances with only one reference run?

I have a test suit for an optimization problem with 270 problem instances. For all these instances I have a lower bound and a single solution of another algorithm I want to compare with. I do not own ...
0
votes
0answers
46 views

Fitting ARMAX model in SPSS and interpreting results

I'm very new at using SPSS for time series analysis. I would like to fit ARMAX-model using SPSS's forecasting tool. Could someone show me how to do this right? Does anyone know a short tutorial or ...
4
votes
3answers
104 views

How logical negation operator “!” works

I am not trying to solve any particular problem, but trying to learn R and understand its logical negation operator "!" documented on page ...
0
votes
2answers
71 views

How do I calculate a Poisson number in Scala

There is no standard library function to do this. How can I do it efficiently?
0
votes
1answer
100 views

Use R to calculate cohen's Kappa for a categorical rating but within a range of tolerance?

I have a series of ratings (categorical with at least 12 levels) from 2 independent raters. I would like to calculate inter-rater reliability, but allowing for a difference of one level. I.e. Level 1 ...
0
votes
1answer
124 views

Problems with grouping factor, data frame, and tapply

I am very new to R and stats in general and am having trouble getting tapply() to work. I have a data frame with 15 columns and thousands of rows. I made a bunch of logical vectors using something ...
5
votes
3answers
91 views

Product of likelihood too small - R only gives 0

I am trying to compute this posterior distribution in R. The problem is that the numerator, which is the product of a bunch of dbern(p_i, y_i) < 1, is too small. (My n is about 1500). Hence, R ...
0
votes
0answers
28 views

Degree of Freedom of Markov Chains

I have a set of 5000 strings of length 4, where each character in the string can be either A, B, C, or D. 0-order Markov Chain (no dependency), makes a 4*1 array of columns A, B, C, D. 1-order ...
-1
votes
1answer
27 views

Android: get past mobile data stats

I'm trying to obtain the data stats in Android (also WiFi) of a past period. I know there is the TrafficStats class, but it seems to make available just the infos about the current connection. I'd ...
0
votes
3answers
121 views

Matlab plot in histogram

Assume y is a vector with random numbers following the distribution f(x)=sqrt(4-x^2)/(2*pi). At the moment I use the command hist(y,30). How can I plot the distribution function ...
-3
votes
1answer
134 views

What's the minimum sample required for correlation analysis (linear model in R) [closed]

I'm trying to perform correlation analysis with R's linear model lm() I'm wondering what is the reasonable minimum sample for it? Is there any rule for determining that?
0
votes
0answers
71 views

libSVM plotROC using MATLAB giving inconsistent results

I have a binary classification problem. I'm using libSVM with the plotROC, but the AUC values are bizarre. The accuracy, according to the same function, is 24% (908 out of 3741) and the confusion ...
3
votes
0answers
58 views

How do I interact a tensor product with two different `by=var` variables?

An example: library(mgcv) N=1000 x1 = seq(1:N) x2 = log(x1) x3 = sqrt(x1) fac1 = ceiling(rnorm(N)*3) fac2 = ceiling(runif(N)*3) y = fac1*x2 + x1*x2 + x2 + x3*x2 + x2*(x1/x3)^(.8+fac2/10) + ...
0
votes
1answer
36 views

MWTP in R with significantly positive variable for Price - Unexpected Results

I am using the support.CEs package in R for a choice experiment. I am attempting to calculate Marginal Willingness To Pay (MWTP). The package seems to be relatively new, and I have reviewed the CRAN ...
0
votes
4answers
39 views

How to retrieve statistical SQL results with PHP?

After hours of trying and searching the net, I'm giving up and am asking for your help. How to retrieve statistical SQL results with PHP? I created a test table with five entries, with primarily ...
1
vote
2answers
82 views

Why is Matlab signrank function returns the same signed rank statistic values when flipping the signs of the data points?

Why is Matlab signrank function returns the same signed rank statistic values when flipping the signs of the data points? I have a sequence of data points stored in vector x. I use signrank(x) to do ...
0
votes
1answer
41 views

Scipy Guassian_kde Nomalisation

I've been using scipy.stats.gausian_kde but have a few questions about its output. I've plotted the normalised histogram and the gaussian_kde plot on the same graph. Why are the y-values so vastly ...
-1
votes
1answer
69 views

How to write a function to generate a sequence of points in R?

This is the PDF that I am dealing with: fx = 0.3 if (0<=x<1) 0.1 if (1<=x<2) 0.25 if (2<=x<3) 0.15 if (3<=x<4) 0.2 if (4<=x<5) 0 otherwise I have to write a function ...
0
votes
0answers
140 views

big buildings' elevator (number and work process)

Yesterday when i was high, i thought about big buildings and their elevators. Number and way of work of elevators was the problem. When i think about the worst case: (for the tallest building in ...
1
vote
1answer
129 views

Making a custom probability distribution to draw random samples from in SciPy

I'm looking to sum up an arbitrary number of probabilistic distributions of things using a montecarlo type simulation. I'd like to randomly sample continuous distributions of something and add them to ...
3
votes
0answers
139 views

Normalization in multiple-linear regression

I have a data set for which I would like build a multiple linear regression model. In order to compare different independent variable I normalize them by their standard deviation. I used ...
3
votes
1answer
51 views

Density of a Two-Piece Normal (or Split Normal) Distribution

Is there a density function for the two-piece Normal distribution: on CRAN? Thought I would check before I code one. I have checked the distribution task view. It is not listed there. I have looked ...
2
votes
2answers
96 views

Scipy Pearson's correlation returning always 1

I am using Python library scipy to calculate Pearson's correlation for two float arrays. Returned value for coefficient is always 1.0, even if arrays are different. For example: [-0.65499887 ...
0
votes
2answers
107 views

numpy cov (covariance) function, what exactly does it compute?

I assume numpy.cov(X) computes the sample covariance matrix as: 1/(N-1) * Sum (x_i - m)(x_i - m)^T (where m is the mean) I.e sum of outer products. But nowhere in the documentation does it ...
0
votes
3answers
81 views

re-scaling the values between given maximum and minimum, where max is positive and min is negative

I want the re-scale an array of values (both positive and negative floating point values), so that the values lies between say -5 to +5 or say -3 to +2. How can I scale it down. Is there any specific ...
1
vote
0answers
114 views

What statistics module for python supports one way ANOVA with post hoc tests (Tukey, Scheffe or other)?

I have tried looking through multiple stats modules for python but can't seem to find any that support one away ANOVA post hoc tests.
0
votes
0answers
40 views

Error while loading custom package?

Operating system: Ubuntu 12.04 R: 2.15.3 I am trying to load a custom R package that someone sent me. I have installed all the dependencies using > intall.packages() and I have installed the ...
1
vote
1answer
90 views

Statistical Scaling of autocorrelation using numpy.fft

It could well be i am making myself look very stupid just now but is the following the correct way to get interval[1,-1] scaled output from fft based autocorrelation? The scaling should be what ...
1
vote
2answers
145 views

Finding normal distributions overlap using double Integral (dblquad) in MATLAB. Strange behaviour

I am calculating the overlap of two normal bivariate distribution using the following function function [ oa ] = bivariate_overlap_integral(mu_x1,mu_y1,mu_x2,mu_y2) %calculating pdf. Using x as ...
1
vote
1answer
94 views

R: relative frequency in r by factor

I would like to get a table of top 10 absolute and relative frequencies for a variable across other factor variable. I have a dataframe with 3 columns: 1 column is a factor variable, 2nd is other ...
1
vote
1answer
54 views

Random sampling to increase accuracy of pressure estimate?

In our simulations, we have an underlying 2D grid over which a closed curve (red line) can move. Grid cells are coloured, based on the location of their centre, as either inside the curve (green) or ...
0
votes
1answer
51 views

is image a sample or a population

I was wondering if I take one complete gray image, then this image would act as a population or a sample? I needed to take the standard deviation of the image. Matlab uses the standard deviation ...
3
votes
2answers
108 views

Working between Java and R

I am trying to pass a double array into R, sum its values, and return it to Java. Here is what I am trying to do in Java: import org.rosuda.JRI.REXP; import org.rosuda.JRI.Rengine; // Start R ...
1
vote
1answer
33 views

How to execute the version of R which installed in a local folder?

I unpacked the new version of R package and inside a folder I gave commands: ./configure make Now I want to run it, if I give command: $ R Then it runs the older version. and I have no privilege ...
0
votes
4answers
167 views

Call R from JAVA to get Chi-squared statistic and p-value

I have two 4*4 matrices in JAVA, where one matrix holds observed counts and the other expected counts. I need an automated way to calculate the p-value from the chi-square statistic between these ...
2
votes
1answer
48 views

Saving output of t.test to dataframe when using mapply in R

I have two dataframes of the sort a b c 1 2 3 2 3 3 1 2 3 with the same column names. I'm using mapply(t.test, df1, df2) to output the results of a t.text comparing the ...

1 3 4 5 6 7 64