python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can I find MLE estimates for the parameters in the function below?
I have a new function given which I would like to estimate its parameters; a,b,alpha,vartheta using MLE. How do I make an estimation?
EMHL<-function(a,b,alpha,vartheta) {
(2*a*b*alpha*vartheta*
...
Bakang
Votes: 0
Answers: 1
Scipy Minimize Ignores the Constraints
I want to estimate the parameters of a model using maximum-likelihood method. The model has 6 parameters A, n, B, w1, w2, and w3 and I know that the true values of them are 180, 0.5, 1.5, 0.35, 0.45, ...

H2H
Votes: 0
Answers: 1
How to get maximum loglikelihood in python and fit parameters of a normal distribution and a t-student?
I am working in python and I have some performance data of some actions
DailyReturn = [0.325, -0.287, ...]
I've been trying to fit a normal distribution and a student's t-distribution to the density h...
physics
Votes: 0
Answers: 1
Stochastic parameter estimation
I have made a pandemic stochastic simulator which takes probabilities of an infection, recovery or neither and uses a gillespie algorithm with vectors to determine the number of people in each categor...
Matthew Ruddy
Votes: 0
Answers: 1