First of all I'd like to thank this community, I'm still not knowledgeable enough to answer questions but when I can I'll make sure to give back.
I currently have two pieces of code that I'm trying to combine.
1) An SQL query that pulls a bunch of data and I save it as a CSV file 2) A Jupyter notebook that opens that CSV as a Pandas Dataframe and performs some calculations and plots some graphs.
Every time that I run a new report I need to make some edits to the SQL code first, I need to change some dates and the Unit number from which I'm trying to pull the data.
Would it be possible to do all of this directly from the Python code?
I was thinking that if I can declare some "placeholders" in the SQL code and then I can specify those dates in Jupyter Notebook then I could just plug them in and run both codes at once.
Thank you in advance for any help.