4.
Install.packages("MASS")
library(MASS)
data("birthwt")
Using the birthwt data set, find the point estimate and the 90% confidence interval estimate for the population mean of the number of physician visits during the first trimester. Please include the R code
4. Install.packages("MASS") library(MASS) data("birthwt") Using the birthwt data set, find the point estimate and the 90%...
NEED R CODE PLEASE ## Problem 4 *For the `homedata` (**UsingR**) data set find 90% confidence intervals for both variables `y1970` and `y2000`, assuming the sample represents some population. Perform one sample t-test for each variable, use `t.test()`, but first discuss whether the model assumptions are appropriate (include some check of the assumptions, like a Q-Q plot).*
Construct a 90% confidence interval to estimate the population mean using the data below. x=90 σ=15 n=40 N=400 The 90% confidence interval for the population mean is.
Construct a 90% confidence interval to estimate the population mean using the data below. x=90 σ=10 n=40 N=400 The 90% confidence interval for the population mean is left parenthesis nothing comma nothing right parenthesis,.
Construct a 90% confidence interval to estimate the population mean using the data below sample mean x = 70 n = 30 N = 300 The 90% confidence interval for the populatin mean is ( __ , ___ ) o = 10
Construct a 90% confidence interval to estimate the population mean using the data below. x overbarequals80 sigmaequals20 nequals30 Nequals300 The 90% confidence interval for the population mean is left parenthesis nothing comma nothing right parenthesis . (Round to two decimal places as needed.)
Construct a 90% confidence interval to estimate the population mean using the data below. Xbar=24 S=3.4 n=22 What assumption needs to be made about this population? The 90% confidence interval for the population is from a lower limit of— to an upper limit of—
Construct a 90% confidence interval to estimate the population mean using the data below. x = 50 o = 10 n = 40 N = 400
Refer to the accompanying data set and construct a 90% confidence interval estimate of the mean pulse rate of adult females then do the same for adult males Compare the results Click the icon to view the pulse rates for adult females and adult males Construct a 90% confidence interval of the mean pulse rate for adult females Pulse Rates - X bpm bpm (Round to one decimal place as needed) Males 85 69 75 65 51 74 57 73...
Construct 90%, 95%, and 99% confidence intervals to estimate μ from the following data. State the point estimate. Assume the data come from a normally distributed population. 13.4 11.6 11.9 12.9 12.5 11.4 12.0 11.7 11.8 13.4 (Round the intermediate values to 4 decimal places. Round your answers to 2 decimal places.) 90% confidence interval: ______ ≤ μ ≤ ______ 95% confidence interval: ______ ≤ μ ≤ ______ 99% confidence interval: ______ ≤ μ ≤ ______ The point estimate is...
# Download the dataset Nile rm(list=ls()) library(help = "datasets") data("Nile") View(Nile) # Find the mean and sd of the data. It has only one variable. # Find out the 90% confidence interval for the population mean mu for the dataset Nile, assuming that the # population sd is known and is same as the sample sd. (50 points) # Repeat the same exercise assuming that the population sd is not known. (50 points). # Show all the necessary steps in...