diff options
-rw-r--r-- | README.html | 8 | ||||
-rw-r--r-- | README.md | 15 |
2 files changed, 23 insertions, 0 deletions
diff --git a/README.html b/README.html index 238c3b4..065bdb1 100644 --- a/README.html +++ b/README.html @@ -381,6 +381,14 @@ alternative to the original fitting methods, the algorithms from the reference</a>.</p> <p>The drfit package was archived on CRAN at my request on August 26, 2023. The last version that was published is 0.7.2.</p> +<p>An easy way to install the latest version of the package is to use my +drat repository.</p> +<p>If you do not have the ‘drat’ package installed, you can get it from +CRAN:</p> +<pre class="r"><code>install.packages("drat")</code></pre> +<p>Once ‘drat’ is installed, you can install drfit as follows:</p> +<pre class="r"><code>drat::addRepo("jranke") +install.packages("drfit")</code></pre> </div> @@ -22,3 +22,18 @@ More details can be found in the [function reference](https://pkgdown.jrwb.de/dr The drfit package was archived on CRAN at my request on August 26, 2023. The last version that was published is 0.7.2. + +An easy way to install the latest version of the package is to use my drat repository. + +If you do not have the 'drat' package installed, you can get it from CRAN: + +```r +install.packages("drat") +``` + +Once 'drat' is installed, you can install drfit as follows: + +```r +drat::addRepo("jranke") +install.packages("drfit") +``` |