Questions tagged [scale-invariance]
47 questions
10
votes
1 answer
Scale-invariant analysis of time series
When developing a general purpose time-series software, is it a good idea to make it scale invariant? How would one do that?
I took a time series of around 40 points, and then multiplied by factors ranging from 10E-9 to 10E3 and then ran through the…

Samik R
- 233
- 1
- 6
10
votes
3 answers
Why feature scaling only to training set?
I was following the book "Hands-On Machine Learning with Scikit-Learn & TensorFlow" by "Aurelien Geron".
The following remark was made about feature scaling : -
As with all the transformations, it is important to fit the scalers to
the training…

Upendra01
- 1,566
- 4
- 18
- 28
7
votes
2 answers
Choice of weight function in Moran's I
I'm doing an autocorrelation analysis for a spatially distributed collection of observations. To perform my analysis, I am using Moran's I statistic.
My questions are: (1) What are the implications and benefits of using different weighting…

pariser
- 71
- 1
- 3
7
votes
1 answer
Is there a "central distribution" for distributions for which the CLT doesn't apply?
The central limit theorems state roughly that under a certain set of properties of a sampling process, the distribution of a statistic from that sample will converge in distribution to the normal distribution.
As the canonical example, let me take…

user56834
- 2,157
- 13
- 35
7
votes
1 answer
Parametrisation invariance/covariance of the Jeffreys prior
I've been trying to understand what exactly is meant by parametrisation invariance of the Jeffreys prior.
Already I've read here that invariance is technically not the best term to use, and that it's more a case of covariance. My understanding of…

Timsey
- 521
- 2
- 6
6
votes
1 answer
RMSE is scale-dependent; is RMSE%?
I've got a graph of RMSE% vs. unit size and it declines nicely. Is this scale-dependence or does the "%" compensate for that?
$$ \text{RMSE%} = 100\% \cdot \frac{\sqrt{\frac{1}{n}\Sigma_{i=1}^n (y_i - \hat{y}_i)^2}}{\bar{y}} $$

J Kelly
- 507
- 3
- 13
6
votes
2 answers
The meaning of scale and location in the Pearson correlation context
According to wikipedia, pearson correlation is scale and location invariant.
Does scale refer to "variance" and location refer to "mean" ?
Thanks.

johnny
- 125
- 1
- 6
5
votes
1 answer
Inconsistent delta.chisq.scaled using Lavaan and semTools?
I've recently been using Lavaan and semTools to test for measurement invariance in confirmatory factor analysis (CFA) models and I noticed an (apparent) inconsistency in a calculation that confused me. When you use the "measurementInvariance"…

Jeremyjaytaylor
- 161
- 1
- 10
5
votes
2 answers
Showing $\mathbb{E}[T_n] = \theta \mathbb{E}_1[T_n]$ is scale equivariant?
This is question 5 is from Staudte and Sheather (1990), Robust estimation and testing.
Let $X_1,\ldots , X_n$ be i.i.d with $$ F_\theta = F(\frac{x}{\theta}),\quad x>0;\theta>0.$$ Assume that $T_n = T_n(X_1,\ldots ,X_n)$ is scale equivariant. Show…

user7045
- 133
- 5
5
votes
3 answers
Linear regression - results depending on the scale of the inputs
Why is there a difference in p-values for the following model
$$
y = a + b_1x_1 + b_2 x_2 + b_{12}x_1x_2 + \epsilon
$$
depending on the scale of the x's?
> # response variable
> y <- rnorm(8, mean=17, sd=1.2)
>
> # model 1
> x1 <- c(1, -1, -1, -1,…

user7064
- 1,685
- 5
- 23
- 39
4
votes
3 answers
What does it mean to say that a regression method is (not) "scale invariant"?
I was just studying partial least squares regression, and I read that it is "not scale invariant". What does "scale invariant" mean, and why is partial least squares, and why would a regression methodology in general be, not "scale invariant"? Some…

The Pointer
- 1,064
- 13
- 35
4
votes
1 answer
Are confidence intervals scale-invariant?
Suppose I estimate a mean and construct some sort of confidence intervals (e.g. based on normal approximation or bootstrapped) around the mean. I now wish to rescale my mean from, say, the mean number of infections per hundred persons to the mean…

user3614648
- 319
- 2
- 9
4
votes
2 answers
Do parameters stay unchanged when GARCH is scaled?
Let's say we have a GARCH($1,1$) process specified as follows:
$y_t = \epsilon_t \sqrt h_t, \quad \epsilon_t \sim N(0,1) \quad \text{i.i.d.}$
$h_t = a_0 + a_1 y^2_{t-1} + b_1 h_{t-1}.$
If we were trying to estimate the parameters $\Theta = (a_0,…

Vykta Wakandigara
- 423
- 3
- 8
4
votes
3 answers
Why can scale invariance cause a loss of explanatory power?
Gary King made the following statement on Twitter:
scale invariance sounds cool but is
usually statisticians shirking
responsibility & losing power by
neglecting subject matter info
What is an example of this phenomena, where scale…

Shane
- 11,961
- 17
- 71
- 89
3
votes
1 answer
Invariance of maximum likelihood estimates to rearrangements of parameters/constants in the model?
I know that maximum likelihood estimates are invariant to re-parametrization (https://stats.stackexchange.com/a/335368/267430). Is the MLE also invariant to rearrangements of the constants and parameters in the statistical model? Is this somehow…

Mon2
- 33
- 2