<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/deas/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/deas/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 19 Jun 2026 15:07:13 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/deas/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Choonjoo Lee</title><link>https://sourceforge.net/p/deas/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,10 +1,12 @@
 ## Title

+```text
 DEAS v2.0: unified Stata command for Data Envelopment Analysis
-
+```

 ## Announcement

+```text
 DEAS v2.0 is now available as a major update to the Stata Data Envelopment
 Analysis package.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Choonjoo Lee</dc:creator><pubDate>Fri, 19 Jun 2026 15:07:13 -0000</pubDate><guid>https://sourceforge.net5828d7606decf3b11b068cdc81144225115c2eb7</guid></item><item><title>Home modified by Choonjoo Lee</title><link>https://sourceforge.net/p/deas/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,8 +1,168 @@
-Welcome to Data Envelopment Analysis using Stata(DEAS)!
+## Title

-The goal of this project is to develop a Data Envelopment Analysis(DEA) program using Stata programming language.
-We call the program package "DEAS" which stands for Data Envelopment Analysis using Stata. 
-DEAS covers the basic models of DEA and extensions including CCR, BCC, SBM, Super-efficiency Model, Allocative Model(Profit, Revenue, Cost), (Global) Malmquist Productivity Index Model, Imprecise DEA, Additive DEA Model, Virtual Price Model, and user written models on Productivity and Efficiency Analysis.
+DEAS v2.0: unified Stata command for Data Envelopment Analysis
+
+
+## Announcement
+
+DEAS v2.0 is now available as a major update to the Stata Data Envelopment
+Analysis package.
+
+The main change is that the package is now organized around one unified command:
+

+    dea ..., model(...)
+
+The command keeps the original DEA-style syntax:
+
+    dea inputs = outputs, options
+
+and also supports an extended Stata-style syntax:
+
+    dea outputs, inputs(inputs) options
+
+Both forms produce the same results. This means older do-files remain usable,
+while new work can use a more explicit option-based style.
+
+Recommended first download
+--------------------------
+
+Start with:
+
+    deas_v2_0_stata_package.zip
+
+This file contains the ado-files, help files, quick-start guide, one teaching
+dataset, and the main article example do-file. Most users only need this file
+to begin using the new command.
+
+Other downloads
+---------------
+
+    deas_v2_0_article_supplement.zip
+
+contains the author-prepared forthcoming Stata Journal article materials, online
+supplement, figures, and LaTeX source. Article manuscript files are covered by
+ARTICLE_REUSE_NOTICE.md, not the software license.
+
+    deas_v2_0_replication_examples.zip
+
+contains the article examples, OECD education application, validation scripts,
+logs, datasets, and figure-generating do-files.
+
+    deas_v2_0_full_archive.zip
+
+contains the complete accepted-file archive.
+
+Quick start
+-----------
+
+After downloading and unzipping deas_v2_0_stata_package.zip, open Stata in the
+unzipped folder and type:
+
+    adopath ++ "`c(pwd)'"
+    which dea
+    help dea
+
+Then run the included teaching example:
+
+    use dea_6dmu.dta, clear
+    dea i_employee i_area = o_sales o_profits, rts(crs) gen(eff_crs)
+    dea i_employee i_area = o_sales o_profits, rts(vrs) gen(eff_vrs) reference
+    dea i_employee i_area = o_sales o_profits, model(sbm) rts(vrs) gen(eff_sbm)
+
+Main features
+-------------
+
+- Sixteen DEA model families through one dea command.
+- Backward compatible inputs = outputs syntax.
+- Extended syntax using inputs().
+- CCR/BCC radial technical efficiency.
+- SBM, additive model, radial super-efficiency, and Super-SBM.
+- Cost, revenue, profit, and allocative efficiency.
+- Directional distance function.
+- FDH, imprecise DEA, fuzzy DEA, congestion, and undesirable outputs.
+- Malmquist, window, network, cross-efficiency, and bootstrap extension commands.
+- Fast Mata simplex engine and optional Stata LinearProgram() IPM engine.
+- engine(auto) fallback for numerical robustness.
+- Standardized r() results for easier post-estimation workflows.
+
+Notes on game-theoretic commands
+--------------------------------
+
+The release also includes game-theoretic DEA commands for cross-efficiency
+games, Nash-style bargaining, Stackelberg-style two-stage diagnostics, and
+cooperative allocation. These are included as research-oriented diagnostic
+tools. They should not be read as fully validated structural game estimators.
+
+Documentation
+-------------
+
+Use:
+
+    help dea
+
+for the main command. Extension commands have separate help files, for example:
+
+    help dea_malmquist
+    help dea_crosseff
+    help dea_bootstrap
+    help dea_fuzzy
+
+The forthcoming Stata Journal article and online supplement provide additional
+model descriptions, implementation details, computational benchmarks,
+validation notes, and OECD education examples.
+
+Copyright and reuse
+-------------------
+
+The Stata software files are distributed under AFL-3.0; see LICENSE_CODE.txt.
+Article manuscript files, if included, are author-prepared
+forthcoming/accepted-manuscript materials and are governed separately by
+ARTICLE_REUSE_NOTICE.md. The final published Stata Journal PDF should not be
+redistributed through SourceForge or GitHub unless publisher permission or
+policy explicitly allows it.
+
+Feedback
+--------
+
+Please use the SourceForge Discussion or Support page for bug reports,
+installation problems, unclear examples, or requests for additional worked
+examples.
+```
+
+## Short Announcement Variant
+
+Use this shorter version if the Discussion page should stay compact.
+
+```text
+DEAS v2.0 is now available.
+
+This is a major update centered on one unified Stata command:
+
+    dea ..., model(...)
+
+It supports sixteen DEA model families, keeps the original inputs = outputs
+syntax, adds an extended inputs() syntax, and includes both a fast Mata simplex
+engine and Stata's LinearProgram() IPM engine.
+
+New users should start with:
+
+    deas_v2_0_stata_package.zip
+
+It contains the ado-files, help files, quick-start guide, sample dataset, and
+article example do-file.
+
+After unzipping, open Stata in the package folder and run:
+
+    adopath ++ "`c(pwd)'"
+    help dea
+    use dea_6dmu.dta, clear
+    dea i_employee i_area = o_sales o_profits, rts(crs) gen(eff_crs)
+
+Additional archives provide author-prepared forthcoming Stata Journal article
+materials, the supplement, replication examples, validation scripts, logs,
+datasets, and the full accepted-file archive. Article manuscript files are not
+covered by the software license; see ARTICLE_REUSE_NOTICE.md.
+```

 [[project_admins]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Choonjoo Lee</dc:creator><pubDate>Fri, 19 Jun 2026 15:06:32 -0000</pubDate><guid>https://sourceforge.net30280b308fdb57b83aa892fc53e8291d99f839c3</guid></item><item><title>WikiPage Home modified by bloom.rampike</title><link>https://sourceforge.net/p/deas/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,8 @@
-Welcome to your wiki!
+Welcome to Data Envelopment Analysis using Stata(DEAS)!

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/deas/wiki/markdown_syntax/) syntax.
+The goal of this project is to develop a Data Envelopment Analysis(DEA) program using Stata programming language.
+We call the program package "DEAS" which stands for Data Envelopment Analysis using Stata. 
+DEAS covers the basic models of DEA and extensions including CCR, BCC, SBM, Super-efficiency Model, Allocative Model(Profit, Revenue, Cost), (Global) Malmquist Productivity Index Model, Imprecise DEA, Additive DEA Model, Virtual Price Model, and user written models on Productivity and Efficiency Analysis.

 [[project_admins]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bloom.rampike</dc:creator><pubDate>Sat, 05 Jan 2013 07:29:38 -0000</pubDate><guid>https://sourceforge.net07258e15f3c5fb73ea3f2997e8e91f31051c82a7</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/deas/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The goal of this project is to develop a Data Envelopment Analysis(DEA) program using Stata programming language.&lt;br /&gt;
 We call the program package "DEAS" which stands for Data Envelopment Analysis using Stata. &lt;br /&gt;
 DEAS covers the basic models of DEA and extensions including CCR, BCC, SBM, Super-efficiency Model, Allocative Model(Profit, Revenue, Cost), (Global) Malmquist Productivity Index Model, Imprecise DEA, Additive DEA Model, Virtual Price Model, and more.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bloom.rampike</dc:creator><pubDate>Thu, 03 Jan 2013 14:06:41 -0000</pubDate><guid>https://sourceforge.net8e916d77b5366ef683ca68fb19ac1d4e0a54df06</guid></item><item><title>WikiPage Home modified by bloom.rampike</title><link>https://sourceforge.net/p/deas/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;a class="alink" href="SamplePage"&gt;[SamplePage]&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/deas/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;a href="/u/choonjoolee/"&gt;bloom.rampike&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;span class="download-button-50e5863724b0d960584df245" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">bloom.rampike</dc:creator><pubDate>Thu, 03 Jan 2013 13:23:03 -0000</pubDate><guid>https://sourceforge.net39dc1dc15275944d1b76a2c6e7395ba6887ef2b6</guid></item></channel></rss>