diff --git a/articles/Integrating_reportifyr_into_report_writing.html b/articles/Integrating_reportifyr_into_report_writing.html index a257a80..3f70db6 100644 --- a/articles/Integrating_reportifyr_into_report_writing.html +++ b/articles/Integrating_reportifyr_into_report_writing.html @@ -155,7 +155,7 @@ add_tables(docx_in = doc_dirs$doc_clean, docx_out = doc_dirs$doc_tables, tables_path = tables_path) -#> 1.684 sec elapsed +#> 1.601 sec elapsed
We can see the tables were successfully inserted:
Now that the tables are inserted, we can insert the figures:
@@ -165,7 +165,7 @@ add_plots(docx_in = doc_dirs$doc_tables, docx_out = doc_dirs$doc_tabs_figs, figures_path = figures_path) -#> 0.205 sec elapsed +#> 0.204 sec elapsedAnd now we can see our figures in the document as well:
Now we can add the footnotes:
@@ -177,7 +177,7 @@ figures_path = figures_path, tables_path = tables_path, footnotes = footnotes) -#> 0.492 sec elapsed +#> 0.498 sec elapsedWe now can see our figures and tables have footnotes inserted:
Now that all the elements are inserted, we can generate a clean final diff --git a/articles/streamlined_reportifyr_workflow.html b/articles/streamlined_reportifyr_workflow.html index 5b82792..661633f 100644 --- a/articles/streamlined_reportifyr_workflow.html +++ b/articles/streamlined_reportifyr_workflow.html @@ -113,9 +113,9 @@ figures_path = figures_path, tables_path = tables_path, standard_footnotes_yaml = footnotes) -#> 1.554 sec elapsed -#> 0.2 sec elapsed -#> 0.485 sec elapsed +#> 1.569 sec elapsed +#> 0.203 sec elapsed +#> 0.498 sec elapsed
This produces the same reportifyr
draft as does the
step-wise process, but with only a single function call.
We’ll start with a reportifyr
document that has figures,
tables, and footnotes that need to be updated. Let’s run another
analysis where we update figures 2 and 3, and table 2:
We can see that figures 2 and 3 were updated, and table 2 was
updated, while table 1 and the non-reportifyr
content were
unaltered: