# Loading
library(ggplot2)
# Load the data
data(tract_covariates)
## Warning in data(tract_covariates): data set 'tract_covariates' not found
tract_covariates<-read.csv("C:/Users/dejmo/OneDrive/Documents/URP Cert/URP 5363- Planning Methods I/Assignment 1/tract_covariates.csv")
#------------2. pick rows and columns------------------------
# Select relevant columns from mtcars
df <- tract_covariates[, c("czname", "hhinc_mean2000", "popdensity2000")]
df1 <- tract_covariates[, c(5,6,13)]
city <- tract_covariates[tract_covariates$czname == 'San Antonio', c(5,6,13)]
ggplot(city, aes(x = hhinc_mean2000, )) +
geom_histogram()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
ggplot(city, aes(x = hhinc_mean2000, fill = popdensity2000)) +
geom_histogram(binwidth = 1)
## Warning: The following aesthetics were dropped during statistical transformation: fill.
## ℹ This can happen when ggplot fails to infer the correct grouping structure in
## the data.
## ℹ Did you forget to specify a `group` aesthetic or to convert a numerical
## variable into a factor?
ggplot(city, aes(x= popdensity2000, y=))+
geom_boxplot()
ggplot(city, aes(x = hhinc_mean2000)) +
geom_density()
ggplot(city, aes(x = hhinc_mean2000, color = popdensity2000)) +
stat_ecdf(geom = "step")
## Warning: The following aesthetics were dropped during statistical transformation:
## colour.
## ℹ This can happen when ggplot fails to infer the correct grouping structure in
## the data.
## ℹ Did you forget to specify a `group` aesthetic or to convert a numerical
## variable into a factor?
ggplot(city, aes(x = hhinc_mean2000, y = popdensity2000)) +
geom_point()+
labs(x = "Household Income", y = "Population Density")
library(plotly)
##
## Attaching package: 'plotly'
##
## The following object is masked from 'package:ggplot2':
##
## last_plot
##
## The following object is masked from 'package:stats':
##
## filter
##
## The following object is masked from 'package:graphics':
##
## layout
p <- ggplot(city, aes(x = hhinc_mean2000, y = popdensity2000)) +
geom_point()
ggplotly(p)
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
summary(cars)
## speed dist
## Min. : 4.0 Min. : 2.00
## 1st Qu.:12.0 1st Qu.: 26.00
## Median :15.0 Median : 36.00
## Mean :15.4 Mean : 42.98
## 3rd Qu.:19.0 3rd Qu.: 56.00
## Max. :25.0 Max. :120.00
You can also embed plots, for example:
Note that the echo = FALSE parameter was added to the
code chunk to prevent printing of the R code that generated the
plot.