Luis Chaves Rodriguez commited on
Commit
17fec11
·
1 Parent(s): 3039071

added dev make statement pinning python version and link to diabetes df dataset

Browse files
Files changed (2) hide show
  1. app.py +2 -2
  2. makefile +3 -0
app.py CHANGED
@@ -14,7 +14,7 @@
14
 
15
  import marimo
16
 
17
- __generated_with = "0.12.0"
18
  app = marimo.App(width="medium")
19
 
20
 
@@ -56,7 +56,7 @@ def _(mo, try_default_df):
56
 
57
  @app.cell
58
  def _(mo):
59
- try_default_df = mo.ui.switch(label="Try default dataset (`diabetes` from scikit-learn)")
60
  try_default_df
61
  return (try_default_df,)
62
 
 
14
 
15
  import marimo
16
 
17
+ __generated_with = "0.12.9"
18
  app = marimo.App(width="medium")
19
 
20
 
 
56
 
57
  @app.cell
58
  def _(mo):
59
+ try_default_df = mo.ui.switch(label="Try default dataset ([`diabetes` from scikit-learn](https://scikit-learn.org/stable/datasets/toy_dataset.html#diabetes-dataset))")
60
  try_default_df
61
  return (try_default_df,)
62
 
makefile CHANGED
@@ -1,3 +1,6 @@
1
  local-run:
2
  docker build -t marimo-app .
3
  docker run -it --rm -p 7860:7860 marimo-app
 
 
 
 
1
  local-run:
2
  docker build -t marimo-app .
3
  docker run -it --rm -p 7860:7860 marimo-app
4
+
5
+ dev:
6
+ uvx --python 3.12 marimo edit --sandbox app.py