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()Kakeami
February 7, 2026
This is a test post to confirm the Quarto blog is working correctly.
---
title: "Hello, Quarto!"
description: "A first post to verify the blog setup."
date: "2026-02-07"
categories: [news]
image: og-image.png
og-source: chart
draft: false
---
## Welcome
This is a test post to confirm the Quarto blog is working correctly.
```{python}
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()
```
```{python}
#| echo: false
#| output: false
fig.write_image("og-image.png", width=1200, height=630)
```