knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The goal of Populationpack2016 is to analyze information about population based on number of families, owners, tenants and residential units of all neighbourhoods in Mashhad, Iran. By clicking on here you can have access to the vignettes.
You can install the development version of Populationpack2016 like so:
knitr::opts_chunk$set(message = FALSE) if(!require(remotes)){ install.packages("remotes") library(remotes) } remotes::install_github("NiloofarNL/Populationpack2016")
This is a basic example which shows you how to solve a common problem:
library(Populationpack2016) library(knitr) library(ggplot2)
summary(Population2016)
```r the relationship between Tenants and Population"}
ggplot(data = Population2016, aes(x = Population, y = Tenants)) +
geom_point() +
ggtitle("Tenants and Population") +
xlab("Population") +
ylab("Tenants")
```r the relationship between Owners and Population"} ggplot(data = Population2016, aes(x = Population, y = Owners)) + geom_point() + ggtitle("Owners and Population") + xlab("Population") + ylab("Owners")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.