Visualization of the codebase

Table Contents

General-Info

To get familliar with the library (janitor), i developed this project.

Dataset

The csv file was downloaded from Kaggle. Includes data from AIRBNB platoform for the city of New York

           1. host_id
           2. host_name

Images

NA_values_visualization

head(df)

Languages

  • The project was developed with R programming language.

Environment

  • RStudio

Libraries

library(naniar)
library(tidyverse)
library(dplyr)
library(readr)
library(visdat)
library(janitor)

Setup

setwd('')
df = read_csv('AB_NYC_2019.csv')

Code_Samples

glimpse(df) 
class(df) 
options(scipen = 999) 
# turning off scientific notation
summary (df)