Last active
August 11, 2022 02:21
-
-
Save kvnkho/d19914c15bba8db3fcd5f4c6ec0bf0a8 to your computer and use it in GitHub Desktop.
Extract step in Ploomber
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| # %% tags=["parameters"] | |
| # declare a list tasks whose products you want to use as inputs | |
| upstream = None | |
| product = None | |
| # %% | |
| df = pd.DataFrame({"col1": [1,2,3], "col2":[2,3,4]}) | |
| df.to_parquet(product["data"]) |
Author
That is an easy change. Will get those tonight and then work on publishing!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
let's change this to the percent format since more people are familiar with it: