{ "cells": [ { "cell_type": "code", "execution_count": 5, "id": "18eacdbd", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import os\n" ] }, { "cell_type": "code", "execution_count": 6, "id": "1429805a", "metadata": {}, "outputs": [], "source": [ "file_path = '../data/raw/online_retail_II.xlsx'\n" ] }, { "cell_type": "code", "execution_count": null, "id": "907ab9ac", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loading data...\n" ] } ], "source": [ "df = pd.read_excel(file_path, sheet_name='Year 2009-2010')" ] }, { "cell_type": "markdown", "id": "0386fe66", "metadata": {}, "source": [ "# Basic Sanity Check\n" ] }, { "cell_type": "code", "execution_count": 8, "id": "0c568d7f", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Data loaded successfully!\n", "Total Rows: 525461\n", "Total Columns: 8\n" ] } ], "source": [ "print(\"Data loaded successfully!\")\n", "print(f\"Total Rows: {df.shape[0]}\")\n", "print(f\"Total Columns: {df.shape[1]}\")\n", "\n" ] }, { "cell_type": "markdown", "id": "be9a7f30", "metadata": {}, "source": [ "# Preview data" ] }, { "cell_type": "code", "execution_count": 9, "id": "b8a911f7", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
| \n", " | Invoice | \n", "StockCode | \n", "Description | \n", "Quantity | \n", "InvoiceDate | \n", "Price | \n", "Customer ID | \n", "Country | \n", "
|---|---|---|---|---|---|---|---|---|
| 0 | \n", "489434 | \n", "85048 | \n", "15CM CHRISTMAS GLASS BALL 20 LIGHTS | \n", "12 | \n", "2009-12-01 07:45:00 | \n", "6.95 | \n", "13085.0 | \n", "United Kingdom | \n", "
| 1 | \n", "489434 | \n", "79323P | \n", "PINK CHERRY LIGHTS | \n", "12 | \n", "2009-12-01 07:45:00 | \n", "6.75 | \n", "13085.0 | \n", "United Kingdom | \n", "
| 2 | \n", "489434 | \n", "79323W | \n", "WHITE CHERRY LIGHTS | \n", "12 | \n", "2009-12-01 07:45:00 | \n", "6.75 | \n", "13085.0 | \n", "United Kingdom | \n", "
| 3 | \n", "489434 | \n", "22041 | \n", "RECORD FRAME 7\" SINGLE SIZE | \n", "48 | \n", "2009-12-01 07:45:00 | \n", "2.10 | \n", "13085.0 | \n", "United Kingdom | \n", "
| 4 | \n", "489434 | \n", "21232 | \n", "STRAWBERRY CERAMIC TRINKET BOX | \n", "24 | \n", "2009-12-01 07:45:00 | \n", "1.25 | \n", "13085.0 | \n", "United Kingdom | \n", "