You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
earlbellinger
changed the title
Use statistical bootstrapping to estimate error on amplitude coefficients
Use Monte Carlo methods to estimate error on model parameters
Oct 22, 2015
Bootstrapping won't work - instead we need to use Monte Carlo. It's easy enough: with some number of times --num_perturbations, we perturb each observation's magnitude with normal noise whose standard deviation is that observation's uncertainty. Then we report medians and standard deviations for period (if unspecified), amplitudes, phases, fitted magnitudes, and also parameters like Phi_31.
Why params like Phi_31? Because 1/N sum_N (Phi_1 - 3 Phi_3) % 2pi is not equal to [(1/N sum_N Phi_1) - (3/N sum_N Phi_3)] % 2pi.
I like the idea of weighing each model by its goodness of fit. However, R^2 isn't a good choice for doing this because its value can be negative. Instead we should weigh each model by 1/MSE.
We can report weighted medians instead of just medians.
We could also do weighted std's but that's just a choice -- probably keep them unweighted.
There is no accepted general method for computing standard error on Lasso coefficients. To remedy this, we might make use of bootstrapping.
Here we can discuss the possibilities for this addition, such as:
The text was updated successfully, but these errors were encountered: