Question

In: Statistics and Probability

If we could draw many random samples from the same population, and each time we ran the exact same regression

 

If we could draw many random samples from the same population, and each time we ran the exact same regression, then we would get the same regression coefficients but different standard errors.

Solutions

Expert Solution

False

coefficients can also change

x <- rnorm(100)
e <- rnorm(100)
y <- 2*x + 5 + e
model <- lm(y~x)
summary(model)

running above code again, coefficients are different

Call:
lm(formula = y ~ x)

Residuals:
     Min       1Q   Median       3Q      Max 
-2.90224 -0.60599  0.06986  0.57724  2.61120 

Coefficients:
            Estimate Std. Error t value Pr(>|t|)    
(Intercept)  5.09043    0.09851   51.67   <2e-16 ***
x            2.05151    0.09796   20.94   <2e-16 ***
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 0.9848 on 98 degrees of freedom
Multiple R-squared:  0.8174,    Adjusted R-squared:  0.8155 
F-statistic: 438.5 on 1 and 98 DF,  p-value: < 2.2e-16

> x <- rnorm(100)
> e <- rnorm(100)
> y <- 2*x + 5 + e
> model <- lm(y~x)
> summary(model)

Call:
lm(formula = y ~ x)

Residuals:
     Min       1Q   Median       3Q      Max 
-3.08156 -0.64059 -0.04581  0.66655  2.32896 

Coefficients:
            Estimate Std. Error t value Pr(>|t|)    
(Intercept)  4.97905    0.09979   49.90   <2e-16 ***
x            1.79899    0.09973   18.04   <2e-16 ***
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 0.9977 on 98 degrees of freedom
Multiple R-squared:  0.7685,    Adjusted R-squared:  0.7662 
F-statistic: 325.4 on 1 and 98 DF,  p-value: < 2.2e-16

Related Solutions

If two random samples, each with n = 60 scores, are selected from a population, and...
If two random samples, each with n = 60 scores, are selected from a population, and the z-score and t statistic are computed for each sample, the t statistics will be less variable than the z-scores.
We draw a random sample of size 49 from a normal population with variance 2.1. If...
We draw a random sample of size 49 from a normal population with variance 2.1. If the sample mean is 21.5, what is a 99% confidence interval for the population mean?
We draw a random sample of size 36 from a population with standard deviation 3.2. If...
We draw a random sample of size 36 from a population with standard deviation 3.2. If the sample mean is 27, what is a 95% confidence interval for the population mean? [26.7550, 28.2450] [25.9547, 28.0453] [25.8567, 28.1433] [26.8401, 27.1599]
We draw a random sample of size 36 from a population with standard deviation 3.2. If...
We draw a random sample of size 36 from a population with standard deviation 3.2. If the sample mean is 27, what is a 95% confidence interval for the population mean?
4 We draw a random sample of size 40 from a population with standard deviation 2.5....
4 We draw a random sample of size 40 from a population with standard deviation 2.5. Show work in excel with formulas a If the sample mean is 27, what is a 95% confidence interval for the population mean? b If the sample mean is 27, what is a 99% confidence interval for the population mean? c If the sample mean is 27, what is a 90% confidence interval for the population mean? d If the sample mean is 27...
Many statistical procedures require that we draw a sample from a population whose distribution is approximately...
Many statistical procedures require that we draw a sample from a population whose distribution is approximately normal. Often we don’t know whether the population is approximately normal when we draw the sample. So the only way we assess whether the population is approximately normal is to examine its sample. Assessing normality is more important for small samples. Below, you’ll see some small samples and you’ll be asked to assess whether the populations they are drawn from can be treated as...
a) If random samples of size 12 are drawn from a population with mean 7 and...
a) If random samples of size 12 are drawn from a population with mean 7 and standard deviation 2 , find the standard error of the distribution of sample means. b) Assume the sample is a random sample from a distribution that is reasonably normally distributed and we are doing inference for a sample mean. Find endpoints of a t-distribution with 0.025 beyond them in each tail if the sample has size n=26. c) Assume the sample is a random...
1. If two samples are drawn independently from the same population, then the sample means will...
1. If two samples are drawn independently from the same population, then the sample means will be the same. true or false? 2. If two samples are drawn independently from the same population, then their sample standard deviations will be the same. true or false? 3. You can find below the results from Tukey's Honestly Significant Difference procedure with familywise significance level 0.05 for the agricultural experiment above. Which of the following can be concluded at this level? diff lwr...
Random and independent samples of 90 recent prime time airings from each of two major networks...
Random and independent samples of 90 recent prime time airings from each of two major networks have been considered. The first network aired a mean of 109.3 commercials during prime time, with a standard deviation of 5.7 commercials. The second network aired a mean of 110.7 commercials, with a standard deviation of 5.4 commercials. As the sample sizes are quite large, the population standard deviations can be estimated using the sample standard deviations. Construct a 90% confidence interval for −μ1μ2...
Suppose that X and Y are random samples of observations from a population with mean μ...
Suppose that X and Y are random samples of observations from a population with mean μ and variance σ2. Consider the following two unbiased point estimators of μ. A = (7/4)X - (3/4)Y    B = (1/3)X + (2/3)Y [Give your answers as ratio (eg: as number1 / number2 ) and DO NOT make any cancellation]   1.    Find variance of A. Var(A) = ? *σ2 2.    Find variance of B. Var(B) = ? *σ2 3. Efficient and unbiased...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT