Remove unused functions

This commit is contained in:
Marty Oehme 2025-09-28 20:45:55 +02:00
parent ed7ed620d4
commit 343b75c9e4
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -5,9 +5,7 @@ app = marimo.App(width="medium")
with app.setup: with app.setup:
# Initialization code that runs beimpofore all other cells # Initialization code that runs beimpofore all other cells
import json
import re import re
from pathlib import Path
import lets_plot as lp import lets_plot as lp
import marimo as mo import marimo as mo
@ -141,7 +139,6 @@ def _(df: pl.DataFrame):
lp.ggplot(weekly_downloads, lp.aes("date", "downloads")) lp.ggplot(weekly_downloads, lp.aes("date", "downloads"))
+ lp.geom_line() + lp.geom_line()
+ lp.geom_smooth(method="loess") + lp.geom_smooth(method="loess")
+ lp.geom_smooth(method="lm")
+ lp.labs( + lp.labs(
title="Weekly downloads", title="Weekly downloads",
) )