<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>ready4 – Software - libraries (ready4)</title>
    <link>/tags/software-libraries-ready4/</link>
    <description>Recent content in Software - libraries (ready4) on ready4</description>
    <generator>Hugo -- gohugo.io</generator>
    <lastBuildDate>Wed, 28 Jan 2026 00:00:00 +0000</lastBuildDate>
    
	  <atom:link href="/tags/software-libraries-ready4/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Docs: Template module</title>
      <link>/docs/tutorials/develop-models/modularity/</link>
      <pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
      
      <guid>/docs/tutorials/develop-models/modularity/</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_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/ready4/blob/main/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/ready4/edit/main/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;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;div class=&#34;highlight&#34;&gt;
&lt;/div&gt;
&lt;h2 id=&#34;motivation&#34;&gt;Motivation&lt;/h2&gt;
&lt;p&gt;A potentially attractive approach to modelling complex health systems is to begin with a relatively simple computational model and to progressively extend its scope and sophistication. Such an approach could be described as &amp;ldquo;modular&amp;rdquo; if it is possible to readily combine multiple discrete modelling projects (potentially developed by different modelling teams) that each independently describe distinct aspects of the system being modelled.&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; facilitates modular model development by supplying a template module that enables model developers to avail of the &lt;a href=&#34;https://www.ready4-dev.com/docs/framework/implementation/paradigm/object-oriented/&#34;&gt;encapsulation and inheritance features of Object Oriented Programming (OOP)&lt;/a&gt;. The &lt;a href=&#34;https://www.ready4-dev.com/&#34;&gt;ready4 framework&lt;/a&gt; uses two of R&amp;rsquo;s systems for implementing OOP - S3 and S4. An in-depth explanation of R&amp;rsquo;s different class system is beyond the scope of this article, but is explored in &lt;a href=&#34;https://adv-r.hadley.nz/oo.html&#34;&gt;Hadley Wickham&amp;rsquo;s Advanced R handbook&lt;/a&gt;. However, it is useful to know some very high level information about S3 and S4 classes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;S4 classes are frequently said to be &amp;ldquo;formal&amp;rdquo;, &amp;ldquo;strict&amp;rdquo; or &amp;ldquo;rigorous&amp;rdquo;. The elements of an S4 class are called slots and the type of data that each slot is allowed to contain is specified in the class definition. An S4 class can be comprised of slots that contain different types of data (e.g. a slot that contains a character vector and another slot that contains tabular data).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;S3 classes are often described as &amp;ldquo;simple&amp;rdquo;, &amp;ldquo;informal&amp;rdquo; and &amp;ldquo;flexible&amp;rdquo;. S3 objects attach an attribute label to base type objects (e.g. a character vector, a data.frame, a list), which in turn is used to work out what methods should be applied to the class.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;use&#34;&gt;Use&lt;/h2&gt;
&lt;h3 id=&#34;ready4-model-modules&#34;&gt;ready4 Model Modules&lt;/h3&gt;
&lt;p&gt;As we use the term, a &amp;ldquo;model module&amp;rdquo; is comprised of both a data-structure (an S4 class) and the algorithms (or &amp;ldquo;methods&amp;rdquo;) that are associated with that data-structure. Model modules can be created from a template - the &lt;code&gt;ready4&lt;/code&gt; package&amp;rsquo;s &lt;code&gt;Ready4Module&lt;/code&gt; class.&lt;/p&gt;
&lt;p&gt;We can create an object (&lt;code&gt;X&lt;/code&gt;) from the &lt;code&gt;Ready4Module&lt;/code&gt; template using the following command.&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/Ready4Module-class.html&#39;&gt;Ready4Module&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;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;However, if we inspect &lt;code&gt;X&lt;/code&gt; we can see it is of limited use as it contains no data other than an empty element called &lt;code&gt;dissemination_1L_chr&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;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/r/utils/str.html&#39;&gt;str&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 class=&#39;o&#39;&gt;)&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#&amp;gt; Formal class &#39;Ready4Module&#39; [package &#34;ready4&#34;] with 1 slot&lt;/span&gt;&lt;/span&gt;
&lt;span&gt;&lt;span class=&#39;c&#39;&gt;#&amp;gt;   ..@ dissemination_1L_chr: chr NA&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 &lt;code&gt;Ready4Module&lt;/code&gt; class is therefore not intended to be called directly. Instead, the purpose of &lt;code&gt;Ready4Module&lt;/code&gt; is to be the parent class of other model modules. Prototype tools for authoring modules from this template are described &lt;a href=&#34;https://www.ready4-dev.com/docs/tutorials/develop-models/authoring-modules/&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;div class=&#34;card border-primary mb-3&#34; style=&#34;max-width: 20rem;&#34;&gt;
&lt;div class=&#34;card-header&#34;&gt;
&lt;p&gt;&lt;strong&gt;ready4 Concept&lt;/strong&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&#34;card-body&#34;&gt;
&lt;div class=&#34;card-title&#34;&gt;
&lt;h4 id=&#34;module&#34;&gt;Module&lt;/h4&gt;
&lt;/div&gt;
&lt;p&gt;An instance of &lt;code&gt;Ready4Module&lt;/code&gt; (or classes that inherit from &lt;code&gt;Ready4Module&lt;/code&gt;) and its associated methods.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h3 id=&#34;ready4-model-sub-modules&#34;&gt;ready4 Model Sub-modules&lt;/h3&gt;
&lt;p&gt;In ready4, S3 classes are principally used to help define the structural properties of slots (elements) of model modules and the methods that can be applied to these slots. S3 classes created for these purposes are called &lt;strong&gt;sub-modules&lt;/strong&gt;.&lt;/p&gt;
&lt;div class=&#34;card border-primary mb-3&#34; style=&#34;max-width: 20rem;&#34;&gt;
&lt;div class=&#34;card-header&#34;&gt;
&lt;p&gt;&lt;strong&gt;ready4 Concept&lt;/strong&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&#34;card-body&#34;&gt;
&lt;div class=&#34;card-title&#34;&gt;
&lt;h4 id=&#34;sub-module&#34;&gt;Sub-Module&lt;/h4&gt;
&lt;/div&gt;
&lt;p&gt;An instance of an informal (S3) class and its associated methods that describes, validates and applies algorithms to a slot of a Module.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;

      </description>
    </item>
    
    <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: 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: Search open access data collections</title>
      <link>/docs/model/datasets/finding-data/search/</link>
      <pubDate>Thu, 30 Nov 2023 00:00:00 +0000</pubDate>
      
      <guid>/docs/model/datasets/finding-data/search/</guid>
      <description>
        
        
        &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;p&gt;The &lt;code&gt;make_datasets_tb&lt;/code&gt; function from the ready4 library can be used to create a summary table of the open access datasets we curate in our &lt;a href=&#34;https://dataverse.harvard.edu/dataverse/ready4&#34;&gt;ready4 Dataverse Collection&lt;/a&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;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/make_datasets_tb.html&#39;&gt;make_datasets_tb&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;s&#39;&gt;&#34;ready4&#34;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;)&lt;/span&gt; &lt;span class=&#39;o&#39;&gt;-&amp;gt;&lt;/span&gt; &lt;span class=&#39;nv&#39;&gt;x&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;One way to inspect this information is to group contents by Dataverse Collections using the &lt;code&gt;print-data&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/print_data.html&#39;&gt;print_data&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;           by_dv_1L_lgl &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;kc&#39;&gt;T&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;kableExtra&lt;/span&gt;&lt;span class=&#39;nf&#39;&gt;::&lt;/span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/pkg/kableExtra/man/scroll_box.html&#39;&gt;scroll_box&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&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;margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Dataverse
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Name
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Description
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Creator
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Datasets
&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://dataverse.harvard.edu/dataverse/TTU&#34;&gt; TTU &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Transfer to Utility
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A collection of transfer to utility datasets developed with the ready4 open science framework.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Orygen
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://doi.org/10.7910/DVN/DKDIB0&#34; style=&#34;     &#34;&gt;1&lt;/a&gt;, &lt;a href=&#34;https://doi.org/10.7910/DVN/FDRUXH&#34; style=&#34;     &#34;&gt;2&lt;/a&gt;, &lt;a href=&#34;https://doi.org/10.7910/DVN/N4NEHL&#34; style=&#34;     &#34;&gt;3&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://dataverse.harvard.edu/dataverse/fakes&#34;&gt; fakes &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Fake Data For Instruction And Illustration
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Fake data used to illustrate toolkits developed with the ready4 open science framework.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Orygen
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://doi.org/10.7910/DVN/D74QMP&#34; style=&#34;     &#34;&gt;4&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.7910/DVN/612HDC&#34; style=&#34;     &#34;&gt;5&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.7910/DVN/HJXYKQ&#34; style=&#34;     &#34;&gt;6&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.7910/DVN/W95KED&#34; style=&#34;     &#34;&gt;7&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.7910/DVN/GW7ZKC&#34; style=&#34;     &#34;&gt;8&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.7910/DVN/LYBMB0&#34; style=&#34;     &#34;&gt;9&lt;/a&gt; , &lt;a href=&#34;https://doi.org/10.7910/DVN/3R5TS3&#34; style=&#34;     &#34;&gt;10&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://dataverse.harvard.edu/dataverse/firstbounce&#34;&gt; firstbounce &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
First Bounce
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A ready4 framework model of platforms. Aims to identify opportunities to improve the efficiency and equity of mental health services.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Orygen
&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://dataverse.harvard.edu/dataverse/ready4fw&#34;&gt; ready4fw &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 Framework
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A collection of datasets that support implementation of the ready4 framework for open science computational models of mental health systems.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Orygen
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://doi.org/10.7910/DVN/RIQTKK&#34; style=&#34;     &#34;&gt;11&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://dataverse.harvard.edu/dataverse/readyforwhatsnext&#34;&gt; readyforwhatsnext &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
readyforwhatsnext
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Data collections for the readyforwhatsnext mental health systems model.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Orygen
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://doi.org/10.7910/DVN/QBZFQV&#34; style=&#34;     &#34;&gt;12&lt;/a&gt;, &lt;a href=&#34;https://doi.org/10.7910/DVN/JHSCDJ&#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;a href=&#34;https://dataverse.harvard.edu/dataverse/springtides&#34;&gt; springtides &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Springtides
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A ready4 framework model of places. Synthesises geometry (boundary, coordinate) and spatial attribute (e.g. population counts, environmental characteristics, service identifier and model coefficients associated with areas) data.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Orygen
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://doi.org/10.7910/DVN/V3OKZV&#34; style=&#34;     &#34;&gt;14&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://dataverse.harvard.edu/dataverse/springtolife&#34;&gt; springtolife &lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Spring To Life
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A ready4 framework model of people. Models the characteristics, behaviours, relationships and outcomes of groups of individuals relevant to policymakers and service planners aiming to improve population mental health.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Orygen
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://doi.org/10.7910/DVN/VGPIPS&#34; style=&#34;     &#34;&gt;15&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Alternatively, we can itemise individual Dataverse Datasets. When doing so, it makes sense to prepare separate views for toy datasets designed for instruction and real datasets appropriate for use in modelling.&lt;/p&gt;
&lt;p&gt;Datasets appropriate for use in modelling projects can be returned by supplying the value &amp;ldquo;real&amp;rdquo; to the &lt;code&gt;what_1L_chr&lt;/code&gt; argument of &lt;code&gt;print_data&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;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_data.html&#39;&gt;print_data&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;           what_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;real&#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;kableExtra&lt;/span&gt;&lt;span class=&#39;nf&#39;&gt;::&lt;/span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/pkg/kableExtra/man/scroll_box.html&#39;&gt;scroll_box&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&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;margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Title
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Description
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Dataverse
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
DOI
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Transfer to AQoL-6D Utility Mapping Algorithms
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Catalogues of models (and the programs that produced them) that can be used in conjunction with the youthu R package to predict AQoL-6D health utility (and thus, derive QALYs) from measures collected in youth mental health services.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
TTU
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/DKDIB0&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Transfer to AQoL-6D From Measures Collected In Primary Youth Mental Health Services
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This is a work in progress dataset to support the implementation and reporting of a study to map measures collected in Australian primary youth mental health services to AQoL-6D health utility.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
TTU
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/FDRUXH&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Transfer to CHU-9D From Measures Collected In Primary Youth Mental Health Services
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This is a work in progress dataset to support the implementation and reporting of a study to map measures collected in Australian primary youth mental health services to CHU-9D health utility
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
TTU
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/N4NEHL&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 Framework Abbreviations and Definitions
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset contains resources that help ready4 Framework Developers adopt common standards and workflows.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4fw
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/RIQTKK&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
readyforwhatsnext posters
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A collection of poster summaries about the readyforwhatsnext project and its outputs.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
readyforwhatsnext
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/QBZFQV&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Australian demographic input parameters for Springtides model
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Geometry, spatial attribute and metadata inputs for the demographic module of the readyforwhatsnext model. The demographic module is a systems dynamics spatial simulation of area demographic characteristics. The current version of the model is quite rudimentary and is designed to be extended by other models developped with the ready4 open science mental health modelling tools.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
readyforwhatsnext
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/JHSCDJ&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Springtides reports for Local Government Areas in the North West of Melbourne
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset is a collection of reports generated by a development version of the Springtides Model Of Places. Each report summarises prevalence projections for a specified mental disorder / mental health condition for a Local Government Area that is wholly or partially within the catchment area of the Orygen youth mental health service in North West Melbourne. As these reports were generated by a development version of the Springtides Model, these projections should be regarded as exploratory.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
springtides
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/V3OKZV&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Modelling the online helpseeking choice of socially anxious young people
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;p&gt;Models to predict the online helpseeking choices of socially anxious young people in Australia and replication code and documentation to implement the discrete choice experiment that generated the models.&lt;/p&gt;
&lt;p&gt;All study outputs were created with the aid of the mychoice R package (&lt;a href=&#34;https://ready4-dev.github.io/mychoice&#34;&gt;https://ready4-dev.github.io/mychoice&lt;/a&gt;).&lt;/p&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
springtolife
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/VGPIPS&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;To view toy datasets, instead supply the value &amp;ldquo;fakes&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;nf&#39;&gt;&lt;a href=&#39;https://ready4-dev.github.io/ready4/reference/print_data.html&#39;&gt;print_data&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;           what_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;fakes&#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;kableExtra&lt;/span&gt;&lt;span class=&#39;nf&#39;&gt;::&lt;/span&gt;&lt;span class=&#39;nf&#39;&gt;&lt;a href=&#39;https://rdrr.io/pkg/kableExtra/man/scroll_box.html&#39;&gt;scroll_box&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&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;margin-left: auto; margin-right: auto;&#34;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Title
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Description
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
Dataverse
&lt;/th&gt;
&lt;th style=&#34;text-align:left;&#34;&gt;
DOI
&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
TTU (Transfer to Utility) R package - AQoL-6D vignette output
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset has been generated from fake data as an instructional aid. It is not to be used to inform decision making.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
fakes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/D74QMP&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
TTU (Transfer to Utility) R package - EQ-5D vignette output
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset is provided as a teaching aid. It is the output of tools from the TTU R package, applied to a synthetic dataset (Fake Data) of psychological distress and psychological wellbeing. It is not to be used to support decision-making.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
fakes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/612HDC&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Synthetic (fake) youth mental health datasets and data dictionaries
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
The datasets in this collection are entirely fake. They were developed principally to demonstrate the workings of a number of utility scoring and mapping algorithms. However, they may be of more general use to others. In some limited cases, some of the included files could be used in exploratory simulation based analyses. However, you should read the metadata descriptors for each file to inform yourself of the validity and limitations of each fake dataset. To open the RDS format files included in this dataset, the R package ready4use needs to be installed (see &lt;https://ready4-dev.github.io/ready4use/&gt; ). It is also recommended that you install the youthvars package ( &lt;https://ready4-dev.github.io/youthvars/&gt;) as this provides useful tools for inspecting and validating each dataset.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
fakes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/HJXYKQ&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4use R package vignette output
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset is provided so that others can compare the output they generate when implementing vignette code with that generated by the authors.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
fakes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/W95KED&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Specific R Package - AQoL-6D Vignette Output
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset is provided so that others can apply the algorithms we have developed, consistent with the principles of the ready4 open science framework for data synthesis and simulation in mental health.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
fakes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/GW7ZKC&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Synthetic (fake) dataset for hypothetical replication of study mapping psychological distress and functioning measures to AQoL-6D health utility
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset is comprised of fake data that has been created to illustrate the potential transfer of a study algorithm for creating utility mapping models to new data. Outputs in this dataset are for instructional purposes only and should not be used to inform decision making.
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
fakes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/LYBMB0&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Synthetic (fake) dataset for hypothetical replication of study mapping psychological distress and functioning measures to CHU-9D health utility
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
This dataset is comprised of fake data that has been created to illustrate the potential transfer of a study algorithm for creating CHU-9D utility mapping models to new data. Outputs in this dataset are for instructional purposes only and should not be used to inform decision making
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
fakes
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;https://doi.org/10.7910/DVN/3R5TS3&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>
    
  </channel>
</rss>
