Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📌 Sphinxのバージョンを固定 #73

Merged
merged 15 commits into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ dependencies:
- pyvista==0.38.5
- scikit-learn==1.2.2
- seaborn==0.12.2
- sphinx==4.5.0
- sphinx-book-theme==1.0.0
- statsmodels==0.13.5
19 changes: 19 additions & 0 deletions notebooks/notebooks/titanic.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@
# jupytext_version: 1.14.5
# ---

# %%
# import matplotlib as mpl
# import shutil
#
# print(mpl.get_cachedir())
# cachedir_name = mpl.get_cachedir()
# shutil.rmtree(cachedir_name)
#
# import sys
#
# reload(sys)
# sys.setdefaultencoding("utf8")

import warnings

with warnings.catch_warnings():
warnings.simplefilter("ignore")
import matplotlib.pyplot as plt

# %% [markdown]
# # タイタニック号 災害から学ぶ機械学習
#
Expand Down