Spaces:
Runtime error
Runtime error
File size: 11,923 Bytes
aaef24a 9583f97 aaef24a 9583f97 aaef24a 806c8fe aaef24a | 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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | # /// script
# requires-python = ">=3.13"
# dependencies = [
# "marimo",
# "marimo-learn>=0.12.0",
# "polars==1.24.0",
# "sqlalchemy",
# ]
# ///
import marimo
__generated_with = "0.20.4"
app = marimo.App(width="medium")
@app.cell(hide_code=True)
def _():
import marimo as mo
import marimo_learn as mol
import sqlalchemy
db_path = mol.localize_file(
"penguins.db",
"https://raw.githubusercontent.com/marimo-team/learn/main/sql/public/penguins.db"
)
DATABASE_URL = f"sqlite:///{db_path}"
engine = sqlalchemy.create_engine(DATABASE_URL)
return engine, mo, mol
@app.cell(hide_code=True)
def _():
from marimo_learn import ConceptMapWidget, MatchingWidget
return ConceptMapWidget, MatchingWidget
@app.cell(hide_code=True)
def _():
mo.md(r"""
# Missing Data
The biggest challenge people facing when using databases isn't remembering the order of clauses in a SQL query. The biggest challenge is handling missing data. This tutorial builds on the filtering introduced in the previous one to show how to manage this in our queries.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Null
Here are all of the distinct combinations of island, species, and sex in the `penguins` table.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select distinct island, species, sex from penguins;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Notice the two blanks in the `sex` column, and the fact that its subtitle says there are 3 unique values. Those blanks show the special value `null`, which SQL uses to mean "I don't know". In this case, those values tell us that the scientists who collected the penguins didn't record the sex of some of the Adelie penguins on Dream and Torgersen islands.
The most important thing about **null values** is that almost any operation that involves a `null` produces `null` as an answer. For example, we can use SQL as a very complicated desk calculator and ask, "What is 1 + 2?"
""")
return
@app.cell
def _():
_df = mo.sql(
f"""
select 1 + 2 as result;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
If we ask, "What is 1 + `null`?", the answer is `null`, because one plus "I don't know" is "I don't know".
""")
return
@app.cell
def _():
_df = mo.sql(
f"""
select 1 + null as result;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
We get the same thing if we subtract `null`, multiply by it, and so on. (As the saying goes, "Garbage in, garbage out.") We also get the same thing if we do comparisons. Is `null` equal to 3? Again, the answer is `null`.
""")
return
@app.cell
def _():
_df = mo.sql(
f"""
select null = 3 as result;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
We get the same thing if we ask if `null` is *not* equal to 3, because if we don't know the value, we don't know if it *isn't* 3.
""")
return
@app.cell
def _():
_df = mo.sql(
f"""
select null != 3 as result;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
What about `null = null`? If we have two numbers, and we don't know what either is, we don't know if they're the same or not, so the answer is once again `null`, *not* `true`.
""")
return
@app.cell
def _():
_df = mo.sql(
f"""
select null = null as result;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> 1. Where does SQL put `null` values when sorting: at the start, at the end, or somewhere else?
> 2. Does it follow the same rule for both numbers and text?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Aggregating Nulls
If 1 + `null` is `null`, then 1 + 2 + `null` should be `null` as well. Continuing this line of thought, the sum of a column that includes one or more nulls ought to be `null`; so should the `max`, `min`, and so on, because if we don't know all of the inputs, we can't know the output.
SQL isn't this strict because it wouldn't be useful. Instead, its aggregation functions ignore `null` values. If we calculate a sum, for example, we get the sum of all the numbers that we actually know. If we calculate an average, we get the sum of the known values divided by the number of known values (rather than by the total number of known and unknown values), and so on.
There is one exception to this rule. If we ask for `count(sex)` in the penguins database, we get the number of penguins whose sex is known:
""")
return
@app.cell(hide_code=True)
def _(penguins):
_df = mo.sql(
f"""
select count(sex) from penguins;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
If we use `count(*)`, on the other hand, we get the total number of rows regardless of whether some values are `null` or not:
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select count(*) from penguins;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Compare `sum(body_mass_g) / count(body_mass_g)` with `sum(body_mass_g) / count(*)` and with `avg(body_mass_g)`. Are the results consistent with the explanation above?
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Handling Nulls
There are only two things we can do with `null` that don't produce `null` as a result: ask if a value is `null`, and ask if it isn't. If we're interested in the `sex` column, the first is written `sex is null`, while the second is written `sex is not null`. Note that `is null` and `is not null` are written as multiple words, but are a single test; it's confusing, but we're stuck with it.
Let's have a look at some practical examples. If we select the distinct values of `sex` from the `penguins` table, we get `"FEMALE"`, `"MALE"`, and `null`. (The first line of output is blank, which is how Marimo shows null values.)
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select distinct sex from penguins order by sex;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
If we want to get all the rows that have a null value for `sex`, we *cannot* do this:
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select sex from penguins
where (sex != 'MALE') and (sex != 'FEMALE');
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
That doesn't produce any output because the rows with null values for `sex` don't pass the test. If we want the rows with missing sex, we have to ask for them explicitly. This query gives us 11 rows.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select sex from penguins
where sex is null;
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
How many times did the scientists fail to record a penguin's mass or flipper length? The answer is "twice", and in both cases they didn't record *any* of the physical measurements.
""")
return
@app.cell
def _(penguins):
_df = mo.sql(
f"""
select * from penguins
where (body_mass_g is null) or (flipper_length_mm is null);
""",
engine=engine
)
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> 1. Write a query to find penguins whose body mass is known but whose sex is not.
> 2. Write another query to find penguins whose sex is known but whose body mass is not.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
> Explain why the query shown earlier (and reproduced below) does not produce any rows:
>
> ```sql
> select sex from penguins
> where (sex != 'MALE') and (sex != 'FEMALE');
> ```
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
Some programmers find `null` very annoying. Instead of putting it in their tables, they use marker values like -1 or `"NA"` to signal missing data. Doing this almost always leads to problems. For example, if we are calculating the average age of people who are 17, 19, 21, and and unknown number of years old, the sensible thing to do is add the values we know (the 17, 19, and 21) and then divide by 3. As we will see in the next tutorial, SQL will do this for us automatically _if_ we have used `null` to represent the unknown age. If we use -1, on the other hand, it's all too easy to calculate (17 + 19 + 21 - 1) / 4 and get an average age of 14. We could use `where` to filter out the -1 ages before doing the sum, but (a) we'd have to know to do that and (b) we'd have to know that this programmer used -1 instead of -999999 or something else to mean "I don't know". While it takes a bit of getting used to, it's (almost) always better to use `null` when there are holes in our data.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Ternary Logic
These tutorials avoid theory when they can, but a little bit will help understand how `null` works. In conventional logic, a statement is either true or false. If we have two statements `A` and `B`, then `A and B` is true when both are true, while `A or B` is true if either or both are true. These rules are sometimes referred to as **binary logic** (also called **Boolean logic**) because there are only two possible values.
SQL is unusual among programming languages in using **ternary logic**, in which any statement can be true, false, or null. Since `null` is not `true`, `where` drops rows if the filter expression produces `null`.
""")
return
@app.cell(hide_code=True)
def _():
mo.md(r"""
## Checking Understanding

""")
return
@app.cell(hide_code=True)
def _(MatchingWidget, mo):
_widget = mo.ui.anywidget(
MatchingWidget(
question="Match each SQL expression involving null to its result.",
left=["1 + null", "null = null", "null is null", "null != 3"],
right=[
"null — arithmetic with an unknown is unknown",
"null — comparing unknowns yields unknown, not true",
"true — the only test that reliably works on null",
"null — even inequality checks return unknown for null",
],
correct_matches={0: 0, 1: 1, 2: 2, 3: 3},
)
)
_widget
return
@app.cell(hide_code=True)
def _(ConceptMapWidget, mo):
_widget = mo.ui.anywidget(
ConceptMapWidget(
question="Connect these null-related concepts by selecting a relationship term and clicking two concepts.",
concepts=["null", "unknown value", "is null", "ternary logic", "aggregation functions"],
terms=["means", "tested with", "uses", "ignore"],
correct_edges=[
{"from": "null", "to": "unknown value", "label": "means"},
{"from": "null", "to": "is null", "label": "tested with"},
{"from": "ternary logic", "to": "null", "label": "uses"},
{"from": "aggregation functions", "to": "null", "label": "ignore"},
],
)
)
_widget
return
if __name__ == "__main__":
app.run()
|