1.x updates

This commit is contained in:
2026-05-19 08:34:22 -04:00
parent 3f3fce62d3
commit 9d91ac8ebc
53 changed files with 4541 additions and 2111 deletions

View File

@@ -17,14 +17,11 @@
"metadata": {},
"outputs": [],
"source": [
"import sqlite3\n",
"from pathlib import Path\n",
"\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt\n",
"from openrun import open_conn\n",
"\n",
"DB = Path('..') / 'data' / 'garmin.db'\n",
"conn = sqlite3.connect(DB)\n",
"conn = open_conn()\n",
"\n",
"# What tables do we have, and how many rows in each?\n",
"tables = pd.read_sql(\"SELECT name FROM sqlite_master WHERE type='table' ORDER BY name\", conn)\n",
@@ -37,7 +34,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Activities load into pandas"
"## Activities \u2014 load into pandas"
]
},
{
@@ -99,7 +96,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Sleep, stress, HRV daily timeline"
"## Sleep, stress, HRV \u2014 daily timeline"
]
},
{
@@ -178,4 +175,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}