{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "df = pd.read_parquet(\n", " \"/Users/sebastianalejandrosarastizambonino/Documents/conferences/aws_community_day_2025/data/datos_ambiente_quito.parquet\"\n", ")" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
dsstationyproperty
02004-01-01 00:00:00BELISARIO7.42co
12004-01-01 01:00:00BELISARIO7.96co
22004-01-01 02:00:00BELISARIO8.42co
32004-01-01 03:00:00BELISARIO9.06co
42004-01-01 04:00:00BELISARIO6.57co
...............
15245232025-08-31 19:00:00SAN ANTONIO12.78Temperature
15245242025-08-31 20:00:00SAN ANTONIO12.28Temperature
15245252025-08-31 21:00:00SAN ANTONIO12.21Temperature
15245262025-08-31 22:00:00SAN ANTONIO12.35Temperature
15245272025-08-31 23:00:00SAN ANTONIO12.22Temperature
\n", "

2828207 rows × 4 columns

\n", "
" ], "text/plain": [ " ds station y property\n", "0 2004-01-01 00:00:00 BELISARIO 7.42 co\n", "1 2004-01-01 01:00:00 BELISARIO 7.96 co\n", "2 2004-01-01 02:00:00 BELISARIO 8.42 co\n", "3 2004-01-01 03:00:00 BELISARIO 9.06 co\n", "4 2004-01-01 04:00:00 BELISARIO 6.57 co\n", "... ... ... ... ...\n", "1524523 2025-08-31 19:00:00 SAN ANTONIO 12.78 Temperature\n", "1524524 2025-08-31 20:00:00 SAN ANTONIO 12.28 Temperature\n", "1524525 2025-08-31 21:00:00 SAN ANTONIO 12.21 Temperature\n", "1524526 2025-08-31 22:00:00 SAN ANTONIO 12.35 Temperature\n", "1524527 2025-08-31 23:00:00 SAN ANTONIO 12.22 Temperature\n", "\n", "[2828207 rows x 4 columns]" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "aws_conf", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.13" } }, "nbformat": 4, "nbformat_minor": 2 }