Skip to content

Commit 5e9a6af

Browse files
committed
numbaize tauchen
2 parents abd11b8 + dbb3368 commit 5e9a6af

File tree

196 files changed

+1404
-37595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+1404
-37595
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
language: python
33
python:
44
- 2.7
5-
- 3.3
5+
- 3.5
66

77
notifications:
88
email: false
@@ -14,7 +14,7 @@ branches:
1414
before_install:
1515
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
1616
- chmod +x miniconda.sh
17-
- ./miniconda.sh -b
17+
- ./miniconda.sh -b -p /home/travis/miniconda
1818
- export PATH=/home/travis/miniconda/bin:$PATH
1919
- conda update --yes conda
2020
- sudo rm -rf /dev/shm
@@ -28,7 +28,7 @@ install:
2828
- cp quantecon/tests/matplotlibrc .
2929

3030
script:
31-
- nosetests --with-coverage --cover-package=quantecon
31+
- nosetests --with-coverage --cover-package=quantecon --exclude=models #quantecon.models excluded from tests to prevent triggering the ImportWarning
3232

3333
after_success:
3434
- coveralls

MANIFEST

+3-14
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,15 @@ quantecon/quadsums.py
2626
quantecon/rank_nullspace.py
2727
quantecon/robustlq.py
2828
quantecon/version.py
29+
quantecon/game_theory/__init__.py
30+
quantecon/game_theory/normal_form_game.py
2931
quantecon/markov/__init__.py
3032
quantecon/markov/approximation.py
3133
quantecon/markov/core.py
3234
quantecon/markov/ddp.py
3335
quantecon/markov/gth_solve.py
3436
quantecon/markov/random.py
3537
quantecon/models/__init__.py
36-
quantecon/models/arellano_vfi.py
37-
quantecon/models/asset_pricing.py
38-
quantecon/models/career.py
39-
quantecon/models/ifp.py
40-
quantecon/models/jv.py
41-
quantecon/models/lucastree.py
42-
quantecon/models/odu.py
43-
quantecon/models/optgrowth.py
44-
quantecon/models/uncertainty_traps.py
45-
quantecon/models/solow/__init__.py
46-
quantecon/models/solow/ces.py
47-
quantecon/models/solow/cobb_douglas.py
48-
quantecon/models/solow/impulse_response.py
49-
quantecon/models/solow/model.py
5038
quantecon/random/__init__.py
5139
quantecon/random/utilities.py
5240
quantecon/tests/__init__.py
@@ -75,5 +63,6 @@ quantecon/util/__init__.py
7563
quantecon/util/array.py
7664
quantecon/util/common_messages.py
7765
quantecon/util/external.py
66+
quantecon/util/notebooks.py
7867
quantecon/util/random.py
7968
quantecon/util/timing.py

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,16 @@ modification, are permitted provided that the following conditions are met:
6767
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
6868
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
6969
POSSIBILITY OF SUCH DAMAGE.
70+
71+
## Major Changes
72+
73+
#### Ver. 0.3.1 (22-January-2016)
74+
75+
1. Adds the ``quantecon/game_theory/`` sub package
76+
2. Updates api for using ``distributions`` as a module ``qe.distributions``
77+
78+
#### Ver. 0.3
79+
80+
1. Removes ``quantecon/models`` subpackage and the collection of code examples. Code has been migrated to the [QuantEcon.applications](https://github.com/QuantEcon/QuantEcon.applications) repository.
81+
2. Adds a utility for fetching notebook dependencies from [QuantEcon.applications](https://github.com/QuantEcon/QuantEcon.applications) to support community contributed notebooks.
82+

docs/qe_apidoc.py

+38-61
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
Examples
2121
--------
2222
$ python qe_apidoc.py # generates the two separate directories
23-
$ python qe_apidoc.py foo_bar # generates the two separate directories
23+
$ python qe_apidoc.py foo_bar # generates the two separate directories
2424
$ python qe_apidoc.py single # generates the single directory
2525
2626
@@ -49,28 +49,19 @@
4949
:show-inheritance:
5050
"""
5151

52-
markov_module_template = """{mod_name}
53-
{equals}
54-
55-
.. automodule:: quantecon.markov.{mod_name}
56-
:members:
57-
:undoc-members:
58-
:show-inheritance:
59-
"""
60-
61-
model_module_template = """{mod_name}
52+
game_theory_module_template = """{mod_name}
6253
{equals}
6354
64-
.. automodule:: quantecon.models.{mod_name}
55+
.. automodule:: quantecon.game_theory.{mod_name}
6556
:members:
6657
:undoc-members:
6758
:show-inheritance:
6859
"""
6960

70-
solow_model_module_template = """{mod_name}
61+
markov_module_template = """{mod_name}
7162
{equals}
7263
73-
.. automodule:: quantecon.models.solow.{mod_name}
64+
.. automodule:: quantecon.markov.{mod_name}
7465
:members:
7566
:undoc-members:
7667
:show-inheritance:
@@ -119,10 +110,10 @@
119110
=======================
120111
121112
The `quantecon` python library consists of a number of modules which
122-
includes economic models (models), markov chains (markov), random
123-
generation utilities (random), a collection of tools (tools),
124-
and other utilities (util) which are
125-
mainly used by developers internal to the package.
113+
includes economic models (models), markov chains (markov), random
114+
generation utilities (random), a collection of tools (tools),
115+
and other utilities (util) which are
116+
mainly used by developers internal to the package.
126117
127118
The models section, for example, contains implementations of standard
128119
models, many of which are discussed in lectures on the website `quant-
@@ -131,8 +122,8 @@
131122
.. toctree::
132123
:maxdepth: 2
133124
125+
game_theory
134126
markov
135-
models
136127
random
137128
tools
138129
util
@@ -170,7 +161,7 @@ def source_join(f_name):
170161
def all_auto():
171162
# Get list of module names
172163
mod_names = glob("../quantecon/[a-z0-9]*.py")
173-
mod_names = map(lambda x: x.split('/')[-1], mod_names)
164+
mod_names = list(map(lambda x: x.split('/')[-1], mod_names))
174165

175166
# Ensure source/modules directory exists
176167
if not os.path.exists(source_join("modules")):
@@ -185,75 +176,62 @@ def all_auto():
185176

186177
# write index.rst file to include these autogenerated files
187178
with open(source_join("index.rst"), "w") as index:
188-
generated = "\n ".join(map(lambda x: "modules/" + x.split(".")[0],
189-
mod_names))
179+
generated = "\n ".join(list(map(lambda x: "modules/" + x.split(".")[0],
180+
mod_names)))
190181
temp = all_index_template.format(generated=generated)
191182
index.write(temp)
192183

193184

194185
def model_tool():
186+
# list file names with game_theory
187+
game_theory_files = glob("../quantecon/game_theory/[a-z0-9]*.py")
188+
game_theory = list(map(lambda x: x.split('/')[-1][:-3], game_theory_files))
189+
# Alphabetize
190+
game_theory.sort()
191+
195192
# list file names with markov
196193
markov_files = glob("../quantecon/markov/[a-z0-9]*.py")
197-
markov = map(lambda x: x.split('/')[-1][:-3], markov_files)
194+
markov = list(map(lambda x: x.split('/')[-1][:-3], markov_files))
198195
# Alphabetize
199196
markov.sort()
200197

201-
# list file names with models
202-
mod_files = glob("../quantecon/models/[a-z0-9]*.py")
203-
models = map(lambda x: x.split('/')[-1][:-3], mod_files)
204-
# Alphabetize
205-
models.sort()
206-
207-
# list file names with models.solow
208-
solow_files = glob("../quantecon/models/solow/[a-z0-9]*.py")
209-
solow = map(lambda x: x.split('/')[-1][:-3], solow_files)
210-
# Alphabetize
211-
solow.sort()
212-
213198
# list file names with random
214199
random_files = glob("../quantecon/random/[a-z0-9]*.py")
215-
random = map(lambda x: x.split('/')[-1][:-3], random_files)
200+
random = list(map(lambda x: x.split('/')[-1][:-3], random_files))
216201
# Alphabetize
217202
random.sort()
218203

219204
# list file names of tools (base level modules)
220205
tool_files = glob("../quantecon/[a-z0-9]*.py")
221-
tools = map(lambda x: x.split('/')[-1][:-3], tool_files)
206+
tools = list(map(lambda x: x.split('/')[-1][:-3], tool_files))
222207
# Alphabetize
223208
tools.remove("version")
224209
tools.sort()
225-
210+
226211
# list file names of utilities
227212
util_files = glob("../quantecon/util/[a-z0-9]*.py")
228-
util = map(lambda x: x.split('/')[-1][:-3], util_files)
213+
util = list(map(lambda x: x.split('/')[-1][:-3], util_files))
229214
# Alphabetize
230215
util.sort()
231216

232-
for folder in ["markov","models","models/solow","random","tools","util"]:
217+
for folder in ["game_theory", "markov", "random", "tools", "util"]:
233218
if not os.path.exists(source_join(folder)):
234219
os.makedirs(source_join(folder))
235220

221+
# Write file for each game_theory file
222+
for mod in game_theory:
223+
new_path = os.path.join("source", "game_theory", mod + ".rst")
224+
with open(new_path, "w") as f:
225+
equals = "=" * len(mod)
226+
f.write(game_theory_module_template.format(mod_name=mod, equals=equals))
227+
236228
# Write file for each markov file
237229
for mod in markov:
238230
new_path = os.path.join("source", "markov", mod + ".rst")
239231
with open(new_path, "w") as f:
240232
equals = "=" * len(mod)
241233
f.write(markov_module_template.format(mod_name=mod, equals=equals))
242234

243-
# Write file for each model
244-
for mod in models:
245-
new_path = os.path.join("source", "models", mod + ".rst")
246-
with open(new_path, "w") as f:
247-
equals = "=" * len(mod)
248-
f.write(model_module_template.format(mod_name=mod, equals=equals))
249-
250-
# Write file for each model.solow
251-
for mod in solow:
252-
new_path = os.path.join("source", "models", "solow", mod + ".rst")
253-
with open(new_path, "w") as f:
254-
equals = "=" * len(mod)
255-
f.write(solow_model_module_template.format(mod_name=mod, equals=equals))
256-
257235
# Write file for each random file
258236
for mod in random:
259237
new_path = os.path.join("source", "random", mod + ".rst")
@@ -279,21 +257,20 @@ def model_tool():
279257
with open(source_join("index.rst"), "w") as index:
280258
index.write(split_index_template)
281259

260+
gt = "game_theory/" + "\n game_theory/".join(game_theory)
282261
mark = "markov/" + "\n markov/".join(markov)
283-
mods = "models/" + "\n models/".join(models)
284-
mods = mods + "\n solow/" #Add solow sub directory to models
285262
rand = "random/" + "\n random/".join(random)
286263
tlz = "tools/" + "\n tools/".join(tools)
287264
utls = "util/" + "\n util/".join(util)
288265
#-TocTree-#
289-
toc_tree_list = {"markov":mark,
290-
"models": mods,
266+
toc_tree_list = {"game_theory": gt,
267+
"markov": mark,
291268
"tools": tlz,
292-
"random":rand,
293-
"util":utls,
269+
"random": rand,
270+
"util": utls,
294271
}
295272

296-
for f_name in ("markov","models","random","tools","util"):
273+
for f_name in ("game_theory", "markov", "random", "tools", "util"):
297274
with open(source_join(f_name + ".rst"), "w") as f:
298275
temp = split_file_template.format(name=f_name.capitalize(),
299276
equals="="*len(f_name),

docs/source/game_theory.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Game_theory
2+
===========
3+
4+
.. toctree::
5+
:maxdepth: 2
6+
7+
game_theory/normal_form_game
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
normal_form_game
2+
================
3+
4+
.. automodule:: quantecon.game_theory.normal_form_game
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/index.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ QuantEcon documentation
33
=======================
44

55
The `quantecon` python library consists of a number of modules which
6-
includes economic models (models), markov chains (markov), random
7-
generation utilities (random), a collection of tools (tools),
8-
and other utilities (util) which are
9-
mainly used by developers internal to the package.
6+
includes economic models (models), markov chains (markov), random
7+
generation utilities (random), a collection of tools (tools),
8+
and other utilities (util) which are
9+
mainly used by developers internal to the package.
1010

1111
The models section, for example, contains implementations of standard
1212
models, many of which are discussed in lectures on the website `quant-
@@ -15,8 +15,8 @@ econ.net <http://quant-econ.net>`_.
1515
.. toctree::
1616
:maxdepth: 2
1717

18+
game_theory
1819
markov
19-
models
2020
random
2121
tools
2222
util

docs/source/util.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ Util
77
util/array
88
util/common_messages
99
util/external
10+
util/notebooks
1011
util/random
1112
util/timing

docs/source/util/notebooks.rst

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
notebooks
2+
=========
3+
4+
.. automodule:: quantecon.util.notebooks
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

examples/3dplot.py

-24
This file was deleted.

0 commit comments

Comments
 (0)