Top "Statistics" questions

Consider whether your question would be better asked at https://stats.

T-test in Pandas

If I want to calculate the mean of two categories in Pandas, I can do it like this: data = {'Category': […

python pandas scipy statistics hypothesis-test
How can I check the last time stats was run on Oracle without using OEM

I want to check the last time stats was run on my Oracle 10g server. I would normally do this …

oracle oracle10g sqlplus statistics
how to calculate the Euclidean norm of a vector in R?

I tried norm, but I think it gives the wrong result. (the norm of c(1, 2, 3) is sqrt(1*1+2*2+3*3), but it returns 6.. …

r vector statistics
predict.lm() in a loop. warning: prediction from a rank-deficient fit may be misleading

This R code throws a warning # Fit regression model to each cluster y <- list() length(y) <- …

r statistics linear-regression lm
RMSE (root mean square deviation) calculation in R

I have numeric feature observations V1 through V12 taken for a target variable Wavelength. I would like to calculate the …

r statistics equation
Plotting a 3D surface plot with contour map overlay, using R

I have a 3-tuple data set (X,Y,Z points) that I want to plot using R. I want to …

r 3d statistics plot
Standard deviation of generic list?

I need to calculate the standard deviation of a generic list. I will try to include my code. Its a …

c# math statistics standard-deviation
How to plot empirical cdf in matplotlib in Python?

How can I plot the empirical CDF of an array of numbers in matplotlib in Python? I'm looking for the …

python numpy statistics matplotlib scipy
Geometric Mean: is there a built-in?

I tried to find a built-in for geometric mean but couldn't. (Obviously a built-in isn't going to save me any …

r statistics built-in geometric-mean
Stepwise regression using p-values to drop variables with nonsignificant p-values

I want to perform a stepwise linear Regression using p-values as a selection criterion, e.g.: at each step dropping …

r statistics regression p-value