-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathfilterable_table.py
94 lines (72 loc) · 2.12 KB
/
filterable_table.py
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# /// script
# requires-python = ">=3.9"
# dependencies = [
# "marimo",
# "pandas==2.2.3",
# ]
# ///
import marimo
__generated_with = "0.8.19"
app = marimo.App(width="medium")
@app.cell(hide_code=True)
def __(mo):
mo.md(r"""# Filterable DataFrame""")
return
@app.cell
def __(data_url, pd):
# Read the csv
df = pd.read_json(data_url("cars.json"))
return (df,)
@app.cell
def __(df):
# Create options for select widgets
manufacturer_options = df["Name"].str.split().str[0].unique()
manufacturer_options.sort()
cylinder_options = df["Cylinders"].unique().astype(str)
cylinder_options.sort()
return cylinder_options, manufacturer_options
@app.cell
def __(cylinder_options, df, manufacturer_options, mo):
# Create the filters
manufacturer = mo.ui.dropdown(manufacturer_options, label="Manufacturer")
cylinders = mo.ui.dropdown(cylinder_options, label="Cylinders")
horse_power = mo.ui.range_slider.from_series(
df["Horsepower"],
show_value=True,
)
mo.hstack([manufacturer, horse_power, cylinders], gap=3).left()
return cylinders, horse_power, manufacturer
@app.cell
def __(df, filter_df):
filter_df(df)
return
@app.cell
def __(cylinders, horse_power, manufacturer):
def filter_df(df):
filtered_df = df
if manufacturer.value:
filtered_df = filtered_df[
filtered_df["Name"].str.contains(manufacturer.value, case=False)
]
if cylinders.value:
filtered_df = filtered_df[filtered_df["Cylinders"] == cylinders.value]
if horse_power.value:
left, right = horse_power.value
filtered_df = filtered_df[
(filtered_df["Horsepower"] >= left)
& (filtered_df["Horsepower"] <= right)
]
return filtered_df
return (filter_df,)
@app.cell
def __():
def data_url(file):
return f"https://cdn.jsdelivr.net/npm/[email protected]/data/{file}"
return (data_url,)
@app.cell
def __():
import marimo as mo
import pandas as pd
return mo, pd
if __name__ == "__main__":
app.run()