Random sample of house prices (in thousands of dollars) for three bedroom/two bath houses in Watauga County, NC

HOUSE

Format

A data frame with 14 observations on the following 2 variables:

  • neighborhood (a factor with levels Blowing Rock, Cove Creek, Green Valley, Park Valley, Parkway, and Valley Crucis)

  • price (price of house in thousands of dollars)

References

Ugarte, M. D., Militino, A. F., and Arnholt, A. T. 2015. Probability and Statistics with R, Second Edition. Chapman & Hall / CRC.

Examples

with(data = HOUSE,
t.test(price, mu = 225))
#> 
#> 	One Sample t-test
#> 
#> data:  price
#> t = 0.61139, df = 13, p-value = 0.5515
#> alternative hypothesis: true mean is not equal to 225
#> 95 percent confidence interval:
#>  198.5424 272.3433
#> sample estimates:
#> mean of x 
#>  235.4429 
#>