<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
 <channel>
  <title>R-Forge Project: DirichletReg - Dirichlet Regression -  News</title>
  <link>https://r-forge.r-project.org/news/?group_id=902</link>
  <description>R-Forge Project News of DirichletReg - Dirichlet Regression</description>
  <language>en-us</language>
  <copyright>Copyright 2026 R-Forge</copyright>
  <webMaster>maier@users.r-forge.r-project.org (Marco J. Maier)</webMaster>
  <lastBuildDate>Wed, 06 May 2026 17:33:28 GMT</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>R-Forge RSS generator</generator>
  <item>
   <title>DirichletReg 0.6-1 on R-Forge and CRAN</title>
   <link>https://r-forge.r-project.org/forum/forum.php?forum_id=4470</link>
   <description>Version 0.6-1, which has been thoroughly tested, is now available for productive use on R-forge and CRAN.&lt;br /&gt;
&lt;br /&gt;
Performance has been boosted considerably and the drop1() method hopefully is a useful tool to ease (backward) model selection.&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest in the package – if you find any bugs or experience unexpected behavior, please don’t hesitate to contact me.</description>
   <author>maier@users.r-forge.r-project.org (Marco J. Maier)</author>
   <pubDate>Fri, 12 Dec 2014 11:25:28 GMT</pubDate>
   <guid>https://r-forge.r-project.org/forum/forum.php?forum_id=4470</guid>
   <comments>https://r-forge.r-project.org/forum/forum.php?forum_id=4470</comments>
  </item>
  <item>
   <title>DirichletReg 0.6-0 on R-Forge</title>
   <link>https://r-forge.r-project.org/forum/forum.php?forum_id=4469</link>
   <description>A new version has been released on R-Forge and it features lots of changes, fixes and improvements (especially since the last post of version 0.4-0 on 2012-04-03).&lt;br /&gt;
&lt;br /&gt;
One central improvement was to implement all time-critical routines in C (called via .Call). In this version, log-likelihood and gradient functions are finally mostly calculated using compiled C code. While working on the transition from R to C, some routines were optimized for performance.&lt;br /&gt;
&lt;br /&gt;
Another important feature was the implementation of a drop1 method for the models. This greatly eases backward-selection – add1 and finally something like a stepAIC method (as in MASS) are planned to automatize the process.&lt;br /&gt;
&lt;br /&gt;
To expand the package with confidence (i.e., change stuff without breaking existing functions), there is a test-suite (right now for the common model) using the great package testthat, that checks results, etc.&lt;br /&gt;
&lt;br /&gt;
A working paper was published and citation information was updated. The vignette is the working paper’s full code.&lt;br /&gt;
Maier, M. J. (2014). DirichletReg: Dirichlet Regression for Compositional Data in R. Research Report Series / Department of Statistics and Mathematics, 125. WU Vienna University of Economics and Business, Vienna. URL: http://epub.wu.ac.at/4077/&lt;br /&gt;
&lt;br /&gt;
Finally, there have been lots and lots of small changes, fixes, etc.&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest and if you find any bugs or experience unexpected behavior, please don’t hesitate to contact me.</description>
   <author>maier@users.r-forge.r-project.org (Marco J. Maier)</author>
   <pubDate>Tue, 04 Nov 2014 19:42:59 GMT</pubDate>
   <guid>https://r-forge.r-project.org/forum/forum.php?forum_id=4469</guid>
   <comments>https://r-forge.r-project.org/forum/forum.php?forum_id=4469</comments>
  </item>
  <item>
   <title>DirichletReg 0.4-0 on R-Forge</title>
   <link>https://r-forge.r-project.org/forum/forum.php?forum_id=4311</link>
   <description>a new version is out and there have been quite a lot of changes. some new features are:&lt;br /&gt;
&lt;br /&gt;
- the data structure of objects generated by DR_data() has been changed. it is no longer a list, but now a numeric matrix of class &amp;quot;DirichletRegData&amp;quot; with lots of attributes. this permits you to store the processed data in the original data.frame to keep your workspace tidy, e.g.,&lt;br /&gt;
    &amp;gt; ArcticLake$Y &amp;lt;- DR_data(ArcticLake[, 1:3])&lt;br /&gt;
  so you can fit a model like:&lt;br /&gt;
    &amp;gt; DirichReg(Y ~ depth, ArcticLake)&lt;br /&gt;
  note that `free floating' dependent variables (i.e., not part of the data.frame) can also be used, as in prior versions.&lt;br /&gt;
  &lt;br /&gt;
- formula processing is now handled by the package `Formula' which is much more robust than my `homemade' routines in earlier versions and has the advantage that&lt;br /&gt;
&lt;br /&gt;
- there is an update() method for Dirichlet regression models. so if you fit a model like&lt;br /&gt;
    &amp;gt; res1 &amp;lt;- DirichReg(Y ~ depth + I(depth^2), ArcticLake)&lt;br /&gt;
  you can easily omit, e.g., the quadratic term for `sand' by typing&lt;br /&gt;
    &amp;gt; res2 &amp;lt;- update(res1, . ~ . -I(depth^2))&lt;br /&gt;
  instead of having to specify a completely new model like&lt;br /&gt;
    &amp;gt; DirichReg(Y ~ depth | depth + I(depth^2) | depth + I(depth^2), ArcticLake)&lt;br /&gt;
  therefore, model selection is made a lot easier.&lt;br /&gt;
&lt;br /&gt;
- i did my best to complete the documentation which was a little fragmentary for some topics.&lt;br /&gt;
  &lt;br /&gt;
- optimization settings have been tweaked and estimation is now both, faster, and more robust.&lt;br /&gt;
  &lt;br /&gt;
- the package is now, by default, byte-compiled and therefore even faster.&lt;br /&gt;
&lt;br /&gt;
- some new methods for the class &amp;quot;DirichletRegModel&amp;quot; have been implemented.&lt;br /&gt;
&lt;br /&gt;
- DirichReg() has a couple of useful new features (subset, weights, etc.).&lt;br /&gt;
&lt;br /&gt;
- lots more ... please consult the documentation and have a look at the examples.</description>
   <author>maier@users.r-forge.r-project.org (Marco J. Maier)</author>
   <pubDate>Tue, 03 Apr 2012 14:56:12 GMT</pubDate>
   <guid>https://r-forge.r-project.org/forum/forum.php?forum_id=4311</guid>
   <comments>https://r-forge.r-project.org/forum/forum.php?forum_id=4311</comments>
  </item>
  <item>
   <title>DirichletReg 0.2-0 on R-Forge</title>
   <link>https://r-forge.r-project.org/forum/forum.php?forum_id=3718</link>
   <description>An all new version of DirichletReg is now online with lots of new features, functions, etc. If you're using it and encounter any problems, please feel free to contact me.</description>
   <author>maier@users.r-forge.r-project.org (Marco J. Maier)</author>
   <pubDate>Sun, 17 Jul 2011 16:06:34 GMT</pubDate>
   <guid>https://r-forge.r-project.org/forum/forum.php?forum_id=3718</guid>
   <comments>https://r-forge.r-project.org/forum/forum.php?forum_id=3718</comments>
  </item>
  <item>
   <title>DirichletReg .001 on R-Forge</title>
   <link>https://r-forge.r-project.org/forum/forum.php?forum_id=3377</link>
   <description>An alpha-version of DirichletReg (.001) is now on R-Forge and builds for all platforms will be available in the next few days. Some things are still missing, but the core functions work quite well.&lt;br /&gt;
&lt;br /&gt;
Please contact me, if you encounter any bugs or odd results. There is a tracker for feature requests, where you can post suggestions for new functionalities.</description>
   <author>maier@users.r-forge.r-project.org (Marco J. Maier)</author>
   <pubDate>Mon, 04 Apr 2011 19:12:41 GMT</pubDate>
   <guid>https://r-forge.r-project.org/forum/forum.php?forum_id=3377</guid>
   <comments>https://r-forge.r-project.org/forum/forum.php?forum_id=3377</comments>
  </item>
 </channel>
</rss>
