{ "cells": [ { "cell_type": "markdown", "id": "0701738d", "metadata": { "id": "0701738d" }, "source": [ "# Notebook 2: Analysis & Visualization" ] }, { "cell_type": "code", "execution_count": 1, "id": "3486528e", "metadata": { "id": "3486528e" }, "outputs": [], "source": [ "\n", "import pandas as pd\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n" ] }, { "cell_type": "code", "execution_count": 3, "id": "e116aab2", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 244 }, "id": "e116aab2", "outputId": "3e5d057c-6dd9-4b1f-8e77-699d095b44f9" }, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ " Property_ID Arrondissement Property_Type Size_sqm Rooms Floor \\\n", "0 P10000 4 Apartment 117 4 7 \n", "1 P10001 8 Studio 89 3 3 \n", "2 P10002 4 Apartment 164 5 5 \n", "3 P10003 2 Apartment 35 1 5 \n", "4 P10004 7 Studio 73 2 2 \n", "\n", " Year_Built Condition Distance_to_Center_km Price_EUR \n", "0 1870 Renovated 2.76 2270802.89 \n", "1 1953 Good 10.77 1637076.12 \n", "2 1979 Needs Renovation 3.14 3220782.59 \n", "3 1938 New 4.72 407781.74 \n", "4 1957 New 7.96 624879.12 " ], "text/html": [ "\n", "
| \n", " | Property_ID | \n", "Arrondissement | \n", "Property_Type | \n", "Size_sqm | \n", "Rooms | \n", "Floor | \n", "Year_Built | \n", "Condition | \n", "Distance_to_Center_km | \n", "Price_EUR | \n", "
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", "P10000 | \n", "4 | \n", "Apartment | \n", "117 | \n", "4 | \n", "7 | \n", "1870 | \n", "Renovated | \n", "2.76 | \n", "2270802.89 | \n", "
| 1 | \n", "P10001 | \n", "8 | \n", "Studio | \n", "89 | \n", "3 | \n", "3 | \n", "1953 | \n", "Good | \n", "10.77 | \n", "1637076.12 | \n", "
| 2 | \n", "P10002 | \n", "4 | \n", "Apartment | \n", "164 | \n", "5 | \n", "5 | \n", "1979 | \n", "Needs Renovation | \n", "3.14 | \n", "3220782.59 | \n", "
| 3 | \n", "P10003 | \n", "2 | \n", "Apartment | \n", "35 | \n", "1 | \n", "5 | \n", "1938 | \n", "New | \n", "4.72 | \n", "407781.74 | \n", "
| 4 | \n", "P10004 | \n", "7 | \n", "Studio | \n", "73 | \n", "2 | \n", "2 | \n", "1957 | \n", "New | \n", "7.96 | \n", "624879.12 | \n", "