<Include Quarto rendering in kedro pipeline and pa...
# questions
u
Include Quarto rendering in kedro pipeline and pass it inputs/outputs I am using kedro to make some comparative analysis. In a quarto report I have some chunks containing evaluation of output_var1 and output_var2 for example plot_function(output_var1) plot_function(output_var2) At the end of the pipeline, I would like to compute my report with quarto using the outcome of my pipeline, without saving it to the data catalog. from quarto import render def create_pipeline(**kwargs) -> Pipeline: return pipeline([node(func=function1,...