Spaces:
Running
Running
File size: 765 Bytes
868b9c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
import marimo
__generated_with = "0.8.11"
app = marimo.App(width="medium", app_title="Marimo Example")
@app.cell
def __():
import marimo as mo
return mo,
@app.cell
def __(mo):
mo.md("""Hello World!""")
return
@app.cell
def __(mo):
lineitem = mo.sql(
f"""
SELECT * FROM 'https://shell.duckdb.org/data/tpch/0_01/parquet/lineitem.parquet';
"""
)
return lineitem,
@app.cell
def __(lineitem, mo):
import altair as alt
chart = mo.ui.altair_chart(alt.Chart(lineitem.sample(500)).mark_point().encode(
x='l_quantity',
y='l_extendedprice'
))
return alt, chart
@app.cell
def __(chart, mo):
mo.vstack([chart, chart.value])
return
if __name__ == "__main__":
app.run()
|