etrotta commited on
Commit
f65e213
·
1 Parent(s): 97cc78b

Change wording on conclusion

Browse files
Files changed (1) hide show
  1. polars/05_reactive_plots.py +8 -5
polars/05_reactive_plots.py CHANGED
@@ -11,7 +11,7 @@
11
 
12
  import marimo
13
 
14
- __generated_with = "0.12.8"
15
  app = marimo.App(width="medium")
16
 
17
 
@@ -347,11 +347,14 @@ def _(chart2, filtered_duration, mo, pl):
347
  def _(mo):
348
  mo.md(
349
  r"""
350
- Reviewing what we have covered in this Notebook:
351
 
352
- - Understand the data you're working with first and foremost
353
- - Creating plots can help you find and explain patterns, identify outliers and observe trends
354
- - Thanks to marimo's interactive UI elements, we can explore multiple facets of the data without changing the code
 
 
 
355
  """
356
  )
357
  return
 
11
 
12
  import marimo
13
 
14
+ __generated_with = "0.12.10"
15
  app = marimo.App(width="medium")
16
 
17
 
 
347
  def _(mo):
348
  mo.md(
349
  r"""
350
+ In this notebook, we've focused on a few key aspects. First, it's essential to *understand* the data you're working with — this forms the foundation of any analysis.
351
 
352
+ Creating plots is a powerful way to identify patterns, outliers, and trends. These visualizations are not just for _presentation_; they are tools for deeper insight.
353
+
354
+ /// NOTE
355
+ With marimo's `interactive` UI elements, exploring different _facets_ of the data becomes seamless, allowing for dynamic analysis without altering the code.
356
+
357
+ Keep these points in mind as you continue to work with data.
358
  """
359
  )
360
  return