<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>ready4 – Programming</title>
    <link>/tags/programming/</link>
    <description>Recent content in Programming on ready4</description>
    <generator>Hugo -- gohugo.io</generator>
    <lastBuildDate>Wed, 28 Jan 2026 00:00:00 +0000</lastBuildDate>
    
	  <atom:link href="/tags/programming/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Docs: Provide end users with a simple and consistent syntax for using model modules</title>
      <link>/docs/tutorials/develop-models/syntax/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/develop-models/syntax/</guid>
      <description>
        
        
        

&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This below section renders a vignette article from the ready4 library. You can use the following links to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/articles/V_07.html&#34;&gt;view the vignette on the library website (adds useful hyperlinks to code blocks)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/blob/main/vignettes/V_07.Rmd&#34;&gt;view the source file&lt;/a&gt; from that article, and;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/edit/main/vignettes/V_07.Rmd&#34;&gt;edit its contents&lt;/a&gt; (requires a GitHub account).&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/&#39;&gt;ready4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;Transparency is one of the underpinning principles of ethical modelling practice. One way to improve the transparency of computational health economic models is to ensure that the programs implementing model analyses can be meaningfully inspected by readers with different levels of technical expertise. Even non-technical readers should be able to follow the high-level logic implemented by model algorithms. If multiple analysis programs are written using a common simplified syntax then reviewers of those programs need to contend with relatively fewer new concepts.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;ready4&lt;/code&gt; provides a simple syntax that can be consistently applied to attach algorithms (methods) to &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/develop-models/modularity/&#34;&gt;model modules&lt;/a&gt;. It does so by taking advantage of the &lt;a href=&#34;https://www.ready4-dev.com/docs/framework/implementation/paradigm/object-oriented/#transparent-computational-models&#34;&gt;abstraction and polymorphism features of Object Oriented Programming&lt;/a&gt; and R&amp;rsquo;s use of generic functions. Generic functions don&amp;rsquo;t implement algorithms themselves - their most salient features are a name and a high level description of the type of task that any method associated with that generic should perform. Whenever a developer creates a method for classes that use R&amp;rsquo;s S4 and S3 systems &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/develop-models/modularity/#implementation&#34;&gt;(the types used for model modules and sub-modules)&lt;/a&gt;, they can associate that method with a generic that has a description that is a good match for the algorithm being implemented.&lt;/p&gt;
&lt;h2 id=&#34;use&#34;&gt;Use&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;ready4&lt;/code&gt; includes a number of core generic functions which describe the main types of method to be implemented by model modules. These generics correspond exactly to the &amp;ldquo;core&amp;rdquo;, &amp;ldquo;slot&amp;rdquo; and &amp;ldquo;extended&amp;rdquo; commands described in &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/use-models/authoring-analyses/commands/&#34;&gt;another article&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Notably, the &lt;code&gt;ready4&lt;/code&gt; package does not associate any core or extended methods with the &lt;code&gt;Ready4Module&lt;/code&gt; &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/develop-models/modularity/&#34;&gt;template module&lt;/a&gt;. Instead, model developers need to decide which core and extended generics they associate with the modules they derive from the &lt;code&gt;Ready4Module&lt;/code&gt; template. This decision is typically made when authoring the methods associated with model modules.&lt;/p&gt;
&lt;p&gt;Currently, the only methods defined for &lt;code&gt;Ready4Module&lt;/code&gt; are &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/use-models/authoring-analyses/commands/&#34;&gt;slot-methods&lt;/a&gt;. By default, these slot methods are inherited by all modules derived from the &lt;code&gt;Ready4Module&lt;/code&gt; template. These methods can be itemised using the &lt;code&gt;get_methods&lt;/code&gt; function.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/get_methods.html&#39;&gt;get_methods&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#&amp;gt;  [1] &#34;authorSlot&#34;        &#34;characterizeSlot&#34;  &#34;depictSlot&#34;        &#34;enhanceSlot&#34;       &#34;exhibitSlot&#34;       &#34;ingestSlot&#34;        &#34;investigateSlot&#34;   &#34;manufactureSlot&#34;   &#34;metamorphoseSlot&#34; &lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#&amp;gt; [10] &#34;procureSlot&#34;       &#34;prognosticateSlot&#34; &#34;ratifySlot&#34;        &#34;reckonSlot&#34;        &#34;renewSlot&#34;         &#34;shareSlot&#34;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Partially automate maintenance of a modelling project&#39;s website</title>
      <link>/docs/tutorials/develop-models/maintenance/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/develop-models/maintenance/</guid>
      <description>
        
        
        

&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This below section renders a vignette article from the ready4 library. You can use the following links to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/articles/V_06.html&#34;&gt;view the vignette on the library website (adds useful hyperlinks to code blocks)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/blob/main/vignettes/V_06.Rmd&#34;&gt;view the source file&lt;/a&gt; from that article, and;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/edit/main/vignettes/V_06.Rmd&#34;&gt;edit its contents&lt;/a&gt; (requires a GitHub account).&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/&#39;&gt;ready4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;Manually keeping track of modules libraries, programs, reporting templates and datasets authored by different teams and stored in different locations can be an onerous undertaking. The &lt;code&gt;ready4&lt;/code&gt; library therefore includes tools to allow a modelling project&amp;rsquo;s maintainers to perform automated searches for model artefacts and to output tabular summaries of these assets in formats suitable for inclusion on a project documentation website.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;ready4&lt;/code&gt; library includes tools to allow a modelling project&amp;rsquo;s maintainers to partially automate searching for and creating summaries of relevant modelling project assets (e.g. tutorials, releases, etc.) that are suitable for inclusion on documentation website pages.&lt;/p&gt;
&lt;h2 id=&#34;use&#34;&gt;Use&lt;/h2&gt;
&lt;p&gt;The documentation website maintenance tools in the &lt;code&gt;ready4&lt;/code&gt; library are designed to be used on a docsy documentation website derived from &lt;a href=&#34;https://github.com/ready4-dev/ready4web&#34;&gt;this template repository&lt;/a&gt;. An example of a website created from this template is the &lt;a href=&#34;https://readyforwhatsnext.com/&#34;&gt;readyforwhatsnext model project website&lt;/a&gt;, for which source code is &lt;a href=&#34;https://github.com/ready4-dev/readyforwhatsnext&#34;&gt;available here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The &lt;code&gt;write_to_render_post&lt;/code&gt; is the main &lt;code&gt;ready4&lt;/code&gt; function used specifically for website maintenance tasks. Importantly, the non-CRAN library &lt;a href=&#34;https://github.com/r-lib/hugodown&#34;&gt;hugodown&lt;/a&gt; needs to be installed to use this function.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;write_to_render_post&lt;/code&gt; is designed for help overcome practical challenges of rendering RMD or Rmarkdown files (particularly those sourced from an individual module library&amp;rsquo;s documentation website) to Markdown output in an overall modelling project website. Examples of its use are in &lt;a href=&#34;https://github.com/ready4-dev/readyforwhatsnext/blob/main/runme.R&#34;&gt;this script&lt;/a&gt; that is run when updating the readyforwhatsnext project website. The RMD / Rmarkdown files rendered by this example script call other useful functions from the ready4 package, such as:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;get_libraries_tb&lt;/code&gt;, &lt;code&gt;update_libraries_tb&lt;/code&gt; and &lt;code&gt;print_packages&lt;/code&gt; for updating details on module libraries (see &lt;a href=&#34;https://readyforwhatsnext.com/docs/tutorials/finding/libraries/&#34;&gt;this example&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;make_modules_tb&lt;/code&gt; and &lt;code&gt;print_modules&lt;/code&gt; for updating details on individual modules (see &lt;a href=&#34;https://readyforwhatsnext.com/docs/tutorials/finding/individual/&#34;&gt;this example&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;make_datasets_tb&lt;/code&gt; and &lt;code&gt;print_data&lt;/code&gt; for updating details on module datasets (see &lt;a href=&#34;https://readyforwhatsnext.com/docs/tutorials/finding/finding-data/&#34;&gt;this example&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;get_datasets_tb&lt;/code&gt;, &lt;code&gt;make_dss_tb&lt;/code&gt; and &lt;code&gt;make_ds_releases_tbl&lt;/code&gt; for updating release statuses of module datasets (see this &lt;a href=&#34;https://github.com/ready4-dev/readyforwhatsnext/blob/main/content/en/blog/releases/Datasets/Model-Data/People-Datasets/index_Body.Rmd&#34;&gt;RMD file&lt;/a&gt; and its &lt;a href=&#34;https://readyforwhatsnext.com/blog/2024/06/08/datasets-for-modelling-people-releases/&#34;&gt;output&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;make_programs_tbl&lt;/code&gt; for updating details on analysis programs or reporting sub-routines that use model modules (see &lt;a href=&#34;https://github.com/ready4-dev/readyforwhatsnext/blob/main/content/en/docs/Analyses/Find/index_Body.Rmd&#34;&gt;this RMD file&lt;/a&gt; and &lt;a href=&#34;https://readyforwhatsnext.com/docs/analyses/find/#current-readyforhwatsnext-programs&#34;&gt;its associated output&lt;/a&gt; as well as this &lt;a href=&#34;https://github.com/ready4-dev/readyforwhatsnext/blob/main/content/en/docs/Reporting/index_Body.Rmd&#34;&gt;RMD file&lt;/a&gt; and &lt;a href=&#34;https://readyforwhatsnext.com/docs/reporting/#current-readyforwhatsnext-subroutines&#34;&gt;its output&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;make_code_releases_tbl&lt;/code&gt; for updating release statuses of module libraries and programs or reporting sub-routines that use model modules (see this &lt;a href=&#34;https://github.com/ready4-dev/readyforwhatsnext/blob/main/content/en/blog/releases/Executables/Programs/index_Body.Rmd&#34;&gt;RMD file&lt;/a&gt; and its &lt;a href=&#34;https://readyforwhatsnext.com/blog/2024/06/08/programs-releases/&#34;&gt;output&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Paradigms</title>
      <link>/docs/getting-started/implementation/paradigm/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      
      <guid>/docs/getting-started/implementation/paradigm/</guid>
      <description>
        
        
        
      </description>
    </item>
    
    <item>
      <title>Docs: Why ready4 is object oriented</title>
      <link>/docs/getting-started/implementation/paradigm/object-oriented/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/getting-started/implementation/paradigm/object-oriented/</guid>
      <description>
        
        
        

&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This below section renders a vignette article from the ready4 library. You can use the following links to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/articles/V_03.html&#34;&gt;view the vignette on the library website (adds useful hyperlinks to code blocks)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/blob/main/vignettes/V_03.Rmd&#34;&gt;view the source file&lt;/a&gt; from that article, and;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/edit/main/vignettes/V_03.Rmd&#34;&gt;edit its contents&lt;/a&gt; (requires a GitHub account).&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/&#39;&gt;ready4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;The practical utility and ease of use of computational health economic models are in part shaped by the choice of programming paradigm used to develop them. ready4 adopts an object oriented programming (OOP) paradigm which in practice means that the framework principally consists of classes (representations of data structures useful for modelling health systems) and methods (algorithms that can be applied to these data-structures to generate insight useful for policy-making). Adopting an OOP approach is particular useful for helping to make models &lt;a href=&#34;https://www.ready4-dev.com/docs/getting-started/motivation/&#34;&gt;transparent, reusable and updatable&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;h3 id=&#34;modular-computational-models&#34;&gt;Modular Computational Models&lt;/h3&gt;
&lt;p&gt;Two commonly noted features of OOP - encapsulation and inheritance are particularly useful when developing &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/develop-models/modularity/&#34;&gt;modular computational health economic models&lt;/a&gt;.&lt;/p&gt;
&lt;h4 id=&#34;encapsulation&#34;&gt;Encapsulation&lt;/h4&gt;
&lt;p&gt;Encapsulation allows us to define the data structures (&amp;ldquo;classes&amp;rdquo;) used in computational modelling projects in a manner that allows them to be safely combined. For example, assume there are two computational health economic models, one (&lt;strong&gt;A&lt;/strong&gt;) focused on predicting the types and intensity of services used by individuals that present to health services and the other (&lt;strong&gt;B&lt;/strong&gt;) that &lt;a href=&#34;https://ready4-dev.github.io/youthu/articles/Prediction_With_Mdls.html&#34;&gt;predicts outcomes for recipients of these services&lt;/a&gt;. It may be desirable to develop a new model (&lt;strong&gt;C&lt;/strong&gt;) that combines &lt;strong&gt;A&lt;/strong&gt; and &lt;strong&gt;B&lt;/strong&gt; to model both service use and outcomes. Using encapsulated code allows all of the features and functionality of &lt;strong&gt;A&lt;/strong&gt; to be made available to &lt;strong&gt;B&lt;/strong&gt; in a manner that protects the integrity of &lt;strong&gt;A&lt;/strong&gt;. Specifically, &lt;strong&gt;B&lt;/strong&gt; can only interact with &lt;strong&gt;A&lt;/strong&gt; using the algorithms (&amp;ldquo;methods&amp;rdquo;) that have been already defined for &lt;strong&gt;A&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Furthermore, if appropriately implemented, methods associated with a class will work with any combination of input values that can be encapsulated by that class - making computational models more &lt;a href=&#34;https://www.ready4-dev.com/docs/getting-started/concepts/transferable/&#34;&gt;transferable&lt;/a&gt;. For example, imagine a class (&lt;strong&gt;X&lt;/strong&gt;) that is used to structure summary data relevant to health systems. Methods associated with &lt;strong&gt;X&lt;/strong&gt; (e.g. a method to derive an unmet need statistic) can then applied to two instances of &lt;strong&gt;X&lt;/strong&gt; - one containing data relevant to the Australian context and one with data from the UK context.&lt;/p&gt;
&lt;h4 id=&#34;inheritence&#34;&gt;Inheritence&lt;/h4&gt;
&lt;p&gt;The examples highlighted in the previous section have some potential limitations. What if the developers of &lt;strong&gt;A&lt;/strong&gt; didn&amp;rsquo;t define methods that would allow &lt;strong&gt;B&lt;/strong&gt; to interact with it in the desired way? Or what if there are a number of differences between the Australian and UK system that need to be accounted for when transferring a method from the former to the latter? These types of issues can be addressed by another key feature of OOP - inheritance. Inheritance allows for a &amp;ldquo;child&amp;rdquo; class to be created from a &amp;ldquo;parent&amp;rdquo; class. By default, the &amp;ldquo;child&amp;rdquo; inherits all of the features of the &amp;ldquo;parent&amp;rdquo; including all methods associated with the &amp;ldquo;parent&amp;rdquo; class. Importantly however, alternative or additional features can also be specified for the &amp;ldquo;child&amp;rdquo; to allow it to implement different methods where necessary. For example, when developing our new computational model &lt;strong&gt;C&lt;/strong&gt; we could create a number of new classes that are children of the classes defined in &lt;strong&gt;A&lt;/strong&gt;. We can then define any additional/alternative methods for these classes that overcome any integration issues between the classes and methods of &lt;strong&gt;A&lt;/strong&gt; and &lt;strong&gt;B&lt;/strong&gt;. In this way, we can enjoy the best of both worlds - leveraging all relevant algorithms from &lt;strong&gt;A&lt;/strong&gt; and &lt;strong&gt;B&lt;/strong&gt; (as there is no need to re-invent the wheel), while ensuring that we transparently develop the additional code required for &lt;strong&gt;C&lt;/strong&gt;. This approach also ensures that the respective contributions of the (potentially different) authorship teams behind &lt;strong&gt;A&lt;/strong&gt;, &lt;strong&gt;B&lt;/strong&gt; and &lt;strong&gt;C&lt;/strong&gt; is clearer.&lt;/p&gt;
&lt;p&gt;Similarly, inheritance would allow re-use of much of the code from a model of the Australian health system when exploring similar topics within the UK context, while making it straightforward to develop additional code that addresses relevant divergence in features between the two jurisdictions. In practical terms, this would mean developing two child classes of &lt;strong&gt;X&lt;/strong&gt; - class &lt;strong&gt;Y&lt;/strong&gt; for use with Australian data and class &lt;strong&gt;Z&lt;/strong&gt; for use in the UK system. All methods that are not specific to a particular jurisdiction are defined for &lt;strong&gt;X&lt;/strong&gt; and inherited by &lt;strong&gt;Y&lt;/strong&gt; and &lt;strong&gt;Z&lt;/strong&gt;. Methods that are only appropriate for use in the Australian context are defined for &lt;strong&gt;Y&lt;/strong&gt;, while UK specific methods are defined for &lt;strong&gt;Z&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&#34;transparent-computational-models&#34;&gt;Transparent Computational Models&lt;/h3&gt;
&lt;p&gt;To make modelling analysis programs more readily understood, the &lt;code&gt;ready4&lt;/code&gt; package provides a &lt;a href=&#34;https://www.ready4-dev.com/docs/framework/implementation/syntax/&#34;&gt;simple and consistent syntax&lt;/a&gt;. Such simplified approaches are facilitated by two other commonly noted features of OOP - polymorphism and abstraction.&lt;/p&gt;
&lt;h4 id=&#34;polymorphism&#34;&gt;Polymorphism&lt;/h4&gt;
&lt;p&gt;Polymorphism allows for similar concepts to be represented using consistent syntax. The same top level code can therefore be generalised to multiple model implementations, making algorithms simpler to understand and easier to re-use.&lt;/p&gt;
&lt;p&gt;Returning to a previous example, the exact same command (e.g. a call to the method &lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/exhibit-methods.html&#34;&gt;exhibit&lt;/a&gt;) can be applied to both &lt;strong&gt;Y&lt;/strong&gt; (used for Australian data) and &lt;strong&gt;Z&lt;/strong&gt; (used for UK data). However, the algorithm implemented by that command can vary based on the class that each method is applied to (ie a different algorithm is applied when the data is specified as being from the UK compared to being specified as Australian).&lt;/p&gt;
&lt;h4 id=&#34;abstraction&#34;&gt;Abstraction&lt;/h4&gt;
&lt;p&gt;The simplicity enabled by polymorphism is enhanced by Abstraction, which basically means that only the briefest and easiest to comprehend parts of the code are exposed by default to potential users. Once an instance of a model module template class is created, the entire program to ingest model data, analyse it and produce a scientific summary can be represented in a few brief lines of code, readily comprehensible to non-coders. When using open source languages, the elegance and simplicity of abstraction &lt;a href=&#34;https://www.ready4-dev.com/docs/framework/use/authoring-modules/authoring-algorithms/&#34;&gt;does not restrict the ability of more technically minded users exploring the detailed workings of the underpinning code&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: The role of functional programming in ready4 development</title>
      <link>/docs/getting-started/implementation/paradigm/functional/</link>
      <pubDate>Sat, 24 Dec 2022 00:00:00 +0000</pubDate>
      
      <guid>/docs/getting-started/implementation/paradigm/functional/</guid>
      <description>
        
        
        &lt;p&gt;Although the &lt;a href=&#34;/docs/framework/implementation/paradigm/object-oriented/&#34;&gt;object-oriented programming (OOP)&lt;/a&gt; approach ready4 implements has many advantages, it can also have some limitations. Some of these limitations have been colorfully highlighted by a popular quote attributed to Joe Armstrong:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;The problem with object-oriented languages is they&amp;rsquo;ve got all this implicit environment that they carry around with them. You wanted a banana but what you got was a gorilla holding the banana and the entire jungle.&amp;rdquo;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In practical terms, this means that if not carefully planned, using OOP can create barriers to code-reuse as algorithms come bundled with artefacts of no/low relevance to many potential users. To help maximise the accessibility and re-usability of ready4 algorithms, these algorithms are primarily written using the functional programming paradigm. Only once an algorithm has been implemented using functions are they then linked to a data-structure by means of a calling method. The typical development workflow for a ready4 computational &lt;a href=&#34;/docs/getting-started/concepts/project/&#34;&gt;modelling project&lt;/a&gt; might therefore look something the following three step process:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;A modelling study algorithm is initially implemented as a program.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To help &lt;a href=&#34;/docs/getting-started/concepts/transferable/&#34;&gt;transfer&lt;/a&gt; the methods used in the study algorithm, it is decomposed into functions, which are bundled as a code library (or libraries). The program is updated to use the newly authored functions.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A model module is authored from a &lt;a href=&#34;/docs/framework/implementation/modularity/&#34;&gt;template&lt;/a&gt; to define a data-structure. A method (or methods) that call the functions authored in the previous step is attached to the module(s) using the ready4 framework&amp;rsquo;s &lt;a href=&#34;/docs/tutorials/develop-models/syntax/&#34;&gt;syntax&lt;/a&gt;. The new module is added to the previously created code library and the program is again updated so that the algorithm is now implemented by supplying data to the ready4 module and then calling the desired method(s).&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;a href=&#34;/docs/getting-started/users/modeller/&#34;&gt;Modellers&lt;/a&gt; using ready4 for the most part will only use ready4 modules and will rarely interact directly with the functions that implement module methods. However, these functions are potentially of significant usefulness to &lt;a href=&#34;/docs/getting-started/users/coder/&#34;&gt;coders&lt;/a&gt; authoring new algorithms. All ready4 &lt;a href=&#34;/docs/framework/use/authoring-modules/authoring-algorithms/&#34;&gt;functions are created with minimal, but consistent documentation&lt;/a&gt; with the aid of tools from the &lt;a href=&#34;https://ready4-dev.github.io/ready4fun/&#34;&gt;ready4fun&lt;/a&gt; library.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Find themed collections of ready4 modules</title>
      <link>/docs/tutorials/use-models/finding-modules/collections/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/use-models/finding-modules/collections/</guid>
      <description>
        
        
        

&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This below section renders a vignette article from the ready4 library. You can use the following links to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/articles/V_04.html&#34;&gt;view the vignette on the library website (adds useful hyperlinks to code blocks)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/blob/main/vignettes/V_04.Rmd&#34;&gt;view the source file&lt;/a&gt; from that article, and;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/edit/main/vignettes/V_04.Rmd&#34;&gt;edit its contents&lt;/a&gt; (requires a GitHub account).&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/&#39;&gt;ready4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;To use and combine health economic model modules it is first useful to find modules that have been developed using a common framework that promotes inter-operability.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;p&gt;A table summarising currently available module libraries authored with the &lt;a href=&#34;https://www.ready4-dev.com/&#34;&gt;ready4 framework&lt;/a&gt; within a specified GitHub organisation can be retrieved from an online dataset by using the &lt;code&gt;get_libraries_tb&lt;/code&gt; and &lt;code&gt;update_libraries_tb&lt;/code&gt; functions.&lt;/p&gt;
&lt;h2 id=&#34;use&#34;&gt;Use&lt;/h2&gt;
&lt;p&gt;In the below example we will search for modules from the &lt;a href=&#34;https://readyforwhatsnext.com/&#34;&gt;readyforwhatsnext model&lt;/a&gt;. The source code for these modules all reside in the &lt;a href=&#34;https://github.com/ready4-dev&#34;&gt;ready4-dev GitHub repository&lt;/a&gt;. The value supplied to the &lt;code&gt;gh_repo_1L_chr&lt;/code&gt; argument specifies the repository in which a dataset of readyforwhatsnext module libraries is stored.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/get_libraries_tb.html&#39;&gt;get_libraries_tb&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;gh_repo_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;ready4-dev/ready4&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/update_libraries_tb.html&#39;&gt;update_libraries_tb&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;include_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;modules&#34;&lt;/span&gt;, url_stub_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;https://ready4-dev.github.io/&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;In this example, module libraries have been grouped in to the following thematic model &amp;ldquo;sections&amp;rdquo;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;$&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;Section&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/unique.html&#39;&gt;unique&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#&amp;gt; [1] &#34;People&#34;   &#34;Places&#34;   &#34;Programs&#34;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;We can use the &lt;code&gt;print_packages&lt;/code&gt; function to display a HTML summary of the module libraries currently available for each section. The resulting table summarises the types of module library (e.g. those for description, developing models or predicting with models), the name and purpose of those libraries, the locations from which development and archived library code can be downloaded and details of supporting documentation for each library (e.g. website, manuals and examples).&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_packages.html&#39;&gt;print_packages&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;, sections_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;People&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Type
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Package
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Documentation
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Code
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-description-navy?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/youthvars/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Describe and Validate Youth Mental Health Dataset Variables
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthvars/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthvars/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthvars/releases/download/Documentation_0.0/youthvars_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthvars/releases/download/Documentation_0.0/youthvars_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/youthvars/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5646550&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_01.html&#34; style=&#34;     &#34;&gt;12&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-description-navy?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/scorz/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Score Multi-Attribute Utility Instruments
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/scorz/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/scorz/releases/download/Documentation_0.0/scorz_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/scorz/releases/download/Documentation_0.0/scorz_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/scorz/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5722708&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;15&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/mychoice/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Model Youth Choice Behaviours
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/mychoice/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/mychoice/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/mychoice/releases/download/Documentation_0.0/mychoice_Developer.pdf&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/mychoice/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.7213799&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/TTU/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Implement Transfer to Utility Mapping Algorithms
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/TTU/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/TTU/releases/download/Documentation_0.0/TTU_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/TTU/releases/download/Documentation_0.0/TTU_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/TTU/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5646593&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/heterodox/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Explore and Characterise Heterogeneity in Quality of Life Data
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/heterodox/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/heterodox/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/heterodox/releases/download/Documentation_0.0/heterodox_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/heterodox/releases/download/Documentation_0.0/heterodox_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/heterodox/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5751193&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/specific/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Specify Models to Solve Inverse Problems
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/specific/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/specific/releases/download/Documentation_0.0/specific_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/specific/releases/download/Documentation_0.0/specific_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/specific/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5768689&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-prediction-forestgreen?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/youthu/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Transform Youth Outcomes to Health Utility Predictions
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthu/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthu/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthu/releases/download/Documentation_0.0/youthu_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthu/releases/download/Documentation_0.0/youthu_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/youthu/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5646668&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthu/articles/V_01.html&#34; style=&#34;     &#34;&gt;18&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_packages.html&#39;&gt;print_packages&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;, sections_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Places&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Type
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Package
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Documentation
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Code
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/aus/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Model Australian Spatial Data
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/aus/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/aus/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/aus/releases/download/Documentation_0.0/aus_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/aus/releases/download/Documentation_0.0/aus_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/aus/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.7687126&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/vicinity/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Model Spatial Features of Health Systems
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/vicinity/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/vicinity/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/vicinity/releases/download/Documentation_0.0/vicinity_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/vicinity/releases/download/Documentation_0.0/vicinity_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/vicinity/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.7623630&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_packages.html&#39;&gt;print_packages&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;, sections_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Programs&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Type
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Package
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Documentation
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Code
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/bimp/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Undertake Health Economic Budget Impact Analysis.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/bimp/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/bimp/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/bimp/releases/download/Documentation_0.0/bimp_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/bimp/releases/download/Documentation_0.0/bimp_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/bimp/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5889462&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/costly/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Develop, Use and Share Unit Cost Datasets for Health Economic
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/costly/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/costly/releases/download/Documentation_0.0/costly_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/costly/releases/download/Documentation_0.0/costly_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/costly/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/costly/&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_01.html&#34; style=&#34;     &#34;&gt;19&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;20&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;h2 id=&#34;related-content&#34;&gt;Related content&lt;/h2&gt;
&lt;p&gt;Details of how to search for details on individual modules is described in &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/use-models/finding-modules/modules/&#34;&gt;another article&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Commands for using model modules</title>
      <link>/docs/tutorials/use-models/authoring-analyses/commands/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/use-models/authoring-analyses/commands/</guid>
      <description>
        
        
        

&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This below section renders a vignette article from the ready4show library. You can use the following links to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/articles/V_02.html&#34;&gt;view the vignette on the library website (adds useful hyperlinks to code blocks)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/blob/main/vignettes/V_02.Rmd&#34;&gt;view the source file&lt;/a&gt; from that article, and;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/edit/main/vignettes/V_02.Rmd&#34;&gt;edit its contents&lt;/a&gt; (requires a GitHub account).&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/&#39;&gt;ready4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;To be used in health economic analyses, model modules need to be called using a programming syntax. Ideally that syntax should be relatively simple, with the name and description of each command reliably communicating the category of operations it performs.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;ready4&lt;/code&gt; provides a simple syntax that is used by all model modules developed with the &lt;a href=&#34;https://www.ready4-dev.com/&#34;&gt;&lt;code&gt;ready4&lt;/code&gt; framework&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;use&#34;&gt;Use&lt;/h2&gt;
&lt;p&gt;A table that itemises &lt;code&gt;ready4&lt;/code&gt; commands along with examples of how these commands are used can be ingested from a periodically updated database using &lt;code&gt;get_methods_tb&lt;/code&gt;. In the below example we will search for examples of where that syntax has been used by modules from the &lt;a href=&#34;https://readyforwhatsnext.com/&#34;&gt;readyforwhatsnext model&lt;/a&gt;. The value supplied to the &lt;code&gt;gh_repo_1L_chr&lt;/code&gt; argument specifies the repository in which a dataset of readyforwhatsnext module libraries is stored.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;x&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/get_methods_tb.html&#39;&gt;get_methods_tb&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;gh_repo_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;ready4-dev/ready4&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h3 id=&#34;core-commands&#34;&gt;Core commands&lt;/h3&gt;
&lt;p&gt;A HTML table of &lt;code&gt;ready4&lt;/code&gt;&amp;rsquo;s core commands and examples of the use of each command can be displayed using the &lt;code&gt;print_methods&lt;/code&gt; function, using the &lt;code&gt;return_1L_chr = &amp;quot;core&amp;quot;&lt;/code&gt; argument.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_methods.html&#39;&gt;print_methods&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;x&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              return_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;core&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              scroll_width_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;100%&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;div style=&#34;border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; &#34;&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Method
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/author-methods.html&#34;&gt; author &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Author and save files
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4fun/articles/V_01.html&#34; style=&#34;     &#34;&gt;5&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/ready4class/articles/V_01.html&#34; style=&#34;     &#34;&gt;6&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/ready4pack/articles/V_01.html&#34; style=&#34;     &#34;&gt;7&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/characterize-methods.html&#34;&gt; characterize &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Characterize model module data by generating (tabular) descriptive statistics
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/depict-methods.html&#34;&gt; depict &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Depict (plot) features of model module data
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;15&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/enhance-methods.html&#34;&gt; enhance &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Enhance a model module by adding new elements
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/exhibit-methods.html&#34;&gt; exhibit &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Exhibit features of model module data by printing them to the R console
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4use/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/ready4fun/articles/V_01.html&#34; style=&#34;     &#34;&gt;5&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/ready4class/articles/V_01.html&#34; style=&#34;     &#34;&gt;6&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;15&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthu/articles/V_01.html&#34; style=&#34;     &#34;&gt;18&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_01.html&#34; style=&#34;     &#34;&gt;19&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;20&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/ingest-methods.html&#34;&gt; ingest &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Ingest data
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4use/articles/V_01.html&#34; style=&#34;     &#34;&gt;1&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/ready4use/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/ready4use/articles/V_03.html&#34; style=&#34;     &#34;&gt;3&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/ready4class/articles/V_01.html&#34; style=&#34;     &#34;&gt;6&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;15&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthu/articles/V_01.html&#34; style=&#34;     &#34;&gt;18&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/investigate-methods.html&#34;&gt; investigate &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Investigate solutions to an inverse problem
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/manufacture-methods.html&#34;&gt; manufacture &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Manufacture a new object
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/metamorphose-methods.html&#34;&gt; metamorphose &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Metamorphose a model module to a model module of a different (non-inheriting) class
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/procure-methods.html&#34;&gt; procure &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Procure items from a dataset
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4fun/articles/V_01.html&#34; style=&#34;     &#34;&gt;5&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/prognosticate-methods.html&#34;&gt; prognosticate &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Prognosticate (make predictions) by solving a forward problem
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/ratify-methods.html&#34;&gt; ratify &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Ratify that input or output data meet validity criteria
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_01.html&#34; style=&#34;     &#34;&gt;19&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;20&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/reckon-methods.html&#34;&gt; reckon &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Reckon (calculate) a value
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/renew-methods.html&#34;&gt; renew &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Renew (update) values
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4use/articles/V_01.html&#34; style=&#34;     &#34;&gt;1&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/ready4use/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;15&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_01.html&#34; style=&#34;     &#34;&gt;19&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;20&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/share-methods.html&#34;&gt; share &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Share data via an online repository
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4use/articles/V_01.html&#34; style=&#34;     &#34;&gt;1&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;15&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h3 id=&#34;applying-commands-to-module-slots&#34;&gt;Applying commands to module &amp;ldquo;slots&amp;rdquo;&lt;/h3&gt;
&lt;p&gt;Each of the &amp;ldquo;core&amp;rdquo; commands also has a &amp;ldquo;slot&amp;rdquo; version, which applies the command to a specified slot (a named element of a module). Two of these &amp;ldquo;slot&amp;rdquo; methods can also be used for additional purposes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/procureSlot-methods.html&#34;&gt;procureSlot&lt;/a&gt; is a &amp;ldquo;getter&amp;rdquo; method - its default behaviour is to return the value of a specified slot. If the argument &lt;code&gt;use_procure_mthd_1L_lgl = T&lt;/code&gt; is included in the method call, &lt;code&gt;procureSlot&lt;/code&gt; will instead apply the &lt;code&gt;procure&lt;/code&gt; method to a specified slot.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/procureSlot-methods.html&#34;&gt;renewSlot&lt;/a&gt; is a &amp;ldquo;setter&amp;rdquo; method - if any value other than &amp;ldquo;use_renew_mthd&amp;rdquo; (the default) is passed to the &lt;code&gt;new_val_xx&lt;/code&gt; argument, that value will be assigned to the specified slot.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A HTML table of slot commands and relevant examples can be displayed using the &lt;code&gt;print_methods&lt;/code&gt; function, using the &lt;code&gt;return_1L_chr = &amp;quot;slot&amp;quot;&lt;/code&gt; argument.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_methods.html&#39;&gt;print_methods&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;x&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              return_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;slot&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              scroll_width_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;100%&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;div style=&#34;border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; &#34;&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Method
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/authorSlot-methods.html&#34;&gt; authorSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the author method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/characterizeSlot-methods.html&#34;&gt; characterizeSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the characterize method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/depictSlot-methods.html&#34;&gt; depictSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the depict method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/enhanceSlot-methods.html&#34;&gt; enhanceSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the enhance method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/exhibitSlot-methods.html&#34;&gt; exhibitSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the exhibit method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4show/articles/V_01.html&#34; style=&#34;     &#34;&gt;4&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_01.html&#34; style=&#34;     &#34;&gt;19&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;20&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/ingestSlot-methods.html&#34;&gt; ingestSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the ingest method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/investigateSlot-methods.html&#34;&gt; investigateSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the investigate method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/manufactureSlot-methods.html&#34;&gt; manufactureSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the manufacture method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/metamorphoseSlot-methods.html&#34;&gt; metamorphoseSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the metamorphose method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/procureSlot-methods.html&#34;&gt; procureSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Procure (get) data from a slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4show/articles/V_01.html&#34; style=&#34;     &#34;&gt;4&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/prognosticateSlot-methods.html&#34;&gt; prognosticateSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the prognosticate method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/ratifySlot-methods.html&#34;&gt; ratifySlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the ratify method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/reckonSlot-methods.html&#34;&gt; reckonSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the reckon method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#34;&gt; renewSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Renew (set) the values of data in a module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4show/articles/V_01.html&#34; style=&#34;     &#34;&gt;4&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_01.html&#34; style=&#34;     &#34;&gt;19&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;20&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/shareSlot-methods.html&#34;&gt; shareSlot &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Apply the share method to a model module slot
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h3 id=&#34;extended-commands&#34;&gt;Extended commands&lt;/h3&gt;
&lt;p&gt;Finally, there are a small number of other commands that are more general extensions of the core commands. Currently, these extended commands are all variants on the &lt;code&gt;author&lt;/code&gt; command, with each extension specifying the type of output to be authored by the method. A HTML table of the extended generics bundled with &lt;code&gt;ready4&lt;/code&gt; can be displayed using the &lt;code&gt;print_methods&lt;/code&gt; function, using the &lt;code&gt;return_1L_chr = &amp;quot;extended&amp;quot;&lt;/code&gt; argument.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_methods.html&#39;&gt;print_methods&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;x&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              exclude_mthds_for_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Ready4Module&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              return_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;extended&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              scroll_width_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;100%&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;div style=&#34;border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; &#34;&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Method
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/authorClasses-methods.html&#34;&gt; authorClasses &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Author and document classes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/authorData-methods.html&#34;&gt; authorData &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Author and document datasets
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4show/articles/V_01.html&#34; style=&#34;     &#34;&gt;4&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/authorFunctions-methods.html&#34;&gt; authorFunctions &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Author and document functions
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4/reference/authorReport-methods.html&#34;&gt; authorReport &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Author and save a report
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/ready4show/articles/V_01.html&#34; style=&#34;     &#34;&gt;4&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Finding modules of health economic models</title>
      <link>/docs/tutorials/use-models/finding-modules/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/use-models/finding-modules/</guid>
      <description>
        
        
        
      </description>
    </item>
    
    <item>
      <title>Docs: Find examples of how model modules are used</title>
      <link>/docs/tutorials/use-models/finding-modules/modules/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/use-models/finding-modules/modules/</guid>
      <description>
        
        
        

&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This below section renders a vignette article from the ready4 library. You can use the following links to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4/articles/V_04.html&#34;&gt;view the vignette on the library website (adds useful hyperlinks to code blocks)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/blob/main/vignettes/V_04.Rmd&#34;&gt;view the source file&lt;/a&gt; from that article, and;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4/edit/main/vignettes/V_04.Rmd&#34;&gt;edit its contents&lt;/a&gt; (requires a GitHub account).&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/&#39;&gt;ready4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;To use and combine health economic model modules it is first useful to find modules that have been developed using a common framework that promotes inter-operability.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;p&gt;A table summarising currently available module libraries authored with the &lt;a href=&#34;https://www.ready4-dev.com/&#34;&gt;ready4 framework&lt;/a&gt; within a specified GitHub organisation can be retrieved from an online dataset by using the &lt;code&gt;get_libraries_tb&lt;/code&gt; and &lt;code&gt;update_libraries_tb&lt;/code&gt; functions.&lt;/p&gt;
&lt;h2 id=&#34;use&#34;&gt;Use&lt;/h2&gt;
&lt;p&gt;In the below example we will search for modules from the &lt;a href=&#34;https://readyforwhatsnext.com/&#34;&gt;readyforwhatsnext model&lt;/a&gt;. The source code for these modules all reside in the &lt;a href=&#34;https://github.com/ready4-dev&#34;&gt;ready4-dev GitHub repository&lt;/a&gt;. The value supplied to the &lt;code&gt;gh_repo_1L_chr&lt;/code&gt; argument specifies the repository in which a dataset of readyforwhatsnext module libraries is stored.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/get_libraries_tb.html&#39;&gt;get_libraries_tb&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;gh_repo_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;ready4-dev/ready4&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/update_libraries_tb.html&#39;&gt;update_libraries_tb&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;include_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;modules&#34;&lt;/span&gt;, url_stub_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;https://ready4-dev.github.io/&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;In this example, module libraries have been grouped in to the following thematic model &amp;ldquo;sections&amp;rdquo;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;$&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;Section&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/unique.html&#39;&gt;unique&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#&amp;gt; [1] &#34;People&#34;   &#34;Places&#34;   &#34;Programs&#34;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;We can use the &lt;code&gt;print_packages&lt;/code&gt; function to display a HTML summary of the module libraries currently available for each section. The resulting table summarises the types of module library (e.g. those for description, developing models or predicting with models), the name and purpose of those libraries, the locations from which development and archived library code can be downloaded and details of supporting documentation for each library (e.g. website, manuals and examples).&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_packages.html&#39;&gt;print_packages&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;, sections_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;People&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Type
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Package
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Documentation
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Code
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-description-navy?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/youthvars/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Describe and Validate Youth Mental Health Dataset Variables
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthvars/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthvars/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthvars/releases/download/Documentation_0.0/youthvars_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthvars/releases/download/Documentation_0.0/youthvars_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/youthvars/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5646550&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_01.html&#34; style=&#34;     &#34;&gt;12&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/youthvars/articles/V_02.html&#34; style=&#34;     &#34;&gt;13&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-description-navy?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/scorz/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Score Multi-Attribute Utility Instruments
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/scorz/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/scorz/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/scorz/releases/download/Documentation_0.0/scorz_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/scorz/releases/download/Documentation_0.0/scorz_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/scorz/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5722708&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_01.html&#34; style=&#34;     &#34;&gt;14&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;15&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/mychoice/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Model Youth Choice Behaviours
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/mychoice/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/mychoice/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/mychoice/releases/download/Documentation_0.0/mychoice_Developer.pdf&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/mychoice/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.7213799&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/TTU/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Implement Transfer to Utility Mapping Algorithms
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/TTU/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/TTU/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/TTU/releases/download/Documentation_0.0/TTU_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/TTU/releases/download/Documentation_0.0/TTU_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/TTU/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5646593&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/TTU/articles/V_01.html&#34; style=&#34;     &#34;&gt;16&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/heterodox/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Explore and Characterise Heterogeneity in Quality of Life Data
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/heterodox/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/heterodox/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/heterodox/releases/download/Documentation_0.0/heterodox_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/heterodox/releases/download/Documentation_0.0/heterodox_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/heterodox/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5751193&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/specific/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Specify Models to Solve Inverse Problems
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/specific/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/specific/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/specific/releases/download/Documentation_0.0/specific_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/specific/releases/download/Documentation_0.0/specific_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/specific/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5768689&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/specific/articles/V_01.html&#34; style=&#34;     &#34;&gt;17&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-prediction-forestgreen?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/youthu/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Transform Youth Outcomes to Health Utility Predictions
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthu/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/youthu/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthu/releases/download/Documentation_0.0/youthu_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/youthu/releases/download/Documentation_0.0/youthu_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/youthu/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5646668&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/youthu/articles/V_01.html&#34; style=&#34;     &#34;&gt;18&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_packages.html&#39;&gt;print_packages&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;, sections_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Places&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Type
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Package
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Documentation
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Code
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/aus/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Model Australian Spatial Data
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/aus/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/aus/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/aus/releases/download/Documentation_0.0/aus_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/aus/releases/download/Documentation_0.0/aus_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/aus/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.7687126&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/vicinity/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Model Spatial Features of Health Systems
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/vicinity/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/vicinity/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/vicinity/releases/download/Documentation_0.0/vicinity_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/vicinity/releases/download/Documentation_0.0/vicinity_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/vicinity/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.7623630&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_packages.html&#39;&gt;print_packages&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;libraries_tb&lt;/span&gt;, sections_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Programs&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;table class=&#34;table table-hover table-condensed&#34; style=&#34;color: black; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Type
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Package
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Purpose
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Documentation
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Code
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Examples
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/bimp/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Undertake Health Economic Budget Impact Analysis.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/bimp/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/bimp/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/bimp/releases/download/Documentation_0.0/bimp_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/bimp/releases/download/Documentation_0.0/bimp_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/bimp/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.5281/zenodo.5889462&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://img.shields.io/badge/ready4-modelling-indigo?style=flat&amp;amp;labelColor=black&amp;amp;logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAIXRFWHRDcmVhdGlvbiBUaW1lADIwMjI6MDM6MDcgMTY6MTM6NTPZeG5UAAABa0lEQVQ4T4WT607CQBCFpyUi3qIR0eAfNfCi/vENfEgENIAIlcJ6vr1oLaZOerJzdst0zpklc49nznqHZs6ZfWwDem1xM1sqXwtXkb8rL4SuOLEoLXPPXWfD01Dg9dPsrTQbngQ+EZ+LDyIfiy/FHyIfFZbbTslWKOOqxx/uWBPSfp07FahGlqlNfWGqL9HNfBO+CAfwdO55WS8g4MFML834sfJVA9e7vwsg50aGohncdmRojV9XeL+jArRNmZxVSJ4Acj3NHqARdyeFJqC2KJiCfKE9zsfxnNYTl5TcCtmNMcwY/ZXf+3wdzzVza2vj4iCaq3d1R/bvwVSH6IPjNIUHx0FSNZA7WquDqOVb35+eiO8h7Oe+vRfp0a3yGtFMDuiAIg2R20YaVwJ3Hj+4kehO/J/I7VJ/jHtpvBP6mrHnR4EzdyQ0xI8HhM8jUiChxVpDK3iVuadzx43yRdI4E2d0gNtX74TCs419AR8YEST/cHPBAAAAAElFTkSuQmCC&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;img src=&#34;https://ready4-dev.github.io/costly/logo.png&#34; width=&#34;51.2&#34; height=&#34;51.2&#34;&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Develop, Use and Share Unit Cost Datasets for Health Economic
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/costly/authors.html&#34; style=&#34;     &#34;&gt;Citation&lt;/a&gt; , &lt;a href=&#34;https://ready4-dev.github.io/costly/index.html&#34; style=&#34;     &#34;&gt;Website&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/costly/releases/download/Documentation_0.0/costly_User.pdf&#34; style=&#34;     &#34;&gt;Manual - Short (PDF)&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/costly/releases/download/Documentation_0.0/costly_Developer.pdf&#34; style=&#34;     &#34;&gt;Manual - Full (PDF)&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://github.com/ready4-dev/costly/&#34; style=&#34;     &#34;&gt;Dev&lt;/a&gt; , &lt;a href=&#34;https://github.com/ready4-dev/costly/&#34; style=&#34;     &#34;&gt;Archive&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_01.html&#34; style=&#34;     &#34;&gt;19&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;20&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;h2 id=&#34;related-content&#34;&gt;Related content&lt;/h2&gt;
&lt;p&gt;Details of how to search for details on individual modules is described in &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/use-models/finding-modules/modules/&#34;&gt;another article&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Authoring scientific manuscripts</title>
      <link>/docs/tutorials/use-models/authoring-analyses/scientific-summaries/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/use-models/authoring-analyses/scientific-summaries/</guid>
      <description>
        
        
        

&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This below section renders a vignette article from the ready4show library. You can use the following links to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://ready4-dev.github.io/ready4show/articles/V_01.html&#34;&gt;view the vignette on the library website (adds useful hyperlinks to code blocks)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4show/blob/master/vignettes/V_01.Rmd&#34;&gt;view the source file&lt;/a&gt; from that article, and;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4show/edit/master/vignettes/V_01.Rmd&#34;&gt;edit its contents&lt;/a&gt; (requires a GitHub account).&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;Open science workflows should ideally span an unbroken chain between data-ingest to production of a scientific summary such as a manuscript. Such extensive workflows provide an explicit means of linking all content in a scientific summary with the analysis that it reports.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;ready4show&lt;/code&gt; includes a number of classes and methods that help integrate manuscript authoring into a reproducible workflow. These tools are part of the &lt;a href=&#34;https://www.ready4-dev.com&#34;&gt;ready4 framework for transparent, reusable and updatable health economic models&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;load-required-libraries&#34;&gt;Load required libraries&lt;/h3&gt;
&lt;p&gt;We first begin by loading the libraries we will require to implement this workflow.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/&#39;&gt;ready4&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4show/&#39;&gt;ready4show&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://github.com/rstudio/bookdown&#39;&gt;bookdown&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;kr&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/library.html&#39;&gt;library&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;&lt;a href=&#39;https://github.com/rstudio/rticles&#39;&gt;rticles&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h3 id=&#34;set-consent-policy&#34;&gt;Set consent policy&lt;/h3&gt;
&lt;p&gt;By default, methods in the &lt;code&gt;ready4show&lt;/code&gt; package will request your consent before writing files to your machine. This is the safest option. However, as there are many files that need to be written locally for this program to execute, you can overwrite this default by supplying the value &amp;ldquo;Y&amp;rdquo; to methods with a &lt;code&gt;consent_1L_chr&lt;/code&gt; argument.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;consent_1L_chr&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;&#34;&lt;/span&gt; &lt;span class=&#39;c&#39;&gt;# Default value - asks for consent prior to writing each file.&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;h3 id=&#34;create-a-synopsis-of-the-manuscript-to-be-authored&#34;&gt;Create a synopsis of the manuscript to be authored&lt;/h3&gt;
&lt;p&gt;To start with we create &lt;code&gt;X&lt;/code&gt;, an instance of &lt;code&gt;Ready4showSynopsis&lt;/code&gt;, a ready4 module (S4 class). We can use &lt;code&gt;X&lt;/code&gt; to record metadata about the manuscript to be authored (including details about the study being summarised and the title and format of the intended output).&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4show/reference/Ready4showSynopsis-class.html&#39;&gt;Ready4showSynopsis&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;background_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Our study is entirely fictional.&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        coi_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;None declared.&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        conclusion_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;These fake results are not interesting.&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        digits_int &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;m&#39;&gt;3L&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        ethics_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;The study was reviewed and granted approval by Awesome University&#39;s Human Research Ethics Committee (1111111.1).&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        funding_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;The study was funded by Generous Benefactor.&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        interval_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;three months&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        keywords_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/c.html&#39;&gt;c&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;entirely&#34;&lt;/span&gt;,&lt;span class=&#39;s&#39;&gt;&#34;fake&#34;&lt;/span&gt;,&lt;span class=&#39;s&#39;&gt;&#34;do&#34;&lt;/span&gt;, &lt;span class=&#39;s&#39;&gt;&#34;not&#34;&lt;/span&gt;,&lt;span class=&#39;s&#39;&gt;&#34;cite&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        outp_formats_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;PDF&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        sample_desc_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;The study sample is fake data that pretends to be young people aged 12 to 25 years who attended Australian primary care services for mental health related needs between November 2019 to August 2020.&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;                        title_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;A hypothetical study using fake data&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h3 id=&#34;add-authorship-details&#34;&gt;Add authorship details&lt;/h3&gt;
&lt;p&gt;Authorship details can be added to slots of &lt;code&gt;X&lt;/code&gt; that contain &lt;code&gt;ready4show_authors&lt;/code&gt; and &lt;code&gt;ready4show_instututes&lt;/code&gt; ready4 sub-modules.&lt;/p&gt;
&lt;p&gt;As we can see from the below call to &lt;code&gt;exhibitSlot&lt;/code&gt;, &lt;code&gt;X&lt;/code&gt; was created with no authorship information.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/exhibitSlot-methods.html&#39;&gt;exhibitSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            &lt;span class=&#39;s&#39;&gt;&#34;authors_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            scroll_box_args_ls &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/list.html&#39;&gt;list&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;width &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;100%&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;div style=&#34;border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; &#34;&gt;
&lt;table class=&#34; lightable-paper lightable-hover lightable-paper&#34; style=&#34;color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; width: auto !important; margin-left: auto; margin-right: auto;border-bottom: 0; color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
First-name
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Middle-name
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Last-name
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Title
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Qualifications
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Institutes
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Sequence Position
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Corresponding
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Email
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Joint-first
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;tfoot&gt;
&lt;tr&gt;
&lt;td style=&#34;padding: 0; &#34; colspan=&#34;100%&#34;&gt;
&lt;sup&gt;&lt;/sup&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tfoot&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;We can add details on each author by repeated calls to the &lt;code&gt;renewSlot&lt;/code&gt; method.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          &lt;span class=&#39;s&#39;&gt;&#34;authors_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          first_nm_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Alejandra&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          middle_nm_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Rocio&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          last_nm_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Scienceace&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          title_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Dr&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          qualifications_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;MD, PhD&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          institute_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Institute_A, Institute_B&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          sequence_int &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;m&#39;&gt;1&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          is_corresponding_lgl &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;kc&#39;&gt;T&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          email_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;fake_email@fake_institute.com&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;authors_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            first_nm_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Fionn&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            middle_nm_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Seamus&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            last_nm_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Researchchamp&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            title_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Prof&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            qualifications_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;MSc, PhD&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            institute_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Institute_C, Institute_B&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            sequence_int &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;m&#39;&gt;2&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            email_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;fake_email@unreal_institute.com&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;
&lt;span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;The updated authorship table can now be inspected.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/exhibitSlot-methods.html&#39;&gt;exhibitSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;authors_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              scroll_box_args_ls &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/list.html&#39;&gt;list&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;width &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;100%&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;div style=&#34;border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; &#34;&gt;
&lt;table class=&#34; lightable-paper lightable-hover lightable-paper&#34; style=&#34;color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; width: auto !important; margin-left: auto; margin-right: auto;border-bottom: 0; color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
First-name
&lt;/th&gt;
&lt;th style=&#34;text-align:right;&#34;&gt;
Middle-name
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Last-name
&lt;/th&gt;
&lt;th style=&#34;text-align:right;&#34;&gt;
Title
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Qualifications
&lt;/th&gt;
&lt;th style=&#34;text-align:right;&#34;&gt;
Institutes
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Sequence Position
&lt;/th&gt;
&lt;th style=&#34;text-align:right;&#34;&gt;
Corresponding
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Email
&lt;/th&gt;
&lt;th style=&#34;text-align:right;&#34;&gt;
Joint-first
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Alejandra
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Rocio
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Scienceace
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Dr
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
MD, PhD
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Institute_A, Institute_B
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
1
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
TRUE
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;fake_email@fake&gt;\_institute.com
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
NA
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Fionn
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Seamus
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Researchchamp
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Prof
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
MSc, PhD
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Institute_C, Institute_B
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
2
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
NA
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;fake_email@unreal&gt;\_institute.com
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
NA
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;tfoot&gt;
&lt;tr&gt;
&lt;td style=&#34;padding: 0; &#34; colspan=&#34;100%&#34;&gt;
&lt;sup&gt;&lt;/sup&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tfoot&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;We now need to add additional information for each author institute.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          &lt;span class=&#39;s&#39;&gt;&#34;institutes_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          short_name_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Institute_A&#34;&lt;/span&gt;, &lt;/span&gt;
&lt;span&gt;          long_name_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Awesome University, Shanghai&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;institutes_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            short_name_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Institute_B&#34;&lt;/span&gt;, &lt;/span&gt;
&lt;span&gt;            long_name_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;August Institution, London&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;institutes_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            new_val_xx &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;use_renew_mthd&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;            short_name_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Institute_C&#34;&lt;/span&gt;, &lt;/span&gt;
&lt;span&gt;            long_name_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Highly Ranked Uni, Montreal&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;The updated institutes table can now be inspected.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/exhibitSlot-methods.html&#39;&gt;exhibitSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;institutes_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              scroll_box_args_ls &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/list.html&#39;&gt;list&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;width &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;100%&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;div style=&#34;border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; &#34;&gt;
&lt;table class=&#34; lightable-paper lightable-hover lightable-paper&#34; style=&#34;color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; width: auto !important; margin-left: auto; margin-right: auto;border-bottom: 0; color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Reference
&lt;/th&gt;
&lt;th style=&#34;text-align:right;&#34;&gt;
Name
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Institute_A
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Awesome University, Shanghai
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Institute_B
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
August Institution, London
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Institute_C
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
Highly Ranked Uni, Montreal
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;tfoot&gt;
&lt;tr&gt;
&lt;td style=&#34;padding: 0; &#34; colspan=&#34;100%&#34;&gt;
&lt;sup&gt;&lt;/sup&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tfoot&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h3 id=&#34;add-correspondences&#34;&gt;Add correspondences&lt;/h3&gt;
&lt;p&gt;We can also add a look-up table about any changes we wish to make from the analysis code of how names of variables / parameters are presented in the manuscript text.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;               &lt;span class=&#39;s&#39;&gt;&#34;correspondences_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;               old_nms_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/c.html&#39;&gt;c&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;PHQ9&#34;&lt;/span&gt;, &lt;span class=&#39;s&#39;&gt;&#34;GAD7&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;               new_nms_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/c.html&#39;&gt;c&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;PHQ-9&#34;&lt;/span&gt;, &lt;span class=&#39;s&#39;&gt;&#34;GAD-7&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;These edits can now be inspected with a call to &lt;code&gt;exhibitSlot&lt;/code&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/exhibitSlot-methods.html&#39;&gt;exhibitSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;correspondences_r3&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;              scroll_box_args_ls &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/list.html&#39;&gt;list&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;width &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;100%&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;c&#39;&gt;# Add Exhibit Method&lt;/span&gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;div style=&#34;border: 1px solid #ddd; padding: 5px; overflow-x: scroll; width:100%; &#34;&gt;
&lt;table class=&#34; lightable-paper lightable-hover lightable-paper&#34; style=&#34;color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; width: auto !important; margin-left: auto; margin-right: auto;border-bottom: 0; color: black; font-family: &amp;quot;Arial Narrow&amp;quot;, arial, helvetica, sans-serif; margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Old name
&lt;/th&gt;
&lt;th style=&#34;text-align:right;&#34;&gt;
New name
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
PHQ9
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
PHQ-9
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
GAD7
&lt;/td&gt;
&lt;td style=&#34;text-align:right;&#34;&gt;
GAD-7
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;tfoot&gt;
&lt;tr&gt;
&lt;td style=&#34;padding: 0; &#34; colspan=&#34;100%&#34;&gt;
&lt;sup&gt;&lt;/sup&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tfoot&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h3 id=&#34;specify-output-directory&#34;&gt;Specify output directory&lt;/h3&gt;
&lt;p&gt;We now update &lt;code&gt;X&lt;/code&gt; with details of the directory to which we wish to write the manuscript we are authoring and all its supporting files.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;               &lt;span class=&#39;s&#39;&gt;&#34;a_Ready4showPaths@outp_data_dir_1L_chr&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;               new_val_xx &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/base/tempfile.html&#39;&gt;tempdir&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h3 id=&#34;create-dataset-of-literate-programming-files&#34;&gt;Create dataset of literate programming files&lt;/h3&gt;
&lt;p&gt;Our next step is to copy a dataset of files that can implement a literate program to generate our manuscript. If you have a template you wish to work with, you can specify its local path using the &lt;code&gt;a_Ready4showPaths@mkdn_source_dir_1L_chr&lt;/code&gt; slot of the &lt;code&gt;X&lt;/code&gt;. Skip this step if you wish to use &lt;a href=&#34;https://github.com/ready4-dev/ms_tmpl&#34;&gt;the default markdown dataset&lt;/a&gt;, which leverages popular rmarkdown toolkits such as &lt;code&gt;bookdown&lt;/code&gt; and &lt;code&gt;rticles&lt;/code&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;c&#39;&gt;## Not run&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;# procureSlot(X,&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#             &#34;a_Ready4showPaths@mkdn_source_dir_1L_chr&#34;,&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#             new_val_xx  = &#34;PATH TO MARKDOWN DATASET&#34;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;We create the dataset copy with the &lt;code&gt;authorData&lt;/code&gt; method.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/authorData-methods.html&#39;&gt;authorData&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;, consent_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nv&#39;&gt;consent_1L_chr&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Having created a local copy of the template literate program files dataset, it is now possible to manually edit the markdown files to author the manuscript. However, in this example we are skipping this step and will continue to use the unedited template in conjunction with the metadata we have specified in &lt;code&gt;X&lt;/code&gt;. We combine the two to author a manuscript using the &lt;code&gt;authorReport&lt;/code&gt; method.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/authorReport-methods.html&#39;&gt;authorReport&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;, consent_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nv&#39;&gt;consent_1L_chr&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;If we wish, we can now ammend &lt;code&gt;X&lt;/code&gt; and then rerun the &lt;code&gt;authorReport&lt;/code&gt; method to generate Word and HTML versions of the manuscript.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          &lt;span class=&#39;s&#39;&gt;&#34;outp_formats_chr&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          new_val_xx &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;Word&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/authorReport-methods.html&#39;&gt;authorReport&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;consent_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nv&#39;&gt;consent_1L_chr&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;pre class=&#39;chroma&#39;&gt;&lt;code class=&#39;language-r&#39; data-lang=&#39;r&#39;&gt;&lt;span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/renewSlot-methods.html&#39;&gt;renewSlot&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;X&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          &lt;span class=&#39;s&#39;&gt;&#34;outp_formats_chr&#34;&lt;/span&gt;,&lt;/span&gt;
&lt;span&gt;          new_val_xx &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;HTML&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;&lt;a href=&#39;https://magrittr.tidyverse.org/reference/pipe.html&#39;&gt;%&amp;gt;%&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;  &lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/authorReport-methods.html&#39;&gt;authorReport&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;consent_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;nv&#39;&gt;consent_1L_chr&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;p&gt;The outputed files are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4show/releases/download/Documentation_0.0/Manuscript.pdf&#34;&gt;PDF version&lt;/a&gt; (and &lt;a href=&#34;https://github.com/ready4-dev/ready4show/releases/download/Documentation_0.0/Manuscript.tex&#34;&gt;LaTeX file that generated it&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4show/releases/download/Documentation_0.0/Manuscript.docx&#34;&gt;Word version&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/ready4-dev/ready4show/releases/download/Documentation_0.0/Manuscript.html&#34;&gt;HTML version&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Using model modules for repeatable analyses</title>
      <link>/docs/tutorials/use-models/authoring-analyses/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/use-models/authoring-analyses/</guid>
      <description>
        
        
        
      </description>
    </item>
    
  </channel>
</rss>
