knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

Populationpack2016

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.

Installation

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")

Example

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")


NiloofarNL/Populationpack2016 documentation built on Jan. 2, 2022, 7:16 p.m.