2022-03-09
## Loading required package: splines
## Loading required package: RcmdrMisc
## Loading required package: car
## Loading required package: carData
## Loading required package: sandwich
## Warning in register(): Can't find generic `scale_type` in package ggplot2 to
## register S3 method.
## Loading required package: effects
## lattice theme set by effectsTheme()
## See ?effectsTheme for details.
## The Commander GUI is launched only in interactive sessions
##
## Attaching package: 'Rcmdr'
## The following object is masked from 'package:base':
##
## errorCondition
> WestRoxburyHousing <-
+ read.table("C:/Users/filip/OneDrive/Desktop/MSCI 3230/westRoxbury (1).csv",
+ header=TRUE, stringsAsFactors=TRUE, sep=",", na.strings="NA", dec=".",
+ strip.white=TRUE)
> Boxplot( ~ TOTAL.VALUE, data=WestRoxburyHousing, id=list(method="y"))

[1] "1" "2" "4346" "4345" "4344" "4343" "5802" "4342" "4341" "5801"
[11] "5800" "4340"
> with(WestRoxburyHousing, Hist(TOTAL.VALUE, scale="frequency",
+ breaks="Sturges", col="darkgray"))

> with(WestRoxburyHousing, Hist(TOTAL.VALUE, groups=REMODEL,
+ scale="frequency", breaks="Sturges", col="darkgray"))
