news
A first post to verify the blog setup.
Author

Kakeami

Published

February 7, 2026

Welcome

This is a test post to confirm the Quarto blog is working correctly.

Code
import plotly.express as px

df = px.data.iris()
fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species",
                 title="Iris Dataset")
fig.show()