RegressaoSimples: Simple Linear Regression Example Data

RegressaoSimplesR Documentation

Simple Linear Regression Example Data

Description

A data.frame containing a sample of 10 lots with prices and other attributes in Recife/PE

Usage

RegressaoSimples

Format

A tibble with 10 rows and 5 variables:

  • ID: index

  • AREA: Total Area, in squared meters

  • DISTPOLO: Distance to Road, in kilometers

  • PU: Unitary Price, in Reais per squared meters

  • PT: Total Price, in Reais

Examples

data(RegressaoSimples)
fit <- lm(PU ~ DISTPOLO, data = RegressaoSimples)
attach(RegressaoSimples)
library(TeachingDemos)
loess.demo(PU, DISTPOLO)

lfpdroubi/appraiseR documentation built on April 14, 2024, 10:27 p.m.