From 343b75c9e41e0b2a6b2e23289a8837b3d832de92 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sun, 28 Sep 2025 20:45:55 +0200 Subject: [PATCH] Remove unused functions --- popcorn.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/popcorn.py b/popcorn.py index 6f11f4f..2a1c68e 100644 --- a/popcorn.py +++ b/popcorn.py @@ -5,9 +5,7 @@ app = marimo.App(width="medium") with app.setup: # Initialization code that runs beimpofore all other cells - import json import re - from pathlib import Path import lets_plot as lp import marimo as mo @@ -141,7 +139,6 @@ def _(df: pl.DataFrame): lp.ggplot(weekly_downloads, lp.aes("date", "downloads")) + lp.geom_line() + lp.geom_smooth(method="loess") - + lp.geom_smooth(method="lm") + lp.labs( title="Weekly downloads", )