mirror of
https://github.com/tgorordo/smithy.git
synced 2026-06-12 18:42:13 -07:00
some formatting and add cli compilation
This commit is contained in:
parent
8836c49091
commit
4a624a4847
9 changed files with 115 additions and 61 deletions
|
|
@ -23,18 +23,23 @@ def _():
|
|||
@app.cell
|
||||
def _(mo, pl):
|
||||
df = pl.read_csv(mo.notebook_dir() / "test_ballot.csv")
|
||||
df = df.with_columns([ pl.col(c) # make safe, clean up
|
||||
.cast(pl.Utf8)
|
||||
.str.strip_chars()
|
||||
.cast(pl.Int64, strict=False).fill_null(df.width + 1)
|
||||
for c in df.columns ])
|
||||
df = df.with_columns(
|
||||
[
|
||||
pl.col(c) # make safe, clean up
|
||||
.cast(pl.Utf8)
|
||||
.str.strip_chars()
|
||||
.cast(pl.Int64, strict=False)
|
||||
.fill_null(df.width + 1)
|
||||
for c in df.columns
|
||||
]
|
||||
)
|
||||
df
|
||||
return (df,)
|
||||
|
||||
|
||||
@app.cell
|
||||
def _(df, smith_set):
|
||||
smith_set(df) # find the smith set (should be "Alice" and "Bob" as a pair)
|
||||
smith_set(df) # find the smith set (should be "Alice" and "Bob" as a pair)
|
||||
return
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue