Machine Learning Project
Airbnb New User Bookings
1.) This dataset contains the data about past user of Airbnb.
2.) This dataset is from Kaggle.com .
3.) I have done prediction/forecast of country destination of new users on the basis of
old users booking history.
Downloading the Dataset
We will download a dataset using opendatasets library of Python.
!pip install opendatasets pandas numpy --upgrade --quiet
import opendatasets as od
import os
import pandas as pd
import numpy as np
od.download('https://www.kaggle.com/c/airbnb-recruiting-new-user-bookings')
Skipping, found downloaded files in "./airbnb-recruiting-new-user-bookings" (use force=True to force download)
AV
Aaryan Vasani7 months ago