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)
[Python - scipy]: Genarate random samples from custom multivariate Probability Density Function (PDF)
I want to generate random sample (vector X):
X = [x1, x2, x3, ..., x_d]
where X follows a custom multivariate Probability Density Function.
I am using Python - scipy and I overvide the PDF function t...

vasilis siatras
Votes: 0
Answers: 1
Resample a distribution conditional on another value
I would like to create a series of simulated values by resampling from empirical observations. The data I have are time series of 1-minute frequency. The simulations should be made on an arbitrary num...
RVA92
Votes: 0
Answers: 1
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
getting residue of linear regression
if a Best Fit calculation routine finds Slope, intercept of linear regression of x and y, how to find residue?.
- for (i=0;i<n;i++)
y_fit[i]=Slope*x[i]+Intercept;
residue = sum of a...
umc
Votes: 0
Answers: 1