<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Small coding stuffs and rants on Rookie site</title>
    <link>https://rookie.rbind.io/blog/</link>
    <description>Recent content in Small coding stuffs and rants on Rookie site</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Sat, 02 Jan 2021 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://rookie.rbind.io/blog/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Using panelsets</title>
      <link>https://rookie.rbind.io/blog/bundled-seedling/</link>
      <pubDate>Sat, 02 Jan 2021 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/bundled-seedling/</guid>
      <description>&lt;p&gt;Courtesy of panelset.js by Garrick Aden-Buie, from his xaringanExtra package: &#xA;&lt;a href=&#34;https://pkg.garrickadenbuie.com/xaringanExtra/#/panelset&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;https://pkg.garrickadenbuie.com/xaringanExtra/#/panelset&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;For example, this panelset:&lt;/p&gt;&#xA;&lt;div id=&#34;&#34; class=&#34;panelset&#34;&gt;&#xA;  &#xA;&lt;div class=&#34;panel&#34;&gt;&#xA;  &lt;div class=&#34;panel-name&#34;&gt;Hello! &amp;#x1f44b;&lt;/div&gt;&#xA;  &#xA;  &lt;p&gt;hello&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;div class=&#34;panel&#34;&gt;&#xA;  &lt;div class=&#34;panel-name&#34;&gt;Goodbye &amp;#x1f4a8;&lt;/div&gt;&#xA;  &#xA;  &lt;p&gt;goodbye&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Was created by combining this theme&amp;rsquo;s &lt;code&gt;panelset&lt;/code&gt; and &lt;code&gt;panel&lt;/code&gt; shortcodes:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-go&#34; data-lang=&#34;go&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{{&amp;lt; panelset class=&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;greetings&amp;#34;&lt;/span&gt; &amp;gt;}}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{{&amp;lt; panel name=&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;Hello! :wave:&amp;#34;&lt;/span&gt; &amp;gt;}}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  hello&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{{&amp;lt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;panel &amp;gt;}}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{{&amp;lt; panel name=&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;Goodbye :dash:&amp;#34;&lt;/span&gt; &amp;gt;}}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  goodbye&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{{&amp;lt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;panel &amp;gt;}}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{{&amp;lt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;panelset &amp;gt;}}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You could also revert to HTML as well. For example, this panelset:&lt;/p&gt;&#xA;&lt;div class=&#34;panelset&#34;&gt;&#xA;  &lt;div class=&#34;panel&#34;&gt;&#xA;    &lt;div class=&#34;panel-name&#34;&gt;Question&lt;/div&gt;&#xA;    &lt;!-- Panel content --&gt;&#xA;    &lt;p&gt;Which came first: the :chicken: or the :egg:?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Simulating genetic drift</title>
      <link>https://rookie.rbind.io/blog/simulating-genetic-drift/</link>
      <pubDate>Sun, 08 Nov 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/simulating-genetic-drift/</guid>
      <description>&lt;p&gt;Genetic drift is the result of bernouli process on survival of individuals (given some probability for each of them) of a population over a number of independent trials (Generation).&lt;/p&gt;&#xA;&lt;p&gt;Apparently there are two techniques of seeing such process &amp;ndash; one individual level, other the population level. Both solutions are illustrated below. Let us suppose population of N individuals remains fixed from generation to generation, likewise, Fitness probability of &amp;ldquo;A&amp;rdquo; allele ($p(A)$) and &amp;ldquo;a&amp;rdquo; allele ($p(a)$) both starts off equal. Now we can generate incremental population survival probability for each individual for given population size:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Missing negative from the normal</title>
      <link>https://rookie.rbind.io/blog/missing-negative-from-the-normal/</link>
      <pubDate>Sat, 07 Nov 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/missing-negative-from-the-normal/</guid>
      <description>&lt;h1 id=&#34;a-normal-function-isnt-so-normal&#34;&gt;A normal function isn&amp;rsquo;t so normal&#xA;  &lt;a href=&#34;#a-normal-function-isnt-so-normal&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;The normal density function is:&lt;/p&gt;&#xA;&lt;p&gt;$$&#xA;\large&#xA;f(x) = \frac{1}{\sqrt{2 \pi} \sigma} \exp^{-\frac{(x - \mu)^2}{(2 \sigma^2)}}&#xA;$$&lt;/p&gt;&#xA;&lt;p&gt;It doesn&amp;rsquo;t make sense to calculate the probability for a single value in a continuous probability function, it is by definition zero, but you can calculate relative likelihoods (heights). &lt;code&gt;dnorm&lt;/code&gt; simply gives the value of the function for a given x, not the area under the curve for that x (which is basically nothing for a single value). To find the density (height) for a single x value on the normal distribution, use &lt;code&gt;dnorm()&lt;/code&gt; in the following way (here each x value is treated as separate and vectorized over),&lt;/p&gt;</description>
    </item>
    <item>
      <title>Relating quantile distribution and selection intensity</title>
      <link>https://rookie.rbind.io/blog/relating-quantile-distribution-and-selection-intensity/</link>
      <pubDate>Sat, 07 Nov 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/relating-quantile-distribution-and-selection-intensity/</guid>
      <description>&lt;h1 id=&#34;what-has-wikipedia-to-say-about-&#34;&gt;What has wikipedia to say about ?&#xA;  &lt;a href=&#34;#what-has-wikipedia-to-say-about-&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;In probability and statistics, the quantile function, associated with a probability distribution of a random variable, specifies the value of the random variable such that the probability of the variable being less than or equal to that value equals the given probability. It is also called the percent-point function or inverse cumulative distribution function.&lt;/p&gt;&#xA;&lt;p&gt;For example, the cumulative distribution function of exponential ($\lambda$) (i.e. intensity &lt;code&gt;\(\lambda\)&lt;/code&gt; and expected value (mean) &lt;code&gt;\(\frac{1}{\lambda}\)&lt;/code&gt;) is:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Internals of Mixed Models</title>
      <link>https://rookie.rbind.io/blog/internals-of-mixed-models/</link>
      <pubDate>Thu, 29 Oct 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/internals-of-mixed-models/</guid>
      <description>&lt;p&gt;Linear mixed models are widely used in Agriculture and Plant Breeding, as of recent. With access to genotype data high resolution phenotype data, it has become more of a requirement to use this family of model.&lt;/p&gt;&#xA;&lt;p&gt;Mixed models allow for experimental (design or outcome) variables&amp;rsquo; parameter estimates to have probabilistic distributions &amp;ndash; most commonly normal &amp;ndash; with opportunity to specify different variance-covariance components among the levels of those variables. In this post, I wish to discuss on some of the popular mixed modeling tools and techniques in the R community with links and discussion of the concepts surrounding variations of modeling techniques.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The nature of code: Why is it</title>
      <link>https://rookie.rbind.io/blog/the-nature-of-code-why-is-it/</link>
      <pubDate>Wed, 23 Sep 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/the-nature-of-code-why-is-it/</guid>
      <description>&lt;p&gt;Many find genetics, as a field of science on its own, charming. Many more are excited to learn about the science that fits seamlessly into complexity driven life of organisms, providing explanation for natural phenomena at both micro-evolutionary and macro-evolutionary scales. But only few find fascination with its deep running concepts, going down to more fundamental physical theories. This article tries to at least expose, if not laid satisfying argument, to some of fundamental questions in genetics concerning nature of code (mostly chemical behaviour). In particular, following are some of the questions I plan to touch upon (Credit goes to a student of mine who posed these questions one evening and left me pondering on details):&lt;/p&gt;</description>
    </item>
    <item>
      <title>Color formatting of correlation table</title>
      <link>https://rookie.rbind.io/blog/color-formatting-of-correlation-table/</link>
      <pubDate>Sat, 19 Sep 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/color-formatting-of-correlation-table/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/color-formatting-of-correlation-table/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/color-formatting-of-correlation-table/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;correlation&#34;&gt;Correlation&#xA;  &lt;a href=&#34;#correlation&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Correlation is a bivariate summary statistic. It basically talks of direction and magnitidue of association of two variables. Besides formatting with significance stars, color coding correlation coefficient table might be helpful to pick patterns out in a quick glimpse.&lt;/p&gt;&#xA;&lt;p&gt;Table &lt;a href=&#34;#tab:correlation-with-color&#34;&gt;1&lt;/a&gt; presents correlation matrix of yield and yield component traits (a blue &lt;code&gt;\(\rightarrow\)&lt;/code&gt; red color profile represents increasing magnitude of positive correlation between traits). Following code is helpful if somebody provides a correlation table with stars in it and tells you to prettify it. Note that lower or upper halves only cannot be used to determine the discrete color values so full column is required.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Serpentine design and sorting</title>
      <link>https://rookie.rbind.io/blog/serpentine-design-and-sorting/</link>
      <pubDate>Sat, 19 Sep 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/serpentine-design-and-sorting/</guid>
      <description>&lt;h1 id=&#34;take-a-grid-and-serpentine-it-row-wise-or-column-wise&#34;&gt;Take a grid and serpentine it row-wise or column-wise&#xA;  &lt;a href=&#34;#take-a-grid-and-serpentine-it-row-wise-or-column-wise&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;This fn joins two matrices alternately columnwise, which is why this is the source of inspiration for generating serpentine design.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;alternate.cols &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;function&lt;/span&gt;(m1, m2) {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;cbind&lt;/span&gt;(m1, m2)[, &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;order&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(m1)), &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(m2))))]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;A custom function to create a serpentine design in whatever fashion specified:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;serpentine &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;function&lt;/span&gt;(x, columnwise&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;TRUE&lt;/span&gt;){&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;if&lt;/span&gt; (columnwise) {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    odd &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; x[, &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;, by&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;, length.out &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;)] &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# odd x&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    rev_even &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; x[, &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(from &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                        by&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                        length.out &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; (&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ifelse&lt;/span&gt;((&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%%&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;0&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                                             ((&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;)&lt;span style=&#34;color:#099&#34;&gt;-1&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                                             (&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;))))]&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;[seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;dim&lt;/span&gt;(x)[1],&lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;),] &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# or, even[rev(1:nrow(x)),] # reversed even x&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    alternate_cbind &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;cbind&lt;/span&gt;(odd, rev_even)[, &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;order&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(odd)), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                                                       &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ncol&lt;/span&gt;(rev_even))))]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;return&lt;/span&gt;(alternate_cbind)}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;else&lt;/span&gt; {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    odd &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; x&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;[seq&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;, by&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;, length.out &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;nrow&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;),] &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# odd x&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    rev_even &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; x&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;[seq&lt;/span&gt;(from &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;, by&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;, length.out &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; (&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ifelse&lt;/span&gt;((&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;nrow&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%%&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;!=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;0&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                                                           ((&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;nrow&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;)&lt;span style=&#34;color:#099&#34;&gt;-1&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                                                           (&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;nrow&lt;/span&gt;(x)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;)))), ][, &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;dim&lt;/span&gt;(x)[2],&lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;)] &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# or, even[, rev(1:ncol(x))] # reversed even x&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    alternate_rbind &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rbind&lt;/span&gt;(odd, rev_even)&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;[order&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;nrow&lt;/span&gt;(odd)), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                                                     &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;nrow&lt;/span&gt;(rev_even)))), ]&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;return&lt;/span&gt;(alternate_rbind)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  }&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Let&amp;rsquo;s see the function in action&lt;/p&gt;</description>
    </item>
    <item>
      <title>Cluster dendrogram: An introduction and showcase</title>
      <link>https://rookie.rbind.io/blog/cluster-dendrogram-an-introduction-and-showcase/</link>
      <pubDate>Mon, 07 Sep 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/cluster-dendrogram-an-introduction-and-showcase/</guid>
      <description>&lt;p&gt;A cluster analysis is a classification problem. It is dealt in several ways, one of which is hierarchial agglomeration. The method allows for easy presentation of high dimensional data, more of so when the number of observations is readily fitted into a visualization.&lt;/p&gt;&#xA;&lt;p&gt;Here&amp;rsquo;s I deal with a case of clustering typically seen in agriculture and field research where a researcher tests typically a large number of genotypes and seeks to see them organized into distinguishable clusters using dendrogram. Data concerns observations on disease incidence in rice genotypes of various stages &amp;ndash; germinating seed to maturity nearing crop. Following provides a descriptive summary of the observation variables.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Disease epidemiology: A simulation scenario of infectious viral disease (COVID-19)</title>
      <link>https://rookie.rbind.io/blog/disease-epidemiology-a-simulation-scenario-of-infectious-viral-disease-covid-19/</link>
      <pubDate>Fri, 07 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/disease-epidemiology-a-simulation-scenario-of-infectious-viral-disease-covid-19/</guid>
      <description>&lt;h2 id=&#34;sir-model-of-covid-19-epidemiology&#34;&gt;SIR model of COVID-19 epidemiology&#xA;  &lt;a href=&#34;#sir-model-of-covid-19-epidemiology&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;## # A tibble: 5,555 × 6&#xA;##    beta_id  time       S      I      R beta_value&#xA;##    &amp;lt;chr&amp;gt;   &amp;lt;dbl&amp;gt;   &amp;lt;dbl&amp;gt;  &amp;lt;dbl&amp;gt;  &amp;lt;dbl&amp;gt;      &amp;lt;dbl&amp;gt;&#xA;##  1 1         0   0.7     0.02   0.01          3.2&#xA;##  2 1         0.5 0.662   0.0541 0.0134        3.2&#xA;##  3 1         1   0.575   0.133  0.0223        3.2&#xA;##  4 1         1.5 0.420   0.268  0.0420        3.2&#xA;##  5 1         2   0.242   0.411  0.0763        3.2&#xA;##  6 1         2.5 0.117   0.491  0.122         3.2&#xA;##  7 1         3   0.0521  0.506  0.172         3.2&#xA;##  8 1         3.5 0.0235  0.484  0.222         3.2&#xA;##  9 1         4   0.0111  0.450  0.269         3.2&#xA;## 10 1         4.5 0.00559 0.413  0.312         3.2&#xA;## # ℹ 5,545 more rows&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;img src=&#34;https://rookie.rbind.io/blog/disease-epidemiology-a-simulation-scenario-of-infectious-viral-disease-covid-19/index_files/figure-html/covid-sir-graph-1.png&#34; width=&#34;576&#34; /&gt;</description>
    </item>
    <item>
      <title>Linear model fitting for regression: Basics and Variation</title>
      <link>https://rookie.rbind.io/blog/linear-model-fitting-for-regression-basics-and-variation/</link>
      <pubDate>Fri, 07 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/linear-model-fitting-for-regression-basics-and-variation/</guid>
      <description>&lt;h2 id=&#34;linear-model-simple-forms-fitting&#34;&gt;Linear model (simple forms) fitting&#xA;  &lt;a href=&#34;#linear-model-simple-forms-fitting&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;I use mtcars dataset to construct some basic regression models and fit those.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# convert available data to use in fitting&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;mtcars_reg_df &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; mtcars &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rownames_to_column&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;carnames&amp;#34;&lt;/span&gt;) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;as_tibble&lt;/span&gt;() &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate_at&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;gear&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;am&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;vs&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;cyl&amp;#34;&lt;/span&gt;), as.factor)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;We will be comparing difference between cylinder means for mpg.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# # intercept only lm tidiying and visualization&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;mpg_model1 &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; mtcars_reg_df &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;group_by&lt;/span&gt;(cyl) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;nest&lt;/span&gt;() &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;group_by&lt;/span&gt;(cyl) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate&lt;/span&gt;(mpg_model &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;map&lt;/span&gt;(data, &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;~&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;lm&lt;/span&gt;(`mpg` &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;~&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;, .x))) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate&lt;/span&gt;(&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# rsqrd = map_dbl(mpg_model, ~summary(.x)[[&amp;#39;r.squared&amp;#39;]]), # this is &amp;#39;0&amp;#39; of intercept only model&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    intercept_pvalue &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;map_dbl&lt;/span&gt;(mpg_model, &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;~&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;summary&lt;/span&gt;(.x)[[&lt;span style=&#34;color:#d14&#34;&gt;&amp;#39;coefficients&amp;#39;&lt;/span&gt;]][1, &lt;span style=&#34;color:#099&#34;&gt;4&lt;/span&gt;]),&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    intercept_se &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;map_dbl&lt;/span&gt;(mpg_model, &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;~&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;summary&lt;/span&gt;(.x)[[&lt;span style=&#34;color:#d14&#34;&gt;&amp;#39;coefficients&amp;#39;&lt;/span&gt;]][1, &lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;]),&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    intercept_coef &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;map_dbl&lt;/span&gt;(mpg_model, &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;~&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;summary&lt;/span&gt;(.x)[[&lt;span style=&#34;color:#d14&#34;&gt;&amp;#39;coefficients&amp;#39;&lt;/span&gt;]][1, &lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;])&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  ) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;select&lt;/span&gt;(cyl, mpg_model, &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;contains&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;intercept&amp;#34;&lt;/span&gt;), data)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Intercept-only models (each group fitted a different one) are plotted to reflect variation in estimated parameters. Two methods can be used to obtain same result. In the first, standard error obtained from model summary can be directly used; in the other SE can be manually computed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Logistic Regression: Part I - Fundamentals</title>
      <link>https://rookie.rbind.io/blog/logistic-regression-part-i-fundamentals/</link>
      <pubDate>Fri, 07 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/logistic-regression-part-i-fundamentals/</guid>
      <description>&lt;h2 id=&#34;likelihood-theory&#34;&gt;Likelihood theory&#xA;  &lt;a href=&#34;#likelihood-theory&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Probit models were the first of those being used to analyze non-normal data using non-linear models. In an early example of probit regression, Bliss(1934) describes an experiment in which nicotine is applied to aphids and the proportion killed is recorded. As an appendix to a paper Bliss wrote a year later (Bliss, 1935), Fisher (1935) outlines the use of maximum likelihood to obtain estimates of the probit model.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Logistic Regression: Part II - Varietal adoption dataset</title>
      <link>https://rookie.rbind.io/blog/logistic-regression-part-ii-varietal-adoption-dataset/</link>
      <pubDate>Fri, 07 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/logistic-regression-part-ii-varietal-adoption-dataset/</guid>
      <description>&lt;h2 id=&#34;binary-classifier-using-categorical-predictor&#34;&gt;Binary classifier using categorical predictor&#xA;  &lt;a href=&#34;#binary-classifier-using-categorical-predictor&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Let&amp;rsquo;s say we have two variable &amp;ndash; survey response of farmer to willingness to adopt improved rice variety (in YES/NO) and them having been trained earlier about agricultural input management (in trained/untrained).&lt;/p&gt;&#xA;&lt;p&gt;Read in the data and notice the summary.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;rice_data &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; readxl&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;read_xlsx&lt;/span&gt;(here&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;here&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;content&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;blog&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;data&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;rice_variety_adoption.xlsx&amp;#34;&lt;/span&gt;)) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate_if&lt;/span&gt;(.predicate &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; is.character, as.factor)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;rice_variety_adoption &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; readxl&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;read_xlsx&lt;/span&gt;(here&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;here&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;content&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;blog&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;data&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;rice_variety_adoption.xlsx&amp;#34;&lt;/span&gt;)) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;select&lt;/span&gt;(improved_variety_adoption, training) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# convert data to suitable factor type for analysis.&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate_if&lt;/span&gt;(is.character, as.factor)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;head&lt;/span&gt;(rice_variety_adoption) &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# now we have data&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;## # A tibble: 6 × 2&#xA;##   improved_variety_adoption training&#xA;##   &amp;lt;fct&amp;gt;                     &amp;lt;fct&amp;gt;   &#xA;## 1 No                        No      &#xA;## 2 Yes                       No      &#xA;## 3 No                        No      &#xA;## 4 Yes                       No      &#xA;## 5 Yes                       No      &#xA;## 6 No                        No&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;As a basic descriptive, contruct one way and two way cross tabulation summary, showing count of each categories. This is because logistic regression uses count data, much like in a non-parametric model.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Paste together multiple columns</title>
      <link>https://rookie.rbind.io/blog/paste-together-multiple-columns/</link>
      <pubDate>Fri, 07 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/paste-together-multiple-columns/</guid>
      <description>&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# # paste together dataframe columns by column index&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# take the following df&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;df &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;data.frame&lt;/span&gt;(my_number &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;letters&lt;/span&gt;[1&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;], &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                 column_odd1 &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rnorm&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                 column_even1 &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rnorm&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                 column_odd2 &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rnorm&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                 column_even2 &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rnorm&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                 column_odd3 &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rnorm&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                 column_even3 &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;rnorm&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;))&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;df &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;select&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;bind_cols&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;data.frame&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;setNames&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;lapply&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;list&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;,&lt;span style=&#34;color:#099&#34;&gt;3&lt;/span&gt;), &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;4&lt;/span&gt;, &lt;span style=&#34;color:#099&#34;&gt;5&lt;/span&gt;), &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;6&lt;/span&gt;, &lt;span style=&#34;color:#099&#34;&gt;7&lt;/span&gt;)), &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;function&lt;/span&gt;(i) &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;do.call&lt;/span&gt;(sprintf, &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(fmt &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;%0.3f (%0.3f)&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# round at third place after decimal. use %s if columns were character type&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;                       df[i]))), &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;new_column1&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;new_column2&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;new_column3&amp;#34;&lt;/span&gt;))))&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;##   my_number     new_column1     new_column2     new_column3&#xA;## 1         a -0.682 (-1.828) -1.304 (-0.113)  1.121 (-0.586)&#xA;## 2         b -1.178 (-0.809)   0.534 (0.524) -1.330 (-0.709)&#xA;## 3         c -0.432 (-2.787) -1.586 (-0.105)  1.449 (-0.533)&#xA;## 4         d  -1.258 (0.455) -0.071 (-0.786) -0.326 (-0.607)&#xA;## 5         e   0.329 (0.525)   0.011 (1.141)  0.043 (-0.228)&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Not so fun with Nepalese flag</title>
      <link>https://rookie.rbind.io/blog/not-so-fun-with-nepalese-flag/</link>
      <pubDate>Thu, 06 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/not-so-fun-with-nepalese-flag/</guid>
      <description>&lt;h1 id=&#34;anatomy-of-flag&#34;&gt;Anatomy of flag&#xA;  &lt;a href=&#34;#anatomy-of-flag&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;The anatomy of flag is well described in &#xA;&lt;a href=&#34;https://rookie.rbind.io/tipsntricks/readresort/2020-05-29-know-your-flag/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;tipsntricks/readresort section&lt;/a&gt; but the quirks of constructing it are not. I will be updating attending to complete the graphics as soon as I learn more.&lt;/p&gt;&#xA;&lt;p&gt;So far, only this ugly shape is what I have here to show;&lt;/p&gt;&#xA;&lt;img src=&#34;https://rookie.rbind.io/blog/not-so-fun-with-nepalese-flag/index_files/figure-html/unnamed-chunk-1-1.png&#34; width=&#34;768&#34; /&gt;</description>
    </item>
    <item>
      <title>Piecewise Linear Function: An Introduction</title>
      <link>https://rookie.rbind.io/blog/piecewise-linear-function-an-introduction/</link>
      <pubDate>Thu, 06 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/piecewise-linear-function-an-introduction/</guid>
      <description>&lt;h2 id=&#34;definition-and-meaning&#34;&gt;Definition and meaning&#xA;  &lt;a href=&#34;#definition-and-meaning&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://en.wikipedia.org/wiki/Piecewise_linear_function&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Wikipedia&lt;/a&gt; defines a piecewise linear function as:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;&amp;ldquo;a function defined on a (possibly unbounded) interval of real numbers, such that there is a collection of intervals on each of which the function is an affine function&amp;rdquo;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;example&#34;&gt;Example&#xA;  &lt;a href=&#34;#example&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# piecewise linear functions using if statements&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# piecewise linear function defined using if for cases.&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;pw.function &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;function&lt;/span&gt;(t) {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;if&lt;/span&gt;(t &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;0.5&lt;/span&gt;) {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#099&#34;&gt;0.7&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;*&lt;/span&gt; t&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;0.5&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  } &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;else&lt;/span&gt; {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#099&#34;&gt;0.7&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;+&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;0.3&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;*&lt;/span&gt;(t&lt;span style=&#34;color:#099&#34;&gt;-0.5&lt;/span&gt;)&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;0.5&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  }&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;pw.function &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;Vectorize&lt;/span&gt;(pw.function)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;tibble&lt;/span&gt;(t &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;0.05&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;0.99&lt;/span&gt;, by &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;0.05&lt;/span&gt;)) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate&lt;/span&gt;(pfun_out &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;pw.function&lt;/span&gt;(t)) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ggplot&lt;/span&gt;() &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;+&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;geom_line&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;aes&lt;/span&gt;(x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; t, y &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; pfun_out), group &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;combined_grp&amp;#34;&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;img src=&#34;https://rookie.rbind.io/blog/piecewise-linear-function-an-introduction/index_files/figure-html/piecewise-simple-1.png&#34; width=&#34;768&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;application&#34;&gt;Application&#xA;  &lt;a href=&#34;#application&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;In segmentation and curve fitting. For a larger discourse refer to &#xA;&lt;a href=&#34;https://cran.r-project.org/package=segmented&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;segmented&lt;/a&gt; package in cran.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The birthday problem: Non analytical solution</title>
      <link>https://rookie.rbind.io/blog/the-birthday-problem-non-analytical-solution/</link>
      <pubDate>Thu, 06 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/the-birthday-problem-non-analytical-solution/</guid>
      <description>&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# Birthday problem&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;crossing&lt;/span&gt;(n &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;100&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;         x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;4&lt;/span&gt;) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate&lt;/span&gt;(probability &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;map2_dbl&lt;/span&gt;(n, x, &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;~&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;pbirthday&lt;/span&gt;(.x, coincident &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; .y))) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ggplot&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;aes&lt;/span&gt;(n, probability, color &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;factor&lt;/span&gt;(x))) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;+&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;geom_line&lt;/span&gt;() &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;+&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;labs&lt;/span&gt;(x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;People in room&amp;#34;&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;       y &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;Probability X people share a birthday&amp;#34;&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;       color &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;X&amp;#34;&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;img src=&#34;https://rookie.rbind.io/blog/the-birthday-problem-non-analytical-solution/index_files/figure-html/birthday-simulation-1.png&#34; width=&#34;576&#34; /&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# Approximating birthday paradox with Poisson distribution&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;crossing&lt;/span&gt;(n &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;250&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;         x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;2&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;4&lt;/span&gt;) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate&lt;/span&gt;(combinations &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;choose&lt;/span&gt;(n, x), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;         probability_each &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; (&lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;365&lt;/span&gt;)&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;^&lt;/span&gt;(x&lt;span style=&#34;color:#099&#34;&gt;-1&lt;/span&gt;), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;         poisson &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;dpois&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;0&lt;/span&gt;, combinations &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;*&lt;/span&gt; probability_each), &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;         pbirthday_x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;map2_dbl&lt;/span&gt;(n, x, &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;~&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;pbirthday&lt;/span&gt;(.x, coincident &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; .y))) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;gather&lt;/span&gt;(type, probability, pbirthday_x, poisson) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ggplot&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;aes&lt;/span&gt;(n, probability, color &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;factor&lt;/span&gt;(x), lty &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; type)) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;+&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;geom_line&lt;/span&gt;() &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;+&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;labs&lt;/span&gt;(x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;People in room&amp;#34;&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;       y &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;Probability X people share a birthday&amp;#34;&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;       color &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;X&amp;#34;&lt;/span&gt;, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;       lty &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;img src=&#34;https://rookie.rbind.io/blog/the-birthday-problem-non-analytical-solution/index_files/figure-html/birthday-simulation-2.png&#34; width=&#34;576&#34; /&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# the reason is because events are no longer weakly dependent-every pair makes triplets&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# more likely.&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# Analytical solution to birthday problem (Mikhail Papov; bearlogic.github.io)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# Suppose, we are interested in the probability that, in a set of n randomly chosen people, some pair of them will have the same&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# birthday (which we refer to as event A).&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# Using Kolmogorov axionms and conditional probability, we can derive an analytical solution for P(A):&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# P(A) = 1-\frac{n!.\binom{365}{n}}{365^n}&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# This can be solved in `R` as:&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;pa &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;function&lt;/span&gt;(n){&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;-&lt;/span&gt; (&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;factorial&lt;/span&gt;(n) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;*&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;choose&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;365&lt;/span&gt;, n))&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;365&lt;/span&gt;^n)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;map_dfr&lt;/span&gt;(.x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;list&lt;/span&gt;(probability &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;50&lt;/span&gt;), .f &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; pa) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;mutate&lt;/span&gt;(x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;seq_along&lt;/span&gt;(probability)) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;%&amp;gt;%&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;ggplot&lt;/span&gt;(&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;aes&lt;/span&gt;(x &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; x, y &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; probability)) &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;+&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;geom_line&lt;/span&gt;()&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;img src=&#34;https://rookie.rbind.io/blog/the-birthday-problem-non-analytical-solution/index_files/figure-html/birthday-simulation-3.png&#34; width=&#34;576&#34; /&gt;</description>
    </item>
    <item>
      <title>Making Summary Tables in R</title>
      <link>https://rookie.rbind.io/blog/making-summary-tables-in-r/</link>
      <pubDate>Tue, 04 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/making-summary-tables-in-r/</guid>
      <description>&lt;h2 id=&#34;background&#34;&gt;Background&#xA;  &lt;a href=&#34;#background&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Table output of R is one of the richest and satisfying to use feature. Rmarkdown format provides loads of package support to create, format, and present tables beautifully. This is on one aspect extremely useful while on the other end it could very well be daunting as to choose between various package options to use while formating your table. I have a bunch of suggestions and enlistments here to help get off that dilemma.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tidytuesday: Claremont Run, X-men Characters</title>
      <link>https://rookie.rbind.io/blog/tidytuesday-tour-de-france/</link>
      <pubDate>Tue, 04 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/tidytuesday-tour-de-france/</guid>
      <description>&lt;h2 id=&#34;x-men-characters&#34;&gt;X men characters&#xA;  &lt;a href=&#34;#x-men-characters&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h3 id=&#34;data-dictionary-explore&#34;&gt;Data dictionary explore&#xA;  &lt;a href=&#34;#data-dictionary-explore&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h3&gt;&#xA;&lt;p&gt;Table: Table 1: Data summary&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Name&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Piped data&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Number of rows&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;308&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Number of columns&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;9&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;_______________________&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Column type frequency:&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;character&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;8&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;numeric&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;1&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;________________________&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Group variables&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;None&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;&lt;strong&gt;Variable type: character&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Array operation: Outer product</title>
      <link>https://rookie.rbind.io/blog/array-operation-outer-product/</link>
      <pubDate>Fri, 31 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/array-operation-outer-product/</guid>
      <description>&lt;p&gt;Incidentally, I ran into outer product function &lt;code&gt;outer&lt;/code&gt; today. It is extremely powerful function, in that it computes all combinations of product of two objects. One simplest and obvious demonstration is the multiplication table of numbers. &amp;#x1f604;&lt;/p&gt;&#xA;&lt;p&gt;We can show multiplication table of numbers 1 through 12 each multiplied 1 through 10.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;outer&lt;/span&gt;(&lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;10&lt;/span&gt;, &lt;span style=&#34;color:#099&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#099&#34;&gt;12&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;*&amp;#34;&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;##       [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12]&#xA;##  [1,]    1    2    3    4    5    6    7    8    9    10    11    12&#xA;##  [2,]    2    4    6    8   10   12   14   16   18    20    22    24&#xA;##  [3,]    3    6    9   12   15   18   21   24   27    30    33    36&#xA;##  [4,]    4    8   12   16   20   24   28   32   36    40    44    48&#xA;##  [5,]    5   10   15   20   25   30   35   40   45    50    55    60&#xA;##  [6,]    6   12   18   24   30   36   42   48   54    60    66    72&#xA;##  [7,]    7   14   21   28   35   42   49   56   63    70    77    84&#xA;##  [8,]    8   16   24   32   40   48   56   64   72    80    88    96&#xA;##  [9,]    9   18   27   36   45   54   63   72   81    90    99   108&#xA;## [10,]   10   20   30   40   50   60   70   80   90   100   110   120&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Another immediate use can be seen in design and combinatorics. For instance,&lt;/p&gt;</description>
    </item>
    <item>
      <title>Time Series: Cointegration Analysis</title>
      <link>https://rookie.rbind.io/blog/time-series-cointegration-analysis/</link>
      <pubDate>Fri, 31 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/time-series-cointegration-analysis/</guid>
      <description>&lt;h2 id=&#34;cointegration&#34;&gt;Cointegration&#xA;  &lt;a href=&#34;#cointegration&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Although not a new topic in finance and portfolio management, as some of the tweets below suggest, it&amp;rsquo;s application in field of Agricultural Economics and commodity market analysis is not often highlighted. A tweet relating S2F and bitcoin (BTC) trading was posted recently.&lt;/p&gt;&#xA;&lt;p&gt;In this post, I demonstrate what are the basic ingredients of the cointegration analysis. In particular, I provide some context as to how it came to being and what it&amp;rsquo;s roots are in theory. While catching along the core applications, I will use example dataset and present its features, in synology.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Time Series: Basic Analysis</title>
      <link>https://rookie.rbind.io/blog/time-series-basic-analysis/</link>
      <pubDate>Thu, 04 Jun 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/time-series-basic-analysis/</guid>
      <description>&lt;h2 id=&#34;background&#34;&gt;Background&#xA;  &lt;a href=&#34;#background&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;This post is the first in a series of upcoming blog that tries to describe application of a lesser used technique in econometrics &amp;ndash; time series analysis. I make extensive use of datasets available in several R packages &amp;ndash; mostly the &lt;code&gt;tsibbledata&lt;/code&gt; package. Furthermore, an external package hosted in &#xA;&lt;a href=&#34;github.com/FinYang/tsdl&#34;&gt;github.com/FinYang/tsdl&lt;/a&gt; repo will be used.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Long way on return</title>
      <link>https://rookie.rbind.io/blog/long-way-on-return/</link>
      <pubDate>Thu, 28 May 2020 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/long-way-on-return/</guid>
      <description>&lt;h2 id=&#34;some-new-announcement&#34;&gt;Some new announcement&#xA;  &lt;a href=&#34;#some-new-announcement&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;There is supposed to be new div tip here (this tip is defined in a custom file called divtips.scss)&lt;/p&gt;&#xA;&lt;p&gt;:::ohshit&#xA;My content goes in here and it is due to ohshit div.&#xA;:::&lt;/p&gt;&#xA;&lt;p&gt;&lt;button data-balloon-length=&#34;fit&#34; aria-label=&#34;What about something really big? This may surpass your window dimensions. Imagine you&#39;re on that boring class with that boring teacher and you didn&#39;t slept so well last night. Suddenly you&#39;re sleeping in class. Can you believe it?!&#34; data-balloon-pos=&#34;up&#34;&gt;My width will fit to element&lt;/button&gt;&#xA;&lt;button aria-label=&#34;I have big text!&#34; class=&#34;tooltip-big-text tooltip-red&#34; data-balloon-pos=&#34;up&#34;&gt;I have big text!&lt;/button&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>CSS Grid Scaffold</title>
      <link>https://rookie.rbind.io/blog/bundled-css-grid-scaffold/</link>
      <pubDate>Tue, 02 Jul 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/bundled-css-grid-scaffold/</guid>
      <description>&lt;h3 id=&#34;grid-is-the-very-first-css-module-created-specifically-to-solve-the-layout-problems-weve-all-been-hacking-our-way-around-for-as-long-as-weve-been-making-websites&#34;&gt;“Grid is the very first CSS module created specifically to solve the layout problems we&amp;rsquo;ve all been hacking our way around for as long as we&amp;rsquo;ve been making websites.”&#xA;  &lt;a href=&#34;#grid-is-the-very-first-css-module-created-specifically-to-solve-the-layout-problems-weve-all-been-hacking-our-way-around-for-as-long-as-weve-been-making-websites&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h3&gt;&#xA;&lt;p&gt;&lt;em&gt;— &#xA;&lt;a href=&#34;http://chris.house/blog/a-complete-guide-css-grid-layout/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Chris House, A Complete Guide to CSS Grid Layout&lt;/a&gt;&lt;/em&gt; &lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;overview&#34;&gt;Overview&#xA;  &lt;a href=&#34;#overview&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Since I began building websites in Y2K, I&amp;rsquo;ve lost count how many times the phrase &amp;ldquo;&amp;hellip;there&amp;rsquo;s got to be a better way to do this&amp;rdquo; has passed my lips. Most times, while fighting with floats and widths of content and sidebars or just basically trying to get something beside something else without using a stupid &lt;code&gt;TABLE&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Built-in Contact Form</title>
      <link>https://rookie.rbind.io/blog/bundled-built-in-contact-form/</link>
      <pubDate>Mon, 01 Jul 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/bundled-built-in-contact-form/</guid>
      <description>&lt;p&gt;&lt;img src=&#34;formspree-logo.png&#34; alt=&#34;Formspree Logo&#34;&gt;&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;formspreehttpsformspreeio-makes-it-easy-to-receive-submissions-from-html-forms-on-your-static-website&#34;&gt;&#xA;&lt;a href=&#34;https://formspree.io&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Formspree&lt;/a&gt; makes it easy to receive submissions from HTML forms on your static website.&#xA;  &lt;a href=&#34;#formspreehttpsformspreeio-makes-it-easy-to-receive-submissions-from-html-forms-on-your-static-website&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;hr&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h3 id=&#34;functional-form&#34;&gt;Functional Form&#xA;  &lt;a href=&#34;#functional-form&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h3&gt;&#xA;&lt;p&gt;This theme has a &lt;strong&gt;form-to-email&lt;/strong&gt; feature built in, thanks to the simple Formspree integration. All you need to activate the form is a valid recipient email address saved in the front matter of the form&#xA;(&lt;code&gt;/content/forms/contact.md&lt;/code&gt;). Of course, the example shown below (&lt;code&gt;your@email.here&lt;/code&gt;) must not be used. Please use your actual email address.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Correlation and pathway analysis with path diagrams</title>
      <link>https://rookie.rbind.io/blog/correlation-and-pathway-analysis/</link>
      <pubDate>Thu, 21 Mar 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/correlation-and-pathway-analysis/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/correlation-and-pathway-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/correlation-and-pathway-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/correlation-and-pathway-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/correlation-and-pathway-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/correlation-and-pathway-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/correlation-and-pathway-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;background&#34;&gt;Background&#xA;  &lt;a href=&#34;#background&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Correlation study is one of the most extensively yet not fully appreciated topic. It forms the backbone of several other inferential studies. Path analysis, on a similar note, is a derived technique that explains directed dependencies among a set of variables. It is almost exactly a century old now and still finds uses in several fields of causal inference.&lt;/p&gt;&#xA;&lt;p&gt;In oder to understand the process of causal inference (thought to be successor of path analysis), it is important to understand the basics about categories of variables. Below I have pointed out some of the concepts.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Valentine wheat</title>
      <link>https://rookie.rbind.io/blog/2019-02-09-valentine-wheat/</link>
      <pubDate>Sat, 09 Feb 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/2019-02-09-valentine-wheat/</guid>
      <description>&lt;p&gt;&#xA;&lt;a href=&#34;wheat_flowering.jpg&#34;&gt;!Wheat flower&lt;/a&gt;&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;private-lives-of-wheat&#34;&gt;Private lives of wheat&#xA;  &lt;a href=&#34;#private-lives-of-wheat&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Wheat are romantics! Hopeless romantics &amp;ndash; not hapless by any means, though. &amp;#x1f604;&lt;/p&gt;&#xA;&lt;p&gt;It is the sesaon of dancing Wheat. Beginning with contacting the soil first this November and since then, wheat has been challenging. Challenging the sod early on, micromanging the cosm surrounding the biosphere, mobilizing all it could get from pretty much listless ground. After establishing itself too good, given the prolificacy of it&amp;rsquo;s tillering and the degree of sophisticated root development, it exhibits unmatched potential to tame the other forces of nature &amp;ndash; those comprise water, light and air. Neither an atom nor a quanta is wasted. Wheat feasts upon it all to become ever stronger, ever more lushier. It casts it&amp;rsquo;s influence furthermore by suppressing any growth forms competing it. Wheat is so assertive that none get chance to outgrow once it&amp;rsquo;s foothold is established. And now, the season is to blame for what it has transformed into &amp;ndash; a romantic. Henceforth, i will mostly be divulging about this species on what was observable today at various scales in production plots.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Seed growth rate of major cultivated crops</title>
      <link>https://rookie.rbind.io/blog/seed-growth-rate-of-major-cultivated-crops/</link>
      <pubDate>Sun, 03 Feb 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/seed-growth-rate-of-major-cultivated-crops/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/seed-growth-rate-of-major-cultivated-crops/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/seed-growth-rate-of-major-cultivated-crops/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;context&#34;&gt;Context&#xA;  &lt;a href=&#34;#context&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;div style=&#34;border: 2px solid #22d0dd; padding: 10px; overflow-x: scroll; width:100%; &#34;&gt;&lt;table class=&#34;table table-striped table-hover table-condensed table-responsive&#34; style=&#34;font-size: 12px; margin-left: auto; margin-right: auto;&#34;&gt;&#xA;&lt;caption style=&#34;font-size: initial !important;&#34;&gt;(\#tab:smr-vegetables)Seed growth rate of common cultivated crop species&lt;/caption&gt;&#xA; &lt;thead&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Crop &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Number of cultivars &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Seed growth rate_mean (mg per seed per day) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Seed growth rate_range (mg per seed per day) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Effective filling period_mean (day) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Effective filling period_range (day) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Maximum size_mean (mg per seed) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Maximum size_range (mg per seed) &lt;/th&gt;&#xA;  &lt;/tr&gt;&#xA; &lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cereals: &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Wheat (Triticum aestivum L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 26 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1.4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2.1-1.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 29 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 45-19 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 41 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 55-23 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Barley (Horedum vulgare L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 13 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1.6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2.4-0.6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 25 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 43-18 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 38 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 50-22 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rice (Oryza sativa L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 12 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1.2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2.0-0.9 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 24 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 36-12 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 28 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 50-20 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sorghum (Sorghum bicolor (L.) Moench.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 9 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 0.9 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1.9-0.4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 23 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 42-20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 28 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 37-19 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Maize (Zea mays L.) (inbreds) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 22 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 7.4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 9.7-3.6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 31 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 39-23 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 228 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 322-86 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Maize (Zea mays L.) (hybrids) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 8.8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 10.4-7.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 35 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 41-23 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 302 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 410-229 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Legumes: &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Soybean (Glycine max (L.) Merr.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 21 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 6.8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 14.7-3.6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 29 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 46-13 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 202 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 484-84 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Bean (Phaseolus vulgaris L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 18.9 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 33.1-10.2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 18 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 24-14 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 345 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 540-190 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pea (Pisum sativum L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 14.3-5.6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 22 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 35-12 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 195 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 224-150 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Field pea (P. arvense) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 9.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 13.0-6.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 25 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 32-18 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 211 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 232-190 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Broad bean (Vicia faba L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 36.9 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 55.0-20.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 31 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 57-16 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1104 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2017-414 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cowpea (Vigna unguiculata L. Walp) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 8.4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 12.2-4.4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 9.0-7.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 73 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 122-32 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Groundnut (Arachis hypogaea) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 12.8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 14.0-11.6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 44 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 45-43 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 563 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 626-500 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Oil seeds: &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Flax (Linum usitatissimum L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 0.2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 0.3-0.2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 31 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 35-27 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 8.0-7.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sunflower (Helianthus annuus L.) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 7 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1.6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2.0-1.2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 34 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 48-30 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 54 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 75-39 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&lt;/div&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;references&#34;&gt;References&#xA;  &lt;a href=&#34;#references&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Page 46, Seed Biology and Yield of Grain Crops, 2nd Edition&lt;/p&gt;</description>
    </item>
    <item>
      <title>World production and grain composition of major cultivated species</title>
      <link>https://rookie.rbind.io/blog/world-production-and-grain-composition-of-major-cultivated-species/</link>
      <pubDate>Sun, 03 Feb 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/world-production-and-grain-composition-of-major-cultivated-species/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/world-production-and-grain-composition-of-major-cultivated-species/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/world-production-and-grain-composition-of-major-cultivated-species/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/world-production-and-grain-composition-of-major-cultivated-species/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/world-production-and-grain-composition-of-major-cultivated-species/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;context&#34;&gt;Context&#xA;  &lt;a href=&#34;#context&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Out of crops raised for their seed/grains (listed under 35 species, by FAO; FAOSTAT, 2014), only 22 species are produced in substantial amounts. Species of graminae and leguminosae families alone account for about 85 percent of the total grain production. As presented here in Table &lt;a href=&#34;#tab:world-production&#34;&gt;1&lt;/a&gt;.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;production&#34;&gt;Production&#xA;  &lt;a href=&#34;#production&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;div style=&#34;border: 2px solid #22d0dd; padding: 10px; overflow-x: scroll; width:100%; &#34;&gt;&lt;table class=&#34;table table-striped table-hover table-condensed table-responsive&#34; style=&#34;font-size: 12px; margin-left: auto; margin-right: auto;&#34;&gt;&#xA;&lt;caption style=&#34;font-size: initial !important;&#34;&gt;(\#tab:world-production)Global production of major cultivated crops&lt;/caption&gt;&#xA; &lt;thead&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Crop &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Crop species &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; World production^[Average of 2011 to 2014, FAOSTAT (2016)] (1000 t) &lt;/th&gt;&#xA;  &lt;/tr&gt;&#xA; &lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Poaceae &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Maize &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Zea mays L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 950394 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rice &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Oryza sativa L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 733424 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Wheat &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Triticum spp. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 700828 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Barley &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Hordeum vulgare L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 138252 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sorghum &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Sorghum bicolor (L.) Moench &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 58647 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Millet^[May include members of other genera such as Pennisetum, Papspalm, Setoria and Echinochla] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Panicum miliaceum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 26528 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Oat &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Avena sativa L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 22639 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rye &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Secale cereale L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 14906 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Triticale &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; X Triticosecale Wittm ex A. Camus &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 14653 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Fabaceae &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Soybean &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Glycine max (L.) Merrill &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 272426 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Groundnut^[In the shell] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Arachis hypogaea L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 41366 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Bean^[Also includes other species of Phaseolus and, in some countries, Vigna species.] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Phaseolus vulgaris L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 23898 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Chickpea &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Cicer arietinum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 12735 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pea, dry^[May include P. arvense (field pea).] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Pisum sativum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 11013 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cowpea &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Vigna unguiculata (L.) Walp. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 6661 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Lentil &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Lens culinaris Medikus &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4831 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Broad bean &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Vicia faba L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4332 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pigeon pea &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Cajanus cajan L. Millsp. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4454 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Others^[Rapeseed is in the Brassicaceae, sunflower and safflower are in the Asteraceae, and sesame is in Pedaliaceae.] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rapeseed^[May include industrial and edible (canola) types, data from some countries includes mustard (Brassica juncea (L.) Czern, et Coss)] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Brassica napus L., B campestris L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 67789 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sunflower &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Helianthus annuus L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 40931 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sesame &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Sesamum indicum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4738 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Safflower &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Carthamus tinctoris L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 776 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&lt;/div&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;grain-composition&#34;&gt;Grain composition&#xA;  &lt;a href=&#34;#grain-composition&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;div style=&#34;border: 2px solid #22d0dd; padding: 10px; overflow-x: scroll; width:100%; &#34;&gt;&lt;table class=&#34;table table-striped table-hover table-condensed table-responsive&#34; style=&#34;font-size: 12px; margin-left: auto; margin-right: auto;&#34;&gt;&#xA;&lt;caption style=&#34;font-size: initial !important;&#34;&gt;(\#tab:grain-comp)Global production of major cultivated crops&lt;/caption&gt;&#xA; &lt;thead&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Crop &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Crop species &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Harvested unit &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Seed carbohydrate (g_per_kg) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Seed oil (g_per_kg) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Seed protein (g_per_kg) &lt;/th&gt;&#xA;  &lt;/tr&gt;&#xA; &lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Poaceae &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Maize &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Zea mays L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 50 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 100 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rice &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Oryza sativa L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 880 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 80 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Wheat &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Triticum spp. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 750 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 120 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Barley &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Hordeum vulgare L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis^[Harvested grain usually includes the lemma and palea] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 760 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 30 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 120 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sorghum &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Sorghum bicolor (L.) Moench &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 820 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 40 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 120 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Millet^[May include members of other genera such as Pennisetum, Papspalm, Setoria and Echinochla] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Panicum miliaceum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 690 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 50 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 110 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Oat &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Avena sativa L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis^[Harvested grain usually includes the lemma and palea] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 660 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 80 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 130 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rye &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Secale cereale L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 760 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 120 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Triticale &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; X Triticosecale Wittm ex A. Camus &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Caryopsis &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 594 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 18 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 131 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Fabaceae &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Soybean &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Glycine max (L.) Merrill &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 260 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 170 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 370 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Groundnut^[In the shell] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Arachis hypogaea L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 120 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 480 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 310 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Bean^[Also includes other species of Phaseolus and, in some countries, Vigna species.] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Phaseolus vulgaris L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 620 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 240 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Chickpea &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Cicer arietinum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 680 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 50 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 230 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pea, dry^[May include P. arvense (field pea).] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Pisum sativum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 520 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 60 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 250 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cowpea &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Vigna unguiculata (L.) Walp. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 570 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 250 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Lentil &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Lens culinaris Medikus &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 670 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 280 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Broad bean &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Vicia faba L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 560 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 230 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pigeon pea &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Cajanus cajan L. Millsp. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 560 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 250 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Others^[Rapeseed is in the Brassicaceae, sunflower and safflower are in the Asteraceae, and sesame is in Pedaliaceae.] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rapeseed^[May include industrial and edible (canola) types, data from some countries includes mustard (Brassica juncea (L.) Czern, et Coss)] &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Brassica napus L., B campestris L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 190 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 480 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 210 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sunflower &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Helianthus annuus L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Cypsela &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 480 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 290 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 200 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sesame &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Sesamum indicum L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Non-endospermic seed &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 190 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 540 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 200 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Safflower &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Carthamus tinctoris L. &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; Cypsela &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 500 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 330 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 140 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&lt;/div&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;references&#34;&gt;References&#xA;  &lt;a href=&#34;#references&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Page 3 and 4, Seed Biology and Yield of Grain Crops, 2nd Edition&lt;/p&gt;</description>
    </item>
    <item>
      <title>Color charts: An introductory review on applications to qualitative crop phenotyping</title>
      <link>https://rookie.rbind.io/blog/color-charts-an-introductory-review-on-applications-to-qualitative-crop-phenotyping/</link>
      <pubDate>Wed, 23 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/color-charts-an-introductory-review-on-applications-to-qualitative-crop-phenotyping/</guid>
      <description>&lt;h1 id=&#34;background&#34;&gt;Background&#xA;  &lt;a href=&#34;#background&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Colorimetry is a fascinating topic to discuss. In conjunction with the patterns of a natural world (See this awesome video about &#xA;&lt;a href=&#34;https://www.youtube.com/watch?v=ahXIMUkSXX0&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;fibonacci numbers and plants&lt;/a&gt;), colors could have mesmerizing feels. In this post and the follow-up article, we will discuss in details about colorimetric features of a universe made of plants, in particular, which are cultivated/adopted and have edible human values &amp;ndash; the agricultural crops. Then again, there are quite a large number of agricultural species to deal with. So, we will be making a touch down on some common crop species, i.e. Pea (&lt;em&gt;Pisum sativum&lt;/em&gt;, wild counterpart of the famous &#xA;&lt;a href=&#34;https://en.wikipedia.org/wiki/Lathyrus&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Lathyrus&lt;/a&gt; pea studied by Mendel) and Wheat (&lt;em&gt;Triticum aestivum&lt;/em&gt;).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Maize seed value chain</title>
      <link>https://rookie.rbind.io/blog/maize-seed-value-chain/</link>
      <pubDate>Thu, 17 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/maize-seed-value-chain/</guid>
      <description>&lt;h1 id=&#34;introduction&#34;&gt;Introduction&#xA;  &lt;a href=&#34;#introduction&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;There are a great deal of influencers along the chain of generating finished seed material from a produce offered by farmers. As we discussed earlier in &#xA;&lt;a href=&#34;https://rookie.rbind.io/post/seed-business-process-management-guide/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;this post&lt;/a&gt;, the process takes on a fairly complex pathway while certification and processing requirements are being met. Carrying out the process requires resources, a large amount of them. This post tries to quantitatively explain a general expense scheme of a typical company in Maize seed business (Note, however, that the concepts generalize well to both Hybrid and OP seeds). So why approach to business management through the cost concept? I&amp;rsquo;ll just bullet point some of the direct benefits of thinking quantitatively.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Seed multiplication ratio and its significance in production planning</title>
      <link>https://rookie.rbind.io/blog/seed-multiplication-ratio-and-its-significance/</link>
      <pubDate>Sun, 13 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/seed-multiplication-ratio-and-its-significance/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/seed-multiplication-ratio-and-its-significance/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/seed-multiplication-ratio-and-its-significance/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;context&#34;&gt;Context&#xA;  &lt;a href=&#34;#context&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;smr-of-cereal-crops&#34;&gt;SMR of Cereal crops&#xA;  &lt;a href=&#34;#smr-of-cereal-crops&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;smr-of-vegetable-crops&#34;&gt;SMR of vegetable crops&#xA;  &lt;a href=&#34;#smr-of-vegetable-crops&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;div style=&#34;border: 2px solid #22d0dd; padding: 10px; overflow-x: scroll; width:100%; &#34;&gt;&lt;table class=&#34;table table-striped table-hover table-condensed table-responsive&#34; style=&#34;font-size: 12px; margin-left: auto; margin-right: auto;&#34;&gt;&#xA;&lt;caption style=&#34;font-size: initial !important;&#34;&gt;(\#tab:smr-vegetables)Seed multiplication ratio of common vegetable crops&lt;/caption&gt;&#xA; &lt;thead&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; SN &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;&#34;&gt; Crop &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Seed rate (per ha) &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Seed yield &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;&#34;&gt; Seed Multiplication Ratio &lt;/th&gt;&#xA;  &lt;/tr&gt;&#xA; &lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Broad leaf mustard &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1000.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Bottle gourd &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 160 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 32.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Bitter gourd &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 120 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 24.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Broccoli &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1000.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Carrot &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 120.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cabbage (Drum head) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1333.3 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 7 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cabbage (Golden acre) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 700 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1166.7 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cauliflower (Kathmandu local) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 500 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 300 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 9 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cauliflower (Snowball) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 500 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 240 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 480.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Stringy beans &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 600 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 30.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 11 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Hot pepper &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 160 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 160.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 12 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Chenopodium &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 700 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 70.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 13 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Cucumber &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 100 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 33.3 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 14 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pole bean &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 30000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 26.7 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 15 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Bush bean &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 80000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 16 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Knolkhol &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 17 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Onion &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 500 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 50.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 18 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pea &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 100000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 19 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Pumpkin &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 160 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 32.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Radish (White neck) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 6000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 133.3 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 21 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Radish (Minnow early) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 6000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 500 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 83.3 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 22 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Capsicum &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 1000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 100 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 100.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 23 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Squash &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 200 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 24 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Sponge gourd &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 200 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 40.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 25 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Swisschard &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 40.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 26 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Spinach &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 15000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 500 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 33.3 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 27 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Tomato &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 500 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 100 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 200.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 28 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Turnip &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 5000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 160.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 29 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Watermelon &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 100 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 25.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 30 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;font-weight: bold;&#34;&gt; Onion (For western mid hills) &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 10000 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 800 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 80.0 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&lt;/div&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;references&#34;&gt;References&#xA;  &lt;a href=&#34;#references&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Adapted from Nepali writing of document on Seed production technology of major vegetable crops cultivated in Nepal (Basanta Chalise and Dr. Tul Bahadur Pun). Authors cite: FAO, 1984 for their tabulation.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Seed Business: Process Management Guide</title>
      <link>https://rookie.rbind.io/blog/seed-business-process-management-guide/</link>
      <pubDate>Sat, 12 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/seed-business-process-management-guide/</guid>
      <description>&lt;h2 id=&#34;the-problem&#34;&gt;The problem&#xA;  &lt;a href=&#34;#the-problem&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Seed business is a multifaceted undertake. Although most businesses suffer strong feedback effects, seed business are more markedly left with those than most others. Let us refer to a simple case description to recapitulate just how pronounced it can be, and we are talking about the success in a long term venture.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Bean: Description of Agromorphology</title>
      <link>https://rookie.rbind.io/blog/bean-description-of-agromorphology/</link>
      <pubDate>Mon, 07 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/bean-description-of-agromorphology/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/bean-description-of-agromorphology/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/bean-description-of-agromorphology/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;introduction&#34;&gt;Introduction&#xA;  &lt;a href=&#34;#introduction&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Agromorphology constitutes what&amp;rsquo;s observable and that which is economic. Because agriculture has important connection to economy, this connection is at best rung everywhere though what agriculture reveres and, and when talked modestly, relies on: Crops.&lt;/p&gt;&#xA;&lt;p&gt;Unsurprisingly, finer details that agriculture touches upon to make ends met (processes and resources involved along the Production-Consumption chain) are convoluted. We just cannot discourse enough. This post, however, tries to make a connection between the economy and botany, however through generalization and prioritization.&lt;/p&gt;</description>
    </item>
    <item>
      <title>String tip: complex pattern recognition</title>
      <link>https://rookie.rbind.io/blog/string-tip-complex-pattern-recognition/</link>
      <pubDate>Sat, 22 Dec 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/string-tip-complex-pattern-recognition/</guid>
      <description>&lt;h2 id=&#34;background&#34;&gt;Background&#xA;  &lt;a href=&#34;#background&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;This post is all about examples and use cases. So&amp;hellip;Let&amp;rsquo;s break a leg.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Extract all words except last one using &lt;em&gt;anchors&lt;/em&gt; and &lt;em&gt;look arounds&lt;/em&gt;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nasty_char &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;I love playing wildly&amp;#34;&lt;/span&gt;) &lt;span style=&#34;color:#998;font-style:italic&#34;&gt;# remove the last word &amp;#34;wildly&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;stringr&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;str_extract&lt;/span&gt;(nasty_char, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;.*(?=\\s[:alpha:]*$)&amp;#34;&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;## [1] &amp;#34;I love playing&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>String tip: vectorized pattern replacement</title>
      <link>https://rookie.rbind.io/blog/string-tip-vectorized-pattern-replacement/</link>
      <pubDate>Sat, 22 Dec 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/string-tip-vectorized-pattern-replacement/</guid>
      <description>&lt;h2 id=&#34;example-case&#34;&gt;Example case&#xA;  &lt;a href=&#34;#example-case&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Suppose you have a bunch of really filthy names, which makes you puke&amp;hellip; You can go about fixing those with the help of &lt;code&gt;stringi&lt;/code&gt; and &lt;code&gt;stringr&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;Lets say following character vector hosts those filthy names.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;filthy &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;Grains %&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;Moisture (gm/kg)&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;Plant height (cm)&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;White   spaces&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#d14&#34;&gt;&amp;#34;White space  (filth%)&amp;#34;&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;filthy&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;## [1] &amp;#34;Grains %&amp;#34;              &amp;#34;Moisture (gm/kg)&amp;#34;      &amp;#34;Plant height (cm)&amp;#34;    &#xA;## [4] &amp;#34;White   spaces&amp;#34;        &amp;#34;White space  (filth%)&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now to get rid of the filth use string manipulation.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Variance component based parameter estimation of incomplete block designs</title>
      <link>https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/</link>
      <pubDate>Wed, 12 Dec 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/variance-component-based-parameter-estimation/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;introduction&#34;&gt;Introduction&#xA;  &lt;a href=&#34;#introduction&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Variance component models are also suited for analysis of incomplete block designs, besides complete block designs. This post aims to demonstrate exactly that. Using a dataset generated from alpha lattice design, I show how the design can be properly modeled and fit using OLS regression having various fixed model components. This system of model fitting is analogous to classical ANOVA based technique of estimating parameters.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Linear mixed model formulation</title>
      <link>https://rookie.rbind.io/blog/linear-mixed-model-formulation/</link>
      <pubDate>Sun, 09 Dec 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/linear-mixed-model-formulation/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/linear-mixed-model-formulation/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/linear-mixed-model-formulation/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;introduction&#34;&gt;Introduction&#xA;  &lt;a href=&#34;#introduction&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Mixed models are quite tricky, in that, while being very powerful extensions of linear models, they are somewhat difficult to conceptualize and otherwise to specify. Mixed models have, in addition to usual fixed effect combination of factors, random effects structure. These structure need to be specified in the model formula in &lt;code&gt;R&lt;/code&gt;. While formula specification of a model is unique in it&amp;rsquo;s own respect, the formuala expression too leads to an object with differnt properties than a regular &lt;code&gt;R&lt;/code&gt; object. Although, the complexity of formula syntax can arbitrary (constrained by classess and methods working on that), a general guideline is applicable for most of the mixed modeling utilities. These include: &lt;code&gt;lme4&lt;/code&gt;, &lt;code&gt;nlme&lt;/code&gt;, &lt;code&gt;glmmADMB&lt;/code&gt; and &lt;code&gt;glmmTMB&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rice landraces of Nepal: A reflection of past</title>
      <link>https://rookie.rbind.io/blog/rice-landraces-of-nepal/</link>
      <pubDate>Mon, 03 Dec 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/rice-landraces-of-nepal/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/rice-landraces-of-nepal/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/rice-landraces-of-nepal/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;background&#34;&gt;Background&#xA;  &lt;a href=&#34;#background&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;This is really a brash article meant to convey exactly what title hints at. Much of the contents are translated/transliterated from &amp;ldquo;Rice Science and Technology in Nepal: A historical, socio-cultural and technical compendium&amp;rdquo;, which was published in 2017. As of now, primary authors are left uncredited, but as entries become widely accepted, original writers and publishers will be duely recognized.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Design and analysis of spit plot experiments</title>
      <link>https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/</link>
      <pubDate>Tue, 27 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-spit-plot-experiments/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;split-plot-design&#34;&gt;Split plot design&#xA;  &lt;a href=&#34;#split-plot-design&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;design-and-fieldbook-template&#34;&gt;Design and fieldbook template&#xA;  &lt;a href=&#34;#design-and-fieldbook-template&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;In a field experiment to test for effects of fungicide on crop, treatment of fungicides may be distinguised into multiple factors &amp;ndash; based on chemical constituent, based on formulation, based on the mode of spray, etc. In a general case scenario where two former factors could be controlled, factor combinations may be organized in several different ways. When fully crossed implementation is not possible, split plot design comes to the rescue.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Layout and visualization of experimental design</title>
      <link>https://rookie.rbind.io/blog/layout-and-visualization-of-experimental-design/</link>
      <pubDate>Sun, 25 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/layout-and-visualization-of-experimental-design/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/layout-and-visualization-of-experimental-design/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/layout-and-visualization-of-experimental-design/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;functional-approach-to-creating-and-combing-multiple-plots&#34;&gt;Functional approach to creating and combing multiple plots&#xA;  &lt;a href=&#34;#functional-approach-to-creating-and-combing-multiple-plots&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;This approach highlights features of &lt;code&gt;gridExtra&lt;/code&gt; package that allows combining multiple grob plots using function calls.&#xA;We explicitly use lapply/split or similar class of &lt;code&gt;purrr&lt;/code&gt; functions to really scale the graphics.&lt;/p&gt;&#xA;&lt;p&gt;We load a Hybrid maize trial dataset, with fieldbook generated using &lt;code&gt;agricolae::design.rcbd()&lt;/code&gt;. The dataset looks as shown in Table &lt;a href=&#34;#tab:rcbd-maize-fieldbook&#34;&gt;1&lt;/a&gt;, after type conversion and cleaning.&lt;/p&gt;&#xA;&lt;table class=&#34;table table-striped&#34; style=&#34;font-size: 12px; margin-left: auto; margin-right: auto;&#34;&gt;&#xA;&lt;caption style=&#34;font-size: initial !important;&#34;&gt;(\#tab:rcbd-maize-fieldbook)Intermediate maturing hybrids with 50 entries each in 3 replicated blocks&lt;/caption&gt;&#xA; &lt;thead&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;th style=&#34;text-align:left;font-weight: bold;&#34;&gt; Rep &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;font-weight: bold;&#34;&gt; Block &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;font-weight: bold;&#34;&gt; Plot &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;font-weight: bold;&#34;&gt; Entry &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;font-weight: bold;&#34;&gt; col &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:left;font-weight: bold;&#34;&gt; row &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;font-weight: bold;&#34;&gt; tillering &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;font-weight: bold;&#34;&gt; moisture1 &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;font-weight: bold;&#34;&gt; moisture2 &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;font-weight: bold;&#34;&gt; Ear count &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:right;font-weight: bold;&#34;&gt; Plant height &lt;/th&gt;&#xA;  &lt;/tr&gt;&#xA; &lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 35 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 270 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 25 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 266 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 18 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 30 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 261 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 32 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 26 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 224 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 37 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 30 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 268 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 27 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 268 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 7 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 21 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 7 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 25 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 277 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 13 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:left;&#34;&gt; 8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt;  &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 3.5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 4.0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 25 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:right;&#34;&gt; 264 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;For the given dataset, we can draw on the information that &lt;code&gt;Rep&lt;/code&gt; variable was used as field level blocking factor (Although separate, &lt;code&gt;Block&lt;/code&gt;, variable exists, it was nested inside the &lt;code&gt;Rep&lt;/code&gt;.) Therefore, to begin with, we ignore other spatial grouping variable. Now, since the grid graphics only requires two way represenation of plotting data, we have &lt;code&gt;row&lt;/code&gt; and &lt;code&gt;col&lt;/code&gt; information feeding for that.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Design and analysis of balanced randomized complete block (RCBD) experiment</title>
      <link>https://rookie.rbind.io/blog/design-and-analysis-of-balanced/</link>
      <pubDate>Wed, 14 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/design-and-analysis-of-balanced/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/design-and-analysis-of-balanced/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;introduction&#34;&gt;Introduction&#xA;  &lt;a href=&#34;#introduction&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Balanced block designs are a class of randomized experimental design that contain equal number of records for a particular level of categorical variable across all blocks.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;example-1&#34;&gt;Example 1&#xA;  &lt;a href=&#34;#example-1&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Let us generate some data from random process mimicking a single factor process consisting of 3 levels.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Agriculture development chronology in Nepal</title>
      <link>https://rookie.rbind.io/blog/agriculture-development-chronology-in-nepal/</link>
      <pubDate>Sun, 04 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/agriculture-development-chronology-in-nepal/</guid>
      <description>&lt;h2 id=&#34;toolbox-for-working-with-unicode-and-nepali-fonts&#34;&gt;Toolbox for working with Unicode and Nepali fonts&#xA;  &lt;a href=&#34;#toolbox-for-working-with-unicode-and-nepali-fonts&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Here&amp;rsquo;s a collection of excellent python scripts to convert back and forth among unicode and preeti font. To convert unicode text to preeti font:&lt;/p&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://github.com/globalpolicy/UnicodeToPreeti&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;https://github.com/globalpolicy/UnicodeToPreeti&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;To convert preeti font to unicode text:&lt;/p&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://github.com/globalpolicy/PreetiToUnicode&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;https://github.com/globalpolicy/PreetiToUnicode&lt;/a&gt;&lt;/p&gt;&#xA;&lt;img src=&#34;https://rookie.rbind.io/blog/agriculture-development-chronology-in-nepal/index_files/figure-html/development-chron-1.png&#34; width=&#34;960&#34; style=&#34;display: block; margin: auto;&#34; /&gt;</description>
    </item>
    <item>
      <title>Developing flowcharts: an illustration of wheat breeding scheme</title>
      <link>https://rookie.rbind.io/blog/developing-flowcharts-an-illustration/</link>
      <pubDate>Sun, 04 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/developing-flowcharts-an-illustration/</guid>
      <description>&lt;p&gt;Flow diagrams are jam-packed with information. They normally describe a process and actors that are involved in making that happen.&lt;/p&gt;&#xA;&lt;p&gt;With r package &lt;strong&gt;diagram&lt;/strong&gt;, which uses r&amp;rsquo;s basic plotting capabilities, constructing flowcharts is as easy as drawing any other graphics.&lt;/p&gt;&#xA;&lt;p&gt;This post expands on creating simple flowdiagrams using example scenario of a wheat breeding program. The information for this graph was, most notably, deduced from those provided by senior wheat breeder of Nepal, Mr. Madan Raj Bhatta.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Expressing timestamp data in calendar</title>
      <link>https://rookie.rbind.io/blog/expressing-timestamp-data-in-calendar/</link>
      <pubDate>Sun, 04 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/expressing-timestamp-data-in-calendar/</guid>
      <description>&lt;p&gt;Unlike composing a text memos and keeping tracks of those, calendar graphics is a highly effective visual aid to taking notes and summarizing them. Well, we all have used calendar, one way or the other, in our lifetimes.&lt;/p&gt;&#xA;&lt;p&gt;Calendar based graphics enables an accurate catch at the very first glance; For example, it is very easy relating one activity of a period to another when they are laid linearly with precise graduations. Calendar graphics does exactly that &amp;ndash; some features (usually tiles) provide graduation, representing fixed interval of time (e.g., a day). This when combined with text allows unlimited freedom to provide narration for specific intervals.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Image and video editing hacks using ffmpeg</title>
      <link>https://rookie.rbind.io/blog/image-and-video-editing-hacks/</link>
      <pubDate>Sat, 03 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/image-and-video-editing-hacks/</guid>
      <description>&lt;h1 id=&#34;compose-a-slideshow&#34;&gt;Compose a slideshow&#xA;  &lt;a href=&#34;#compose-a-slideshow&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;This is beginner&amp;rsquo;s tutorial for starting up with open source &#xA;&lt;a href=&#34;https://www.ffmpeg.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ffmpeg&lt;/a&gt; library.&lt;/p&gt;&#xA;&lt;p&gt;In the beginning, it&amp;rsquo;s shown how we can convert an image gallery to a video slideshow. For example we have a directory called &lt;code&gt;images&lt;/code&gt; filled with photos that we want to knit together to obtain a slideshow. A video, however, has an additional time/length attribute besides the attribute that controls which order the images are sawn together in. Along with these, several other features underlie a video composition, some of which will be discussed in this tutorial.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Varietal database of lentil in Nepal</title>
      <link>https://rookie.rbind.io/blog/2018-10-26-varietal-database-of-lentil-in-nepal/</link>
      <pubDate>Fri, 26 Oct 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/2018-10-26-varietal-database-of-lentil-in-nepal/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/2018-10-26-varietal-database-of-lentil-in-nepal/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/2018-10-26-varietal-database-of-lentil-in-nepal/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;p&gt;This one is my effort to compose an updated database on the current situation of lentil germplasm in Nepal. I&amp;rsquo;ve managed to list out the varieties that have been made available so far (either through release or registration process). Although, a lot of other popular genotypes are trending in cultivation as of now. I consider NARC&amp;rsquo;s varietal catalogs to be the most authentic, so have borrowed most of the information from these published documents.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Grade X result</title>
      <link>https://rookie.rbind.io/blog/grade-x-result/</link>
      <pubDate>Fri, 19 Oct 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/grade-x-result/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/grade-x-result/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/grade-x-result/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;style type=&#34;text/css&#34;&gt;&#xA;&#xA;h1.title {&#xA;  font-size: 50px;&#xA;  color: DarkRed;&#xA;  text-align: center;&#xA;}&#xA;h4.author { /* Header 4 - and the author and data headers use this too  */&#xA;    font-size: 18px;&#xA;  font-family: &#34;Times New Roman&#34;, Times, serif;&#xA;  color: DarkRed;&#xA;  text-align: center;&#xA;}&#xA;h4.date { /* Header 4 - and the author and data headers use this too  */&#xA;  font-size: 18px;&#xA;  font-family: &#34;Times New Roman&#34;, Times, serif;&#xA;  color: DarkBlue;&#xA;  text-align: center;&#xA;}&#xA;&lt;/style&gt;&#xA;&lt;hr&gt;&#xA;&lt;center&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;total-marks-and-final-grades--&#34;&gt;Total Marks and Final Grades {-}&#xA;  &lt;a href=&#34;#total-marks-and-final-grades--&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;table class=&#34;table table-striped table-hover&#34; style=&#34;font-size: 14px; margin-left: auto; margin-right: auto;&#34;&gt;&#xA; &lt;thead&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; roll number &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; English Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Nepali Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; C. Maths Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Science Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Extension Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Soil Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Plant protection Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Fruit Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Agronomy Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Computer Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; O. Maths Total Marks &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; English Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Nepali Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; C. Maths Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Science Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Extension Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Soil Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Plant protection Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Fruit Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Agronomy Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; Computer Total Marks Agg grade &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; O. Maths Total Marks Agg grade &lt;/th&gt;&#xA;  &lt;/tr&gt;&#xA; &lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;57.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;72.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;77.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;84.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;81.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;74.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;88.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;88.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;76.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;46.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;63.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;72.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;82&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;77&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;71.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;81.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;74.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;82.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;57&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;56&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;89.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;82.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;82.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;85.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;89.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;79&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;42.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;19.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;20.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;48.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;58.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;50.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;49.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;67&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;34.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;33.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;49.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;57.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;73.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;49.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;43.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;24.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;52.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;46.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;65.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 7 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;71.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;50.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;75.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;71.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;76.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;80.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;77.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 8 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;73.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;45.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;83.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;81.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;78.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;83.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;88.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;79.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 9 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;39.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;26.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;56.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;56&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;49.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;57.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 10 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 11 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;42&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;20.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;22.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;49.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;53.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;44.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 12 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;52.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;22&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;36.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;57.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;69.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;67.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;65.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;68.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 13 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;30.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;27.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;65.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;63.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;53.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 14 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;58.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;32.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;19&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;63.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;48.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;68&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 15 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;69.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;34.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;35.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;63.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;63.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;80.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 16 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;23.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;29&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;48.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;56.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;53.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 17 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;58.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;37.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;25.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 18 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 19 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;48.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;40.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;27.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;77.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;72.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;75.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 20 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;48.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;26.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;22.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;56.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 21 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 22 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;42.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;74.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;73.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;81.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;73.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 23 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 24 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;32.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;31.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;18.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;46.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;47.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;49.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;48.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;46.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 25 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;46.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;43.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;29.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 26 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;58.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;36.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;75.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;75.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;67.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;80.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;68.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 27 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 28 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;45.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;58.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;77.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;80.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;79&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;63&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;79.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;81.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 29 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;43.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;42.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;30.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;57.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;56.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 30 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;41.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;29&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;68&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;57.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;65.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 31 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;67.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;80.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;74.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;79.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;73.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;82.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;72.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 32 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;41.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;52.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;71.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;76.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;76&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;74.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;77&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 33 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;45.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;30.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;65.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;78.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;76.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;64.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;78.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;72.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 34 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;52&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;37.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;25.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 35 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 36 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;54.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;40.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;32.3&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;51.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;58.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;58.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;55.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;65.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 37 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;18.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;14.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;17.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;5.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;24&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;18&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;18&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;10.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: red !important;&#34;&gt;25.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: E !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;E&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: D !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: burlywood !important;&#34;&gt;D&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 38 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;61.5&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;42.7&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;80.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;83.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;72.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;74.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;84&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;70.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: A !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;A&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;width: 1.1cm; font-weight: bold;&#34;&gt; 39 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;74.4&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;40.2&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;49.8&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;62.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;60.9&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;59.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;66.6&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: blue !important;&#34;&gt;77.1&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: C+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;C+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: B+ !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color: aliceblue !important;&#34;&gt;B+&lt;/span&gt; &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; &lt;span style=&#34;     color: white !important;border-radius: 4px; padding-right: 4px; padding-left: 4px; background-color:  !important;&#34;&gt;NA&lt;/span&gt; &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;&lt;strong&gt;NA&lt;/strong&gt; indicates the absence of student&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tidyverse and tidbits</title>
      <link>https://rookie.rbind.io/blog/tidyverse-and-tidbits/</link>
      <pubDate>Thu, 18 Oct 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/tidyverse-and-tidbits/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/tidyverse-and-tidbits/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/tidyverse-and-tidbits/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;ideas-surrounding-tidy-evaluation&#34;&gt;Ideas surrounding tidy evaluation&#xA;  &lt;a href=&#34;#ideas-surrounding-tidy-evaluation&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;R code is a tree&lt;/p&gt;&#xA;&lt;p&gt;Every expression in R can be broken down to a form represented by a tree. For instance, on top of the tree there is &amp;ldquo;a function call&amp;rdquo; followed by it&amp;rsquo;s branches: first child = function name itself, other children = function arguments. Complex calls have multiple levels of branching.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;The code tree could be captured by quoting&lt;/p&gt;&#xA;&lt;p&gt;expr() quotes &lt;strong&gt;your&lt;/strong&gt;(function developer) expression&lt;/p&gt;</description>
    </item>
    <item>
      <title>Flowering phenology of Rice genotypes in irrigated tropical condition of Nepal</title>
      <link>https://rookie.rbind.io/blog/flowering-phenology-of-rice-genotypes/</link>
      <pubDate>Wed, 17 Oct 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/flowering-phenology-of-rice-genotypes/</guid>
      <description>&lt;p&gt;Dhangadhi of Kailali, Nepal remains relatively hotter during summer season with respect to average condition of terai agro-ecology. A regime of high day temperature with bright sunshine and cool night temperature along with plenty of seasonal rain during larger part of rice growing season favors good growth of rice crop in the region.&lt;/p&gt;&#xA;&lt;p&gt;Based on a range of cultivation sowings carried out in the summer/rainy season of 2018, flowering dates were recorded for each plot of varieties, and the duration since planting to flowering was determined. Here, flowering time is ascribed to the period when approximately 50% of the anthers in each plots could be promptly seen as extruding. I summarize the resulting days to flowering period in the bar chart shown in Figure &lt;a href=&#34;#fig:rice-dtf&#34;&gt;1&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Layout and planning of individual varietal demonstrations in small areas</title>
      <link>https://rookie.rbind.io/blog/layout-and-planning-of-individual-varietal-demo/</link>
      <pubDate>Wed, 17 Oct 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/layout-and-planning-of-individual-varietal-demo/</guid>
      <description>&lt;h1 id=&#34;design-and-layout-plan&#34;&gt;Design and layout plan&#xA;  &lt;a href=&#34;#design-and-layout-plan&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;div class=&#34;figure&#34; style=&#34;text-align: center&#34;&gt;&#xA;&lt;img src=&#34;https://rookie.rbind.io/blog/layout-and-planning-of-individual-varietal-demo/index_files/figure-html/grid-displaying-1.png&#34; alt=&#34;Grid layout design of varietal demonstration for small number of plots&#34; width=&#34;672&#34; /&gt;&lt;img src=&#34;https://rookie.rbind.io/blog/layout-and-planning-of-individual-varietal-demo/index_files/figure-html/grid-displaying-2.png&#34; alt=&#34;Grid layout design of varietal demonstration for small number of plots&#34; width=&#34;672&#34; /&gt;&#xA;&lt;p class=&#34;caption&#34;&gt;Figure 1: Grid layout design of varietal demonstration for small number of plots&lt;/p&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Memorize the date? Don&#39;t need to, use lubridate</title>
      <link>https://rookie.rbind.io/blog/memorize-the-date-don-t-need-to-use-lubridate/</link>
      <pubDate>Wed, 17 Oct 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/memorize-the-date-don-t-need-to-use-lubridate/</guid>
      <description>&lt;h1 id=&#34;my-sufferance&#34;&gt;My sufferance&#xA;  &lt;a href=&#34;#my-sufferance&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Time and again, I&amp;rsquo;ve suffered due to my humanistic limitations of memorizing things promptly. I &lt;strong&gt;suck&lt;/strong&gt; at remembering stuffs, dates particularly. So, In this blog trip (Oh! this is a trip btw, because I don&amp;rsquo;t forsee myself surpassing my memory limitations any sooner than death), I will be stating if not rambing on some lifesaving tricks of picking up pieces of your faulty brain.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;the-balm&#34;&gt;The balm&#xA;  &lt;a href=&#34;#the-balm&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;I&amp;rsquo;m getting into the details of using base R&amp;rsquo;s &lt;code&gt;date()&lt;/code&gt; and date related functions. At this time, It&amp;rsquo;s might seem relevent to have some understanding of &amp;ldquo;POSIXlt&amp;rdquo; and &amp;ldquo;POSIXct&amp;rdquo; object classes. But most often these never interfere unless you have a good &amp;ndash; not expecting perfect &amp;ndash; conscience of how you recorded your dates and what you eventually intent to achieve from it. Anyway, for a quick reference, here I&amp;rsquo;ve quoted the R&amp;rsquo;s documentation on &lt;code&gt;?DateTimeClasses&lt;/code&gt;:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Diallel cross: A case study of mating designs</title>
      <link>https://rookie.rbind.io/blog/diallel-cross-analysis/</link>
      <pubDate>Sat, 15 Sep 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/diallel-cross-analysis/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/diallel-cross-analysis/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h1 id=&#34;mating-designs&#34;&gt;Mating designs&#xA;  &lt;a href=&#34;#mating-designs&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;introduction&#34;&gt;Introduction&#xA;  &lt;a href=&#34;#introduction&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Mating designs allow for partitioning of phenotypic effects – as due to genotype, environment or interacting effects among genes and alleles. Using one or more of these mating schemes, identification of heterotic groups, estimation of general and specific combining abilities and testing of environmental interactions could be done. Progenies resulting from a well designed mating are used for the dissection of trait genetics.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Writing a Reference/Recommendation Letter</title>
      <link>https://rookie.rbind.io/blog/2018-08-24-writing-recommendation/</link>
      <pubDate>Fri, 24 Aug 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/2018-08-24-writing-recommendation/</guid>
      <description>Draft a LoR for yourself</description>
    </item>
    <item>
      <title>Stability analysis: how to guide</title>
      <link>https://rookie.rbind.io/blog/stability-analysis-how-to-guide/</link>
      <pubDate>Tue, 14 Aug 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/stability-analysis-how-to-guide/</guid>
      <description>&lt;h1 id=&#34;meaning-of-stability&#34;&gt;Meaning of stability&#xA;  &lt;a href=&#34;#meaning-of-stability&#34;&gt;&lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Comparison of treatments may also imply cross comparison of their stability across multiple environments, especially when a study constitutes a series of trials that are each conducted at different locations and/or at different periods in time (henceforth referred to as MET; &lt;strong&gt;M&lt;/strong&gt;ulti-&lt;strong&gt;E&lt;/strong&gt;nvironment &lt;strong&gt;T&lt;/strong&gt;rial). Several situations exist where only mean based performance analysis are regarded inconclusive.&lt;/p&gt;&#xA;&lt;p&gt;For example, in varietal release process the authorizing body seeks record of consistent trait performace of certain crop genotype. The imperative is: a variety needs to be stably exhibit it’s characters in the proposed domain of cultivation, which generally is a wide area, throughout a long duration of cultivation cycles. This pre-condition of stable character inheritance is more relevant to crops constituting a homogenous and homozygous population. Either of the location, time period or combination of both, more commonly framed as year in field researches, could be assumed to present an unique environment that treatment entries are tested in. Thus, for results to be widely applicable, performance measures across environments should be more or less stable. To the contrary, the concept of utilizing differential character expression across different environments is often explored when interaction between genotypes and environments result in more desirable character.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Resource optimization</title>
      <link>https://rookie.rbind.io/blog/optimization/</link>
      <pubDate>Sun, 12 Aug 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/optimization/</guid>
      <description>&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;library&lt;/span&gt;(lpSolve)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#900;font-weight:bold&#34;&gt;library&lt;/span&gt;(tidyverse)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;issue&#34;&gt;Issue&#xA;  &lt;a href=&#34;#issue&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;A farmer has 600 katthas of land under his authority. Each of his katthas of land will either be sown with Rice or with Maize during the current season. Each kattha planted with Maize will yield Rs 1000, requires 2 workers and 20 kg of fertilizer. Each kattha planted with Rice will yield Rs 2000, requires 4 workers and 25 kg of fertilizers. There are currently 1200 workers and 11000 kg of fertilizer available.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hybrid Maize: History, Prospect and Practice</title>
      <link>https://rookie.rbind.io/blog/2018-08-05-hybrid-maize-history-prospect-practice/</link>
      <pubDate>Sun, 05 Aug 2018 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/2018-08-05-hybrid-maize-history-prospect-practice/</guid>
      <description>&lt;p&gt;&lt;img src=&#34;Sweet_corn_Dipa.jpg&#34; alt=&#34;Dehusked table purpose sweet corn; Image credit: Dipa Ghimire&#34;&gt;&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;questions-about-maize&#34;&gt;Questions about maize&#xA;  &lt;a href=&#34;#questions-about-maize&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;To when does maize retrace back in history of Nepal?&#xA;&lt;ul&gt;&#xA;&lt;li&gt;To the dawn of agriculture&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;How could have maize had found place in Nepalese lifestyle?&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Settlers and travellers&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;What are the reasons behind popularity of Maize in Nepal?&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Major stape diet&lt;/li&gt;&#xA;&lt;li&gt;Rich in protein content&lt;/li&gt;&#xA;&lt;li&gt;Convenient eat-as-you-go food&lt;/li&gt;&#xA;&lt;li&gt;Makes excellent animal feed and fodder&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Does maize have a substitute?&#xA;&lt;ul&gt;&#xA;&lt;li&gt;No&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;What will maize mean for Nepal?&#xA;&lt;ul&gt;&#xA;&lt;li&gt;A supporting cane in a long winding walk to food soverignity&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Will maize rule?&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Unfortunately no.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;answers-on-maize&#34;&gt;Answers on maize&#xA;  &lt;a href=&#34;#answers-on-maize&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;First off, It is necessary to be clear about what constitutes Maize. Gleaning from the fact that, most if not all, present day commercial varieties belong to &lt;em&gt;Zea&lt;/em&gt; genera, one might unwittingly gather a narrow sense for belongingness of Maize. Actually, Maize covers a whole deal of species of grass family placed under tribe Maydeae (pronounced &amp;ldquo;may-day&amp;rdquo; if one wishes to lay a bit more emphasis that maize definitely deserves). Diverse tribe maydae covers seven major identified genuses, one of which is the popular genus &lt;em&gt;Zea&lt;/em&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Thanking the farmers</title>
      <link>https://rookie.rbind.io/blog/2017-05-30-thanking-the-farmers/</link>
      <pubDate>Tue, 30 May 2017 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/2017-05-30-thanking-the-farmers/</guid>
      <description>&lt;p&gt;Everybody has their own secret mantra which they find useful and will eventually apply for their unique set of problems. As a rummaging wanna-be &lt;code&gt;R&lt;/code&gt; programmer, almost daily I shovel through rich contents of web in lookout for gurus. It&amp;rsquo;s a bit puzzling to know that most of them come faceless, nevertheless amazing are the quality of the contents the offer.&lt;/p&gt;&#xA;&lt;p&gt;Either of the creating, editing or deploying a website has never been easy, to me especially. In fact, It&amp;rsquo;s just been a few weeks, not more than a month that I deployed my first website. I can&amp;rsquo;t thank enough the &#xA;&lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown&lt;/a&gt; project by Yihui Xie that, at the first place, inspired me to make this personalized website of my own, showing how seemlessly can the technicalities be overcome. Before this I haven&amp;rsquo;t for once attempted to write an html code for a website as such.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dealing with factors</title>
      <link>https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/</link>
      <pubDate>Thu, 18 May 2017 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/</guid>
      <description>&lt;script src=&#34;https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&lt;script src=&#34;https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/index_files/kePrint/kePrint.js&#34;&gt;&lt;/script&gt;&#xA;&lt;link href=&#34;https://rookie.rbind.io/blog/2017-05-18-dealing-with-factors/index_files/lightable/lightable.css&#34; rel=&#34;stylesheet&#34; /&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2 id=&#34;a-factor-is-an-headache&#34;&gt;A &lt;code&gt;factor&lt;/code&gt; is an headache&#xA;  &lt;a href=&#34;#a-factor-is-an-headache&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; aria-hidden=&#34;true&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;&#xA;      &lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;&#xA;      &lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;&#xA;    &lt;/svg&gt;&lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;I have a dataset, cleaning which has been a pain lately. I&amp;rsquo;m going to use 20 observations of the imported dataset in this post to demonstrate how pathetically have I been advancing with it.&lt;/p&gt;&#xA;&lt;table class=&#34;table table-striped table-hover&#34; style=&#34;font-size: 10px; margin-left: auto; margin-right: auto;&#34;&gt;&#xA; &lt;thead&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; plot &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; jan_23_2017 &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; jan_26_2017 &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; jan_29_2017 &lt;/th&gt;&#xA;   &lt;th style=&#34;text-align:center;font-weight: bold;&#34;&gt; feb_02_2017 &lt;/th&gt;&#xA;  &lt;/tr&gt;&#xA; &lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;font-weight: bold;&#34;&gt; 1 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; b &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; am &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;font-weight: bold;&#34;&gt; 2 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; f &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; s &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 1p &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 10p &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;font-weight: bold;&#34;&gt; 3 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; b &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; a &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; sm &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 3p &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;font-weight: bold;&#34;&gt; 4 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; b &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; b &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; ap &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 2 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;font-weight: bold;&#34;&gt; 5 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 0 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; b &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; bp &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; s &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;  &lt;tr&gt;&#xA;   &lt;td style=&#34;text-align:center;font-weight: bold;&#34;&gt; 6 &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; b &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; a &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; sp &lt;/td&gt;&#xA;   &lt;td style=&#34;text-align:center;&#34;&gt; 3 &lt;/td&gt;&#xA;  &lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;Providing it a context, the columns represent multiple observations of same variable at different dates, as apparent from the column names.&lt;/p&gt;</description>
    </item>
    <item>
      <title>An encounter with blogdown</title>
      <link>https://rookie.rbind.io/blog/2017-05-01-an-encounter-with-blogdown/</link>
      <pubDate>Mon, 01 May 2017 00:00:00 +0000</pubDate>
      <guid>https://rookie.rbind.io/blog/2017-05-01-an-encounter-with-blogdown/</guid>
      <description>&lt;p&gt;An encounter with web content related to R, although for me it is usually random, is in general welcoming. The &#xA;&lt;a href=&#34;http://kbroman.org/blog/2017/05/01/caching-blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;link&lt;/a&gt; to this amazing feature building on the fact that using a markdown language is rather a pleasant way to write a blog post in a fully costumizable website all by yourself is enticing, to me at least. I started weaving thoughts right at the moment.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
