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 elapsed

And 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 elapsed

We 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.

diff --git a/articles/update_report.html b/articles/update_report.html index 758be53..22af395 100644 --- a/articles/update_report.html +++ b/articles/update_report.html @@ -201,9 +201,9 @@ figures_path = figures_path, tables_path = tables_path, standard_footnotes_yaml = footnotes) -#> 1.599 sec elapsed -#> 0.2 sec elapsed -#> 0.489 sec elapsed +#> 1.573 sec elapsed +#> 0.204 sec elapsed +#> 0.504 sec elapsed

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:

@@ -315,9 +315,9 @@ figures_path = figures_path, tables_path = tables_path, standard_footnotes_yaml = footnotes) -#> 1.545 sec elapsed -#> 0.222 sec elapsed -#> 0.494 sec elapsed +#> 1.552 sec elapsed +#> 0.227 sec elapsed +#> 0.504 sec elapsed

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:

diff --git a/pkgdown.yml b/pkgdown.yml index 66e9f1b..bdcf489 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -7,7 +7,7 @@ articles: Integrating_reportifyr_into_report_writing: Integrating_reportifyr_into_report_writing.html streamlined_reportifyr_workflow: streamlined_reportifyr_workflow.html update_report: update_report.html -last_built: 2024-10-25T18:16Z +last_built: 2024-10-28T15:23Z urls: reference: https://a2-ai.github.io/reportifyr/reference article: https://a2-ai.github.io/reportifyr/articles