<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>ready4 – Model - sub-modules</title>
    <link>/tags/model-sub-modules/</link>
    <description>Recent content in Model - sub-modules on ready4</description>
    <generator>Hugo -- gohugo.io</generator>
    <lastBuildDate>Thu, 30 Nov 2023 00:00:00 +0000</lastBuildDate>
    
	  <atom:link href="/tags/model-sub-modules/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Docs: Finding modules and sub-modules</title>
      <link>/docs/model/modules/finding-modules/</link>
      <pubDate>Thu, 30 Nov 2023 00:00:00 +0000</pubDate>
      
      <guid>/docs/model/modules/finding-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_05.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_05.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_05.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;When considering whether to use model modules, model developers and users will often want to see examples of each module&amp;rsquo;s application The &lt;code&gt;ready4&lt;/code&gt; package includes tools to allow a modelling project&amp;rsquo;s maintainers to perform automated searches for vignette examples of model modules and to output tabular summaries of these modules that are suitable for inclusion on documentation website pages.&lt;/p&gt;
&lt;h2 id=&#34;implementation&#34;&gt;Implementation&lt;/h2&gt;
&lt;p&gt;Details of how to search for themed collections of modules is described in &lt;a href=&#34;https://www.ready4-dev.com/docs/software/libraries/types/module/&#34;&gt;another article&lt;/a&gt;. A table itemising individual model modules and sub-modules authored with &lt;code&gt;ready4&lt;/code&gt; can be generated using &lt;code&gt;make_modules_tb&lt;/code&gt;. This function scrapes relevant data from the websites of module libraries that have been developed within a specified project&amp;rsquo;s GitHub organisation and may take a couple of minutes to execute. In this example, we are going to examine modules from a &lt;a href=&#34;https://www.ready4-dev.com/docs/model/&#34;&gt;youth mental health model&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;nv&#39;&gt;modules_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/make_modules_tb.html&#39;&gt;make_modules_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;p&gt;A slightly quicker method to achieve a similar result is to use the &lt;code&gt;get_modules_tb&lt;/code&gt; function. This function retrieves an archived version (and therefore potentially less up to date) of the modules summary table.&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;# modules_tb &amp;lt;- get_modules_tb(gh_repo_1L_chr = &#34;ready4-dev/ready4&#34;)&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;The &lt;code&gt;modules_tb&lt;/code&gt; object itemises both ready4 modules (which always use R&amp;rsquo;s &amp;ldquo;S4&amp;rdquo; class type) and sub-modules (&amp;ldquo;S3&amp;rdquo; class type). To display a HTML summary of just ready4 modules, you can use the &lt;code&gt;print_modules&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_modules.html&#39;&gt;print_modules&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;modules_tb&lt;/span&gt;, what_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;S4&#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;div class=&#34;highlight&#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;
Class
&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;
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/aus/reference/AusACT-class.html&#34; style=&#34;     &#34;&gt;AusACT&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Meta data for processing ACT population projections
&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/aus/reference/AusHeadspace-class.html&#34; style=&#34;     &#34;&gt;AusHeadspace&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Meta data for constructing Headspace Centre geometries
&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/aus/reference/AusLookup-class.html&#34; style=&#34;     &#34;&gt;AusLookup&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Lookup tables for Australian geometry and spatial attribute data
&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/aus/reference/AusOrygen-class.html&#34; style=&#34;     &#34;&gt;AusOrygen&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Meta data for constructing OYH Specialist Mental Health Catchment geometries
&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/aus/reference/AusProjections-class.html&#34; style=&#34;     &#34;&gt;AusProjections&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Meta data for constructing custom Australian population projections boundary
&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/aus/reference/AusTasmania-class.html&#34; style=&#34;     &#34;&gt;AusTasmania&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Meta data for processing Tasmanian population projections
&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/costly/reference/CostlyCorrespondences-class.html&#34; style=&#34;     &#34;&gt;CostlyCorrespondences&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Collection of input, standards definition and results datasets for projects to generate standardised costing datasets
&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;1&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&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/costly/reference/CostlyCountries-class.html&#34; style=&#34;     &#34;&gt;CostlyCountries&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Collection of input, standards definition and results datasets for projects to generate standardised country data for use in costing datasets
&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;1&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&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/costly/reference/CostlyCurrencies-class.html&#34; style=&#34;     &#34;&gt;CostlyCurrencies&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Collection of input, standards definition and results datasets for projects to generate standardised currency data for use in costing datasets
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&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/costly/reference/CostlySeed-class.html&#34; style=&#34;     &#34;&gt;CostlySeed&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Original (non-standardised) dataset (and metadata)
&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;1&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&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/costly/reference/CostlySource-class.html&#34; style=&#34;     &#34;&gt;CostlySource&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Input dataset (and metadata) for generating standardised costing datasets
&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/costly/reference/CostlyStandards-class.html&#34; style=&#34;     &#34;&gt;CostlyStandards&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Dataset (and metadata) defining the allowable values of specified variables
&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;1&lt;/a&gt;, &lt;a href=&#34;https://ready4-dev.github.io/costly/articles/V_02.html&#34; style=&#34;     &#34;&gt;2&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/scorz/reference/ScorzAqol6-class.html&#34; style=&#34;     &#34;&gt;ScorzAqol6&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A dataset and metadata to support implementation of an AQoL-6D scoring algorithm
&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/scorz/reference/ScorzAqol6Adol-class.html&#34; style=&#34;     &#34;&gt;ScorzAqol6Adol&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A dataset and metadata to support implementation of a scoring algorithm for the adolescent version of AQoL-6D
&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;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://ready4-dev.github.io/scorz/reference/ScorzAqol6Adult-class.html&#34; style=&#34;     &#34;&gt;ScorzAqol6Adult&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A dataset and metadata to support implementation of a scoring algorithm for the adult version of AQoL-6D
&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/scorz/reference/ScorzEuroQol5-class.html&#34; style=&#34;     &#34;&gt;ScorzEuroQol5&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A dataset and metadata to support implementation of an EQ-5D scoring algorithm
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
&lt;a href=&#34;https://ready4-dev.github.io/scorz/articles/V_02.html&#34; style=&#34;     &#34;&gt;4&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/scorz/reference/ScorzProfile-class.html&#34; style=&#34;     &#34;&gt;ScorzProfile&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A dataset to be scored, its associated metadata and details of the scoring instrument
&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/specific/reference/SpecificConverter-class.html&#34; style=&#34;     &#34;&gt;SpecificConverter&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Container for seed objects used for creating SpecificModels modules
&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;5&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/specific/reference/SpecificFixed-class.html&#34; style=&#34;     &#34;&gt;SpecificFixed&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Modelling project dataset, input parameters and complete fixed models results
&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/specific/reference/SpecificInitiator-class.html&#34; style=&#34;     &#34;&gt;SpecificInitiator&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Modelling project dataset, input parameters and empty results placeholder
&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/specific/reference/SpecificMixed-class.html&#34; style=&#34;     &#34;&gt;SpecificMixed&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Modelling project dataset, input parameters and complete mixed models results
&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/specific/reference/SpecificModels-class.html&#34; style=&#34;     &#34;&gt;SpecificModels&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Modelling project dataset, input parameters and model comparison results
&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/specific/reference/SpecificParameters-class.html&#34; style=&#34;     &#34;&gt;SpecificParameters&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Input parameters that specify candidate models to be explored
&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/specific/reference/SpecificPredictors-class.html&#34; style=&#34;     &#34;&gt;SpecificPredictors&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Modelling project dataset, input parameters and predictor comparison results
&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/specific/reference/SpecificPrivate-class.html&#34; style=&#34;     &#34;&gt;SpecificPrivate&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Analysis outputs not intended for public dissemination
&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/specific/reference/SpecificProject-class.html&#34; style=&#34;     &#34;&gt;SpecificProject&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Modelling project dataset, parameters and results
&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/specific/reference/SpecificResults-class.html&#34; style=&#34;     &#34;&gt;SpecificResults&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Analysis results
&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/specific/reference/SpecificShareable-class.html&#34; style=&#34;     &#34;&gt;SpecificShareable&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Analysis outputs intended for public dissemination
&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/specific/reference/SpecificSynopsis-class.html&#34; style=&#34;     &#34;&gt;SpecificSynopsis&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Input, Output and Authorship Data For Generating Reports
&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/TTU/reference/TTUProject-class.html&#34; style=&#34;     &#34;&gt;TTUProject&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Input And Output Data For Undertaking and Reporting Utility Mapping Studies
&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;6&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/TTU/reference/TTUReports-class.html&#34; style=&#34;     &#34;&gt;TTUReports&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Metadata to produce utility mapping study reports
&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/TTU/reference/TTUSynopsis-class.html&#34; style=&#34;     &#34;&gt;TTUSynopsis&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Input, Output and Authorship Data For Generating Utility Mapping Study Reports
&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/vicinity/reference/VicinityArguments-class.html&#34; style=&#34;     &#34;&gt;VicinityArguments&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Function arguments for constructing a spatial 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/vicinity/reference/VicinityLocal-class.html&#34; style=&#34;     &#34;&gt;VicinityLocal&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Object defining data to be saved in local directory
&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/vicinity/reference/VicinityLocalProcessed-class.html&#34; style=&#34;     &#34;&gt;VicinityLocalProcessed&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Object defining data to be saved in local directory in a processed (R) format
&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/vicinity/reference/VicinityLocalRaw-class.html&#34; style=&#34;     &#34;&gt;VicinityLocalRaw&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Object defining data to be saved in local directory in a raw (unprocessed) format
&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/vicinity/reference/VicinityLookup-class.html&#34; style=&#34;     &#34;&gt;VicinityLookup&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Look up tables for spatiotemporal data
&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/vicinity/reference/VicinityMacro-class.html&#34; style=&#34;     &#34;&gt;VicinityMacro&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Macro level context
&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/vicinity/reference/VicinityMesoArea-class.html&#34; style=&#34;     &#34;&gt;VicinityMesoArea&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Meso level context - area
&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/vicinity/reference/VicinityMesoRegion-class.html&#34; style=&#34;     &#34;&gt;VicinityMesoRegion&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Meso level context - region
&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/vicinity/reference/VicinityMicro-class.html&#34; style=&#34;     &#34;&gt;VicinityMicro&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Micro level context
&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/vicinity/reference/VicinityProfile-class.html&#34; style=&#34;     &#34;&gt;VicinityProfile&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Information to create a profiled area 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/vicinity/reference/VicinitySpaceTime-class.html&#34; style=&#34;     &#34;&gt;VicinitySpaceTime&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Spatiotemporal environment
&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/youthvars/reference/YouthvarsDescriptives-class.html&#34; style=&#34;     &#34;&gt;YouthvarsDescriptives&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Metadata about descriptive statistics to be generated
&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/youthvars/reference/YouthvarsProfile-class.html&#34; style=&#34;     &#34;&gt;YouthvarsProfile&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A dataset and its associated dictionary, descriptive statistics and metadata
&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;8&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/youthvars/reference/YouthvarsSeries-class.html&#34; style=&#34;     &#34;&gt;YouthvarsSeries&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
A longitudinal dataset and its associated dictionary, descriptive statistics and metadata
&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;8&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p&gt;You can use the same function to display only ready4 sub-modules.&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_modules.html&#39;&gt;print_modules&lt;/a&gt;&lt;/span&gt;&lt;span class=&#39;o&#39;&gt;(&lt;/span&gt;&lt;span class=&#39;nv&#39;&gt;modules_tb&lt;/span&gt;, what_1L_chr &lt;span class=&#39;o&#39;&gt;=&lt;/span&gt; &lt;span class=&#39;s&#39;&gt;&#34;S3&#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;div class=&#34;highlight&#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;
Class
&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;
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/specific/reference/specific_models.html&#34; style=&#34;     &#34;&gt;specific_models&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Candidate models lookup table
&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/specific/reference/specific_predictors.html&#34; style=&#34;     &#34;&gt;specific_predictors&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
Candidate predictors lookup table
&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/vicinity/reference/vicinity_abbreviations.html&#34; style=&#34;     &#34;&gt;vicinity_abbreviations&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object lookup table for spatial data abbreviations
&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/vicinity/reference/vicinity_identifiers.html&#34; style=&#34;     &#34;&gt;vicinity_identifiers&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object lookup table of unique feature identifiers used for different spatial objects
&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/vicinity/reference/vicinity_mapes.html&#34; style=&#34;     &#34;&gt;vicinity_mapes&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object that stores spatial simulation parameters relating to Mean Absolute Prediction Errors
&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/vicinity/reference/vicinity_parameters.html&#34; style=&#34;     &#34;&gt;vicinity_parameters&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object that stores simulation structural parameters relating to the spatial environment
&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/vicinity/reference/vicinity_points.html&#34; style=&#34;     &#34;&gt;vicinity_points&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object lookup table of the longitude and latitude cordinates of sites of services / homes
&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/vicinity/reference/vicinity_processed.html&#34; style=&#34;     &#34;&gt;vicinity_processed&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object lookup table of meta-data for spatial data packs (imported and pre-processed data)
&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/vicinity/reference/vicinity_raw.html&#34; style=&#34;     &#34;&gt;vicinity_raw&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object lookup table of metadata about raw (un-processed) spatial data to import
&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/vicinity/reference/vicinity_resolutions.html&#34; style=&#34;     &#34;&gt;vicinity_resolutions&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object lookup table of the relative resolutions of different spatial objects
&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/vicinity/reference/vicinity_templates.html&#34; style=&#34;     &#34;&gt;vicinity_templates&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object lookup table for base file used in creation of certain spatial objects
&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/vicinity/reference/vicinity_values.html&#34; style=&#34;     &#34;&gt;vicinity_values&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
ready4 S3 class for tibble object that stores simulation parameter values for each iteration
&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/youthvars/reference/youthvars_aqol6d_adol.html&#34; style=&#34;     &#34;&gt;youthvars_aqol6d_adol&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Assessment of Quality of Life Six Dimension Health Utility - Adolescent Version (AQoL6d Adolescent)
&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;7&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/youthvars/reference/youthvars_bads.html&#34; style=&#34;     &#34;&gt;youthvars_bads&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Behavioural Activation for Depression Scale (BADS) scores
&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;7&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/youthvars/reference/youthvars_chu9d_adolaus.html&#34; style=&#34;     &#34;&gt;youthvars_chu9d_adolaus&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Child Health Utility Nine Dimension Health Utility - Australian Adolescent Scoring (CHU-9D Australian Adolescent)
&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;7&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/youthvars/reference/youthvars_gad7.html&#34; style=&#34;     &#34;&gt;youthvars_gad7&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Generalised Anxiety Disorder Scale (GAD-7) scores
&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;7&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/youthvars/reference/youthvars_k10.html&#34; style=&#34;     &#34;&gt;youthvars_k10&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Kessler Psychological Distress Scale (K10) - US Scoring System scores
&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;7&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/youthvars/reference/youthvars_k10_aus.html&#34; style=&#34;     &#34;&gt;youthvars_k10_aus&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Kessler Psychological Distress Scale (K10) - Australian Scoring System scores
&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;7&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/youthvars/reference/youthvars_k6.html&#34; style=&#34;     &#34;&gt;youthvars_k6&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Kessler Psychological Distress Scale (K6) - US Scoring System scores
&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;7&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/youthvars/reference/youthvars_k6_aus.html&#34; style=&#34;     &#34;&gt;youthvars_k6_aus&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class)for Kessler Psychological Distress Scale (K6) - Australian Scoring System scores
&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;7&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/youthvars/reference/youthvars_oasis.html&#34; style=&#34;     &#34;&gt;youthvars_oasis&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Overall Anxiety Severity and Impairment Scale (OASIS) scores
&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;7&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/youthvars/reference/youthvars_phq9.html&#34; style=&#34;     &#34;&gt;youthvars_phq9&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Patient Health Questionnaire (PHQ-9) scores
&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;7&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/youthvars/reference/youthvars_scared.html&#34; style=&#34;     &#34;&gt;youthvars_scared&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Screen for Child Anxiety Related Disorders (SCARED) scores
&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;7&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/youthvars/reference/youthvars_sofas.html&#34; style=&#34;     &#34;&gt;youthvars_sofas&lt;/a&gt;
&lt;/td&gt;
&lt;td style=&#34;text-align:left;&#34;&gt;
youthvars ready4 sub-module (S3 class) for Social and Occupational Functioning Assessment Scale (SOFAS)
&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;7&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;

      </description>
    </item>
    
  </channel>
</rss>
