Closed ncclementi closed 6 months ago
Ok, I cut couple of lines we were running in the original demo, and introduced
.rename()
.sql()
TODO:
import ibis basics = ibis.examples.imdb_title_basics.fetch() ratings = ibis.examples.imdb_title_ratings.fetch() basics.to_parquet("imdb_title_basics.parquet") ratings.mutate( averageRating=t.averageRating.cast("str"), numVotes=t.numVotes.cast("str") ).to_parquet("imdb_title.ratings.parquet")
con
Check out this pull request on
See visual diffs & provide feedback on Jupyter Notebooks.
Powered by ReviewNB
Going to remove the English demo page for now to reduce a bit of clutter and then merge this!
Ok, I cut couple of lines we were running in the original demo, and introduced
.rename()
.sql()
TODO:
con
@cpcloud