├── .gitignore ├── .vscode └── settings.json ├── Chapter8_data ├── kakei.xlsx ├── python_handling_test.csv └── test.txt ├── README.md ├── _config.yml ├── _toc.yml ├── data ├── income_per_person_gdppercapita_ppp_inflation_adjusted.csv ├── mean_years_in_school_women_percent_men_25_to_34_years.csv └── population_total.csv ├── index.md ├── logo.png ├── notebooks ├── GPnote.pdf ├── LaTeX_in_markdown.ipynb ├── Python_chapter0_HowToUse.ipynb ├── Python_chapter1_Introduction.ipynb ├── Python_chapter2_ListLoop.ipynb ├── Python_chapter3_Function.ipynb ├── Python_chapter4_Matplotlib.ipynb ├── Python_chapter5_Probability.ipynb ├── Python_chapter6_Regression.ipynb ├── Python_chapter7_Optimization.ipynb ├── Python_chapter8_handling_files.ipynb ├── Python_chapter_ArtificialNeuralNetwork.ipynb ├── Python_chapter_BayesianOptimization.ipynb ├── Python_chapter_Bayesian_linear_regression.ipynb ├── Python_chapter_WebScraping.ipynb ├── Python_misc_Error.ipynb ├── Python_misc_NewtonsMethod.ipynb ├── Python_misc_ODE.ipynb ├── Python_misc_PCA.ipynb ├── Python_misc_Pandas.ipynb ├── Python_misc_SingularValueDecomposition.ipynb ├── Python_misc_StyleGAN3.ipynb ├── Python_misc_VScode.ipynb ├── Python_misc_numpy.ipynb ├── Python_misc_python_env_forWin11.ipynb ├── Python_misc_python_environment.ipynb ├── Python_practice.ipynb ├── Python_venv_pip.ipynb ├── image.png └── pic_for_notebook │ ├── 1d_large_eta.png │ ├── 1d_simple.png │ ├── 1d_small_eta.png │ ├── GDPvsWomen.gif │ ├── Opt1d.png │ ├── Opt2d.png │ ├── Shimeji_Chiba.png │ ├── VcXsrvSS.png │ ├── Xss1.png │ ├── Xss2.png │ ├── Xss3.png │ ├── circle_random.png │ ├── download_repozip.png │ ├── estat_pic1.png │ ├── estat_pic2.png │ ├── finite_diff.png │ ├── pic_0_0.png │ ├── pic_0_1.png │ ├── pic_0_2.png │ ├── pic_copilot_1.jpeg │ ├── pic_copilot_2.jpeg │ ├── pic_copilot_3.jpeg │ ├── pic_copilot_4.jpeg │ ├── pic_vscode_1.png │ ├── pic_vscode_2.png │ ├── pic_vscode_3.png │ ├── pic_vscode_4.png │ ├── pic_vscode_5.png │ ├── ss_wsl.png │ ├── u_ta.jpeg │ ├── wsl_1.png │ ├── wsl_2.png │ ├── wsl_3.png │ ├── wsl_4_1.png │ └── wsl_4_2.png └── references.bib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Chapter8_data/kakei.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/Chapter8_data/kakei.xlsx -------------------------------------------------------------------------------- /Chapter8_data/python_handling_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/Chapter8_data/python_handling_test.csv -------------------------------------------------------------------------------- /Chapter8_data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/Chapter8_data/test.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/_config.yml -------------------------------------------------------------------------------- /_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/_toc.yml -------------------------------------------------------------------------------- /data/income_per_person_gdppercapita_ppp_inflation_adjusted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/data/income_per_person_gdppercapita_ppp_inflation_adjusted.csv -------------------------------------------------------------------------------- /data/mean_years_in_school_women_percent_men_25_to_34_years.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/data/mean_years_in_school_women_percent_men_25_to_34_years.csv -------------------------------------------------------------------------------- /data/population_total.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/data/population_total.csv -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/index.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/logo.png -------------------------------------------------------------------------------- /notebooks/GPnote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/GPnote.pdf -------------------------------------------------------------------------------- /notebooks/LaTeX_in_markdown.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/LaTeX_in_markdown.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter0_HowToUse.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter0_HowToUse.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter1_Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter1_Introduction.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter2_ListLoop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter2_ListLoop.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter3_Function.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter3_Function.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter4_Matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter4_Matplotlib.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter5_Probability.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter5_Probability.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter6_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter6_Regression.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter7_Optimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter7_Optimization.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter8_handling_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter8_handling_files.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter_ArtificialNeuralNetwork.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter_ArtificialNeuralNetwork.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter_BayesianOptimization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter_BayesianOptimization.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter_Bayesian_linear_regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter_Bayesian_linear_regression.ipynb -------------------------------------------------------------------------------- /notebooks/Python_chapter_WebScraping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_chapter_WebScraping.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_Error.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_Error.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_NewtonsMethod.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_NewtonsMethod.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_ODE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_ODE.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_PCA.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_Pandas.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_SingularValueDecomposition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_SingularValueDecomposition.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_StyleGAN3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_StyleGAN3.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_VScode.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_VScode.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_numpy.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_python_env_forWin11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_python_env_forWin11.ipynb -------------------------------------------------------------------------------- /notebooks/Python_misc_python_environment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_misc_python_environment.ipynb -------------------------------------------------------------------------------- /notebooks/Python_practice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_practice.ipynb -------------------------------------------------------------------------------- /notebooks/Python_venv_pip.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/Python_venv_pip.ipynb -------------------------------------------------------------------------------- /notebooks/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/image.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/1d_large_eta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/1d_large_eta.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/1d_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/1d_simple.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/1d_small_eta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/1d_small_eta.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/GDPvsWomen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/GDPvsWomen.gif -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/Opt1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/Opt1d.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/Opt2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/Opt2d.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/Shimeji_Chiba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/Shimeji_Chiba.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/VcXsrvSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/VcXsrvSS.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/Xss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/Xss1.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/Xss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/Xss2.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/Xss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/Xss3.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/circle_random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/circle_random.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/download_repozip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/download_repozip.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/estat_pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/estat_pic1.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/estat_pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/estat_pic2.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/finite_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/finite_diff.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_0_0.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_0_1.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_0_2.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_copilot_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_copilot_1.jpeg -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_copilot_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_copilot_2.jpeg -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_copilot_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_copilot_3.jpeg -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_copilot_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_copilot_4.jpeg -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_vscode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_vscode_1.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_vscode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_vscode_2.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_vscode_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_vscode_3.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_vscode_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_vscode_4.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/pic_vscode_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/pic_vscode_5.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/ss_wsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/ss_wsl.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/u_ta.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/u_ta.jpeg -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/wsl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/wsl_1.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/wsl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/wsl_2.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/wsl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/wsl_3.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/wsl_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/wsl_4_1.png -------------------------------------------------------------------------------- /notebooks/pic_for_notebook/wsl_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/notebooks/pic_for_notebook/wsl_4_2.png -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SotaYoshida/Lecture_DataScience/HEAD/references.bib --------------------------------------------------------------------------------