HARK
HARK copied to clipboard
Heterogenous Agents Resources & toolKit
There's a recently submitted pull request for edits to this notebook: "Permanent vs Persistent Income Shocks". However, at the "hark.readthedocs.io" site, the equations describing the agent's problem under the "General...
`econforgeinterp` (and all other interpolators in HARK) currently support interpolation of scalar valued functions, $f:\mathbb{R}^n\rightarrow \mathbb{R}$. I would like to work on adding the capability to interpolate vector-valued functions, $f:\mathbb{R}^n\rightarrow...
We have some support for parallelization using multi-threading: https://github.com/econ-ark/HARK/blob/876ede3a8de0ba2606a27f6b9b6d2ae42076f580/HARK/parallel.py The only place this is used is in the Market `solve_agents` method: https://github.com/econ-ark/HARK/blob/876ede3a8de0ba2606a27f6b9b6d2ae42076f580/HARK/core.py#L1274-L1301 This is a bit brittle; it causes this...
Linear approximation of risky share given next period's cFunc.
Currently, trying to Search the RTD does not get any results. When I do it, I get the "Searching..." animation. Closest google hit I could find is: https://stackoverflow.com/questions/52474177/read-the-docs-search-broken
`DiscreteDistribution` has two public attributes, `pmv` and `atoms`. `DiscreteDistributionLabeled` subclasses `DiscreteDistribution`, and has a `pmv` attribute. But instead of `atoms` it has `data`, though these attributes have identical comments/documentation. ```...
See the docs: https://hark.readthedocs.io/en/latest/ARKitecture.html#hark-utilities "The HARK.utilities module carries a double meaning in its name, as it contains both utility functions (and their derivatives, inverses, and combinations thereof) in the economic...
I am currently working on an example notebook on the documentation website called “GenIncProcessModel”. In the spirt of reading/editing as a first time learner (so that other first time learners...
Investigate merge of API of https://github.com/EconForge/interpolation.py with HARK
This is related to issue #971. An issue with `CubicInterp` is that it previously did not work as expected for the lower bound of the range where the interpolation is...