The commit introduces a new plot function that visualizes user growth data using matplotlib. It creates a line chart with dates on the x-axis and user counts on the y-axis, including axis labels, a title, and a grid for improved readability. The plot is saved to a PNG file for documentation purposes.
17 lines
226 B
Makefile
17 lines
226 B
Makefile
all: tikker run
|
|
|
|
tikker: tikker.c sormc.h
|
|
gcc tikker.c -Ofast -Wall -Werror -Wextra -o tikker -lsqlite3
|
|
|
|
run:
|
|
./tikker
|
|
|
|
PYTHON="./.venv/bin/python"
|
|
|
|
ensure_env:
|
|
-@python3 -m venv .venv
|
|
|
|
plot: ensure_env
|
|
$(PYTHON) plot.py
|
|
|