├── .gitignore ├── GGanalysis ├── ReverseEngineering │ ├── artifacts_like_autocracker.py │ └── gacha_model_autocracker.py ├── ScoredItem │ ├── __init__.py │ ├── genshin_like_scored_item.py │ ├── scored_item.py │ ├── scored_item_plot.py │ └── scored_item_tools.py ├── SimulationTools │ ├── scored_item_sim.py │ └── statistical_tools.py ├── __init__.py ├── basic_models.py ├── coupon_collection.py ├── distribution_1d.py ├── gacha_layers.py ├── gacha_plot.py ├── games │ ├── __init__.py │ ├── alchemy_stars │ │ ├── __init__.py │ │ ├── figure_plot.py │ │ ├── gacha_model.py │ │ └── stationary_p.py │ ├── arknights │ │ ├── __init__.py │ │ ├── figure_plot.py │ │ ├── gacha_model.py │ │ ├── readme.md │ │ └── stationary_p.py │ ├── arknights_endfield │ │ ├── __init__.py │ │ ├── gacha_model.py │ │ └── stationary_p.py │ ├── azur_lane │ │ ├── __init__.py │ │ └── gacha_model.py │ ├── blue_archive │ │ ├── __init__.py │ │ ├── figure_plot.py │ │ └── gacha_model.py │ ├── genshin_impact │ │ ├── __init__.py │ │ ├── artifact_data.py │ │ ├── artifact_example.py │ │ ├── artifact_model.py │ │ ├── figure_plot.py │ │ ├── gacha_model.py │ │ ├── get_both_EP_weapon.py │ │ ├── get_cost.py │ │ ├── predict_next_type.py │ │ ├── readme.md │ │ └── stationary_p.py │ ├── girls_frontline2_exilium │ │ ├── __init__.py │ │ ├── figure_plot.py │ │ ├── gacha_model.py │ │ └── stationary_p.py │ ├── honkai_impact_3rd_v2 │ │ ├── __init__.py │ │ └── gacha_model.py │ ├── honkai_star_rail │ │ ├── __init__.py │ │ ├── gacha_model.py │ │ ├── relic_data.py │ │ ├── relic_model.py │ │ ├── relic_sim.py │ │ └── stationary_p.py │ ├── reverse_1999 │ │ ├── __init__.py │ │ ├── figure_plot.py │ │ ├── gacha_model.py │ │ └── stationary_p.py │ ├── wuthering_waves │ │ ├── __init__.py │ │ ├── figure_plot.py │ │ ├── gacha_model.py │ │ └── stationary_p.py │ └── zenless_zone_zero │ │ ├── __init__.py │ │ ├── gacha_model.py │ │ └── stationary_p.py ├── markov_method.py └── plot_tools.py ├── LICENSE ├── docs ├── Makefile ├── make.bat ├── readme.md ├── requirements.txt └── source │ ├── _static │ └── custom.css │ ├── conf.py │ ├── games │ ├── alchemy_stars │ │ └── index.rst │ ├── arknights │ │ └── index.rst │ ├── azur_lane │ │ └── index.rst │ ├── blue_archive │ │ └── index.rst │ ├── genshin_impact │ │ ├── artifact_models.rst │ │ ├── gacha_models.rst │ │ └── index.rst │ ├── girls_frontline2_exilium │ │ └── index.rst │ ├── honkai_star_rail │ │ ├── gacha_models.rst │ │ ├── index.rst │ │ └── relic_models.rst │ ├── index.rst │ ├── reverse_1999 │ │ └── index.rst │ ├── wuthering_waves │ │ └── index.rst │ └── zenless_zone_zero │ │ └── index.rst │ ├── index.rst │ ├── introduction_to_gacha │ ├── feedback_item_problem.rst │ ├── foundations.rst │ ├── index.rst │ └── statistical_modeling_methods.rst │ ├── reference_manual │ ├── basic_tools.rst │ └── index.rst │ └── start_using │ ├── basic_concepts.rst │ ├── check_gacha_plan.rst │ ├── custom_gacha_model.rst │ ├── environment_installation.rst │ ├── index.rst │ ├── quick_visualization.rst │ ├── stationary_distribution.rst │ └── use_predefined_model.rst ├── readme.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/.gitignore -------------------------------------------------------------------------------- /GGanalysis/ReverseEngineering/artifacts_like_autocracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/ReverseEngineering/artifacts_like_autocracker.py -------------------------------------------------------------------------------- /GGanalysis/ReverseEngineering/gacha_model_autocracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/ReverseEngineering/gacha_model_autocracker.py -------------------------------------------------------------------------------- /GGanalysis/ScoredItem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/ScoredItem/__init__.py -------------------------------------------------------------------------------- /GGanalysis/ScoredItem/genshin_like_scored_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/ScoredItem/genshin_like_scored_item.py -------------------------------------------------------------------------------- /GGanalysis/ScoredItem/scored_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/ScoredItem/scored_item.py -------------------------------------------------------------------------------- /GGanalysis/ScoredItem/scored_item_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/ScoredItem/scored_item_plot.py -------------------------------------------------------------------------------- /GGanalysis/ScoredItem/scored_item_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/ScoredItem/scored_item_tools.py -------------------------------------------------------------------------------- /GGanalysis/SimulationTools/scored_item_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/SimulationTools/scored_item_sim.py -------------------------------------------------------------------------------- /GGanalysis/SimulationTools/statistical_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/SimulationTools/statistical_tools.py -------------------------------------------------------------------------------- /GGanalysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/__init__.py -------------------------------------------------------------------------------- /GGanalysis/basic_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/basic_models.py -------------------------------------------------------------------------------- /GGanalysis/coupon_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/coupon_collection.py -------------------------------------------------------------------------------- /GGanalysis/distribution_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/distribution_1d.py -------------------------------------------------------------------------------- /GGanalysis/gacha_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/gacha_layers.py -------------------------------------------------------------------------------- /GGanalysis/gacha_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/gacha_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GGanalysis/games/alchemy_stars/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/alchemy_stars/figure_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/alchemy_stars/figure_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/alchemy_stars/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/alchemy_stars/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/alchemy_stars/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/alchemy_stars/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/arknights/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/arknights/figure_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/arknights/figure_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/arknights/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/arknights/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/arknights/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/arknights/readme.md -------------------------------------------------------------------------------- /GGanalysis/games/arknights/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/arknights/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/arknights_endfield/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/arknights_endfield/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/arknights_endfield/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/arknights_endfield/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/arknights_endfield/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/azur_lane/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/azur_lane/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/azur_lane/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/blue_archive/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * 2 | -------------------------------------------------------------------------------- /GGanalysis/games/blue_archive/figure_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/blue_archive/figure_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/blue_archive/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/blue_archive/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/__init__.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/artifact_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/artifact_data.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/artifact_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/artifact_example.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/artifact_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/artifact_model.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/figure_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/figure_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/get_both_EP_weapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/get_both_EP_weapon.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/get_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/get_cost.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/predict_next_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/predict_next_type.py -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/readme.md -------------------------------------------------------------------------------- /GGanalysis/games/genshin_impact/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/genshin_impact/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/girls_frontline2_exilium/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/girls_frontline2_exilium/figure_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/girls_frontline2_exilium/figure_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/girls_frontline2_exilium/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/girls_frontline2_exilium/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/girls_frontline2_exilium/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/girls_frontline2_exilium/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/honkai_impact_3rd_v2/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/honkai_impact_3rd_v2/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/honkai_impact_3rd_v2/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/honkai_star_rail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/honkai_star_rail/__init__.py -------------------------------------------------------------------------------- /GGanalysis/games/honkai_star_rail/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/honkai_star_rail/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/honkai_star_rail/relic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/honkai_star_rail/relic_data.py -------------------------------------------------------------------------------- /GGanalysis/games/honkai_star_rail/relic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/honkai_star_rail/relic_model.py -------------------------------------------------------------------------------- /GGanalysis/games/honkai_star_rail/relic_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/honkai_star_rail/relic_sim.py -------------------------------------------------------------------------------- /GGanalysis/games/honkai_star_rail/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/honkai_star_rail/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/reverse_1999/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/reverse_1999/figure_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/reverse_1999/figure_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/reverse_1999/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/reverse_1999/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/reverse_1999/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/reverse_1999/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/wuthering_waves/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/wuthering_waves/figure_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/wuthering_waves/figure_plot.py -------------------------------------------------------------------------------- /GGanalysis/games/wuthering_waves/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/wuthering_waves/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/wuthering_waves/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/wuthering_waves/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/games/zenless_zone_zero/__init__.py: -------------------------------------------------------------------------------- 1 | from .gacha_model import * -------------------------------------------------------------------------------- /GGanalysis/games/zenless_zone_zero/gacha_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/zenless_zone_zero/gacha_model.py -------------------------------------------------------------------------------- /GGanalysis/games/zenless_zone_zero/stationary_p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/games/zenless_zone_zero/stationary_p.py -------------------------------------------------------------------------------- /GGanalysis/markov_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/markov_method.py -------------------------------------------------------------------------------- /GGanalysis/plot_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/GGanalysis/plot_tools.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- 1 | div.toctree-wrapper > p.caption { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/games/alchemy_stars/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/alchemy_stars/index.rst -------------------------------------------------------------------------------- /docs/source/games/arknights/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/arknights/index.rst -------------------------------------------------------------------------------- /docs/source/games/azur_lane/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/azur_lane/index.rst -------------------------------------------------------------------------------- /docs/source/games/blue_archive/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/blue_archive/index.rst -------------------------------------------------------------------------------- /docs/source/games/genshin_impact/artifact_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/genshin_impact/artifact_models.rst -------------------------------------------------------------------------------- /docs/source/games/genshin_impact/gacha_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/genshin_impact/gacha_models.rst -------------------------------------------------------------------------------- /docs/source/games/genshin_impact/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/genshin_impact/index.rst -------------------------------------------------------------------------------- /docs/source/games/girls_frontline2_exilium/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/girls_frontline2_exilium/index.rst -------------------------------------------------------------------------------- /docs/source/games/honkai_star_rail/gacha_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/honkai_star_rail/gacha_models.rst -------------------------------------------------------------------------------- /docs/source/games/honkai_star_rail/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/honkai_star_rail/index.rst -------------------------------------------------------------------------------- /docs/source/games/honkai_star_rail/relic_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/honkai_star_rail/relic_models.rst -------------------------------------------------------------------------------- /docs/source/games/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/index.rst -------------------------------------------------------------------------------- /docs/source/games/reverse_1999/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/reverse_1999/index.rst -------------------------------------------------------------------------------- /docs/source/games/wuthering_waves/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/wuthering_waves/index.rst -------------------------------------------------------------------------------- /docs/source/games/zenless_zone_zero/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/games/zenless_zone_zero/index.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/introduction_to_gacha/feedback_item_problem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/introduction_to_gacha/feedback_item_problem.rst -------------------------------------------------------------------------------- /docs/source/introduction_to_gacha/foundations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/introduction_to_gacha/foundations.rst -------------------------------------------------------------------------------- /docs/source/introduction_to_gacha/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/introduction_to_gacha/index.rst -------------------------------------------------------------------------------- /docs/source/introduction_to_gacha/statistical_modeling_methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/introduction_to_gacha/statistical_modeling_methods.rst -------------------------------------------------------------------------------- /docs/source/reference_manual/basic_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/reference_manual/basic_tools.rst -------------------------------------------------------------------------------- /docs/source/reference_manual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/reference_manual/index.rst -------------------------------------------------------------------------------- /docs/source/start_using/basic_concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/basic_concepts.rst -------------------------------------------------------------------------------- /docs/source/start_using/check_gacha_plan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/check_gacha_plan.rst -------------------------------------------------------------------------------- /docs/source/start_using/custom_gacha_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/custom_gacha_model.rst -------------------------------------------------------------------------------- /docs/source/start_using/environment_installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/environment_installation.rst -------------------------------------------------------------------------------- /docs/source/start_using/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/index.rst -------------------------------------------------------------------------------- /docs/source/start_using/quick_visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/quick_visualization.rst -------------------------------------------------------------------------------- /docs/source/start_using/stationary_distribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/stationary_distribution.rst -------------------------------------------------------------------------------- /docs/source/start_using/use_predefined_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/docs/source/start_using/use_predefined_model.rst -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneBST/GGanalysis/HEAD/setup.py --------------------------------------------------------------------------------