Developed an automated program in any language which take 12 dependent variable and corresponding independent variables and show the output of least square regression in a form of relations.

Respuesta :

Answer:

Explanation:

var generator = new Random(1);

// Now the nextGaussian() function returns a normal distribution of random numbers with the following parameters: a mean of zero and a standard deviation of one

var draw = function() {

var num = generator.nextGaussian();

var standardDeviation = 60;

var mean = 2003;

// Multiply by the standard deviation and add the mean.

var x = standardDeviation * num + mean;

noStroke();

fill(214, 159, 214, 10);

ellipse(x, 200, 16, 16); };

Hope this will be helpful