Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
cf7c6b3
Prepare terminology for observed states.
janosg Oct 31, 2021
a2155ce
Adjust data processing.
janosg Nov 1, 2021
a327256
Change interfaces to get observed data into sigma point creation func…
janosg Nov 1, 2021
82f7b80
Adjust sigma point creation.
janosg Nov 1, 2021
4888879
Get first version to run.
janosg Nov 1, 2021
042ba12
Add documentation.
janosg Nov 1, 2021
7e57dd7
Adjust visualize_transition_equations.
janosg Nov 1, 2021
f14231e
Renaming.
janosg Nov 1, 2021
ddd033a
Fix duplicate axis problem with newest seaborn.
janosg Nov 1, 2021
cdf4ce4
Fix jax deprecation warnings.
janosg Nov 1, 2021
3f32453
Improve error messages, fix typo.
hmgaudecker Nov 15, 2021
b0bd362
Sensible legend.
hmgaudecker Nov 15, 2021
e6cbbb6
Allow observed_factors as inputs in transition equations. Harmonise i…
hmgaudecker Nov 17, 2021
4ea6165
Update docstring, forgot to save in previous commit.
hmgaudecker Nov 17, 2021
ed40334
Allow user to select sharex/sharey.
hmgaudecker Nov 17, 2021
b61e723
create notebook and function for plot_pairwise_factor distributions
effieHAN Apr 24, 2021
cfc1a8b
data simulation notebook
sofyaakimova May 25, 2021
e793d2a
changes in factors distribution notebook
sofyaakimova May 25, 2021
be74b5f
modify the notebook and add state_ranges
effieHAN May 12, 2021
040cc86
fix error in notebook
effieHAN May 17, 2021
49fd378
add notebook for visualize_pairwise_factor_distribution
effieHAN May 25, 2021
e8789ce
add variance decomposition function
effieHAN Jun 29, 2021
dca8fca
add test for variance decomposition
effieHAN Jun 29, 2021
5487a6d
added notebook with variance decomposition
sofyaakimova Jul 12, 2021
6ce2bbc
Replace 'estimagic' by 'skillmodels' in docs where this was a copy & …
hmgaudecker Oct 8, 2021
22549a2
Fix the bug in iteration_to_period that led to selection of wrong con…
janosg Nov 19, 2021
3d9900d
Merge branch 'observed-factors' of https://github.com/janosg/skillmod…
janosg Nov 19, 2021
60be1a5
Another fix related to nan handling in gradient calculation.
janosg Nov 19, 2021
746312f
Fix indexing order for new transition parameter layout.
janosg Nov 22, 2021
7f3c54f
Merge branch 'observed-factors' into variance_decomposition
hmgaudecker Nov 22, 2021
07b1f1b
Explicitly convert observed factors to numpy array.
hmgaudecker Jan 24, 2022
fea7250
Pin Sphinx version due to error when running with tox.
hmgaudecker Jan 24, 2022
6c81125
Maybe error was actually what the logfile said? :D
hmgaudecker Jan 24, 2022
1be6f9d
Remove pinned Sphinx version to check.
hmgaudecker Jan 24, 2022
f86853c
Add underscores to file name.
hmgaudecker Jan 24, 2022
1e4da2f
Remove nonsensical files.
hmgaudecker Jan 24, 2022
4874af6
Refactoring to keep df representation.
hmgaudecker Feb 17, 2022
248dc83
Return df allowing to translate between outside data and model as par…
hmgaudecker Feb 17, 2022
e31bd40
Avoid failure when not all factors present in the beginning and filte…
hmgaudecker Feb 17, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
autodoc_mock_imports = [
"estimagic",
"matplotlib",
"estimagic",
"jax",
"numpy",
"pandas",
Expand Down Expand Up @@ -116,7 +115,7 @@

html_logo = "_static/images/logo.svg"

html_theme_options = {"github_url": "https://github.com/OpenSourceEconomics/estimagic"}
html_theme_options = {"github_url": "https://github.com/janosg/skillmodels"}

html_css_files = ["css/custom.css"]

Expand Down
Loading