├── D3.js ├── body │ └── D3 │ │ ├── axis.tex │ │ ├── bar.tex │ │ ├── dynamic.tex │ │ ├── intro.tex │ │ ├── language.tex │ │ ├── pie.tex │ │ └── svg.tex ├── figure │ └── D3 │ │ ├── axis_x.png │ │ ├── axis_xy.png │ │ ├── axis_y.png │ │ ├── company_axis_xy.png │ │ ├── company_bar.png │ │ ├── company_bar_chart_complete.png │ │ ├── donut_browser_share.png │ │ ├── example_bubble_chart.png │ │ ├── example_circle_packing.png │ │ ├── example_population_pyramid.png │ │ ├── example_stream_graph.png │ │ ├── gold_bar_chart.png │ │ ├── open_in_vscode.png │ │ ├── pie_browser_share.png │ │ ├── simple_pie.png │ │ └── svg_path.png ├── main.tex ├── package.tex └── preface │ └── buaa_logo.png ├── EnvSettings ├── .gitignore ├── Flask+Vue.md ├── GitRebase.md ├── Go+Gin+GORM │ ├── Go+Gin+GORM.md │ ├── demo │ │ ├── api │ │ │ └── v1 │ │ │ │ └── api.go │ │ ├── global │ │ │ └── global.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── initialize │ │ │ ├── gorm.go │ │ │ └── router.go │ │ ├── main.go │ │ ├── middleware │ │ │ └── cors.go │ │ ├── model │ │ │ └── user.go │ │ ├── router │ │ │ └── user.go │ │ └── service │ │ │ └── user.go │ └── img │ │ ├── 2020-11-16-14-14-06.png │ │ ├── 2020-11-16-14-15-32.png │ │ ├── 2020-11-16-14-22-50.png │ │ ├── 2020-11-16-14-36-03.png │ │ └── 2020-11-16-14-36-25.png ├── InitialSetup.md ├── Java+Gradle.md ├── ManjaroKDE.md ├── Nginx.md ├── Pipenv.md ├── README.md ├── Tools.md ├── buaa-login │ ├── login-v2.sh │ └── usage.md ├── cmd.reg ├── django-polls-demo │ ├── manage.py │ ├── mysite │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── polls │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── models.py │ │ ├── templates │ │ └── polls │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── flask-template-demo │ ├── app │ │ ├── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── base.html │ │ │ └── index.html │ │ └── views.py │ └── run.py └── vue2-utils │ ├── Editor.vue │ └── VueDraggable.vue ├── Intro2AI ├── 03.invest.py ├── 04.email.py ├── 05.astar │ ├── astar.py │ ├── main.py │ ├── point.py │ └── random_map.py ├── 06.account.py ├── README.md └── email_dataset │ ├── ham │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt │ └── spam │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt ├── PowerBI ├── appendix │ ├── douban.pbix │ └── test.pbix ├── body │ └── PowerBI │ │ ├── components.tex │ │ ├── example.tex │ │ ├── install_ui.tex │ │ └── intro.tex ├── figure │ └── PowerBI │ │ ├── douban_advice_table.png │ │ ├── douban_call_param.png │ │ ├── douban_create_func.png │ │ ├── douban_data_replace.png │ │ ├── douban_data_type.png │ │ ├── douban_example_table.png │ │ ├── douban_first_page_processed.png │ │ ├── douban_func_code.png │ │ ├── douban_import_from_web.png │ │ ├── douban_movie_list.png │ │ ├── douban_movie_main_page.png │ │ ├── douban_new_list.png │ │ ├── douban_new_query.png │ │ ├── douban_param_not_found.png │ │ ├── douban_raw_data_power_query.png │ │ ├── douban_score_movie_name.png │ │ ├── douban_score_year.png │ │ ├── douban_score_year_trend.png │ │ ├── douban_select_url.png │ │ ├── douban_split_data.png │ │ ├── douban_split_data_after.png │ │ ├── douban_split_from_right.png │ │ ├── douban_top250_fetched.png │ │ ├── download_powerbi.png │ │ ├── download_powerbi_web.png │ │ ├── gartner_bi_rank.png │ │ ├── powerbi.png │ │ ├── powerbi_3components.png │ │ ├── powerbi_data_view.png │ │ ├── powerbi_load_data.png │ │ ├── powerbi_publish.png │ │ ├── powerbi_query_editor_detail.png │ │ ├── powerbi_sale_profit_graph.png │ │ ├── powerbi_select_query_editor.png │ │ ├── powerbi_ui.png │ │ └── powerbi_welcome_page.png ├── main.tex ├── package.tex └── preface │ └── buaa_logo.png ├── PythonBasics ├── CS41 Schedule.md ├── README.md ├── exercises │ ├── Instructions Q1-2.md │ ├── Instructions Q5.md │ ├── Python Exercises #1 Answer.md │ ├── Python Exercises #1.md │ ├── Python Exercises #2 Answer.md │ ├── Python Exercises #2.md │ ├── Python Exercises #3 Answer.md │ ├── Python Exercises #3.md │ ├── Python Exercises #4 Answer.md │ ├── Python Exercises #4.md │ ├── Python Extra Exercises #1 Answer.md │ └── Python Extra Exercises #1.md ├── img │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── in.txt ├── knights.txt ├── out.txt ├── temp.py ├── test.py └── tutorials │ ├── Python Basics #1.md │ ├── Python Basics #2.md │ └── Python Basics #3.md ├── RBasics ├── R Basics #1 Answer.md ├── R Basics #1.md ├── R Basics #2 Answer.md ├── R Basics #2.md ├── R Basics #3 Answer.md ├── R Basics #3.md ├── README.md ├── img │ ├── 1.png │ ├── 10.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png └── test.R └── README.md /D3.js/body/D3/axis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/body/D3/axis.tex -------------------------------------------------------------------------------- /D3.js/body/D3/bar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/body/D3/bar.tex -------------------------------------------------------------------------------- /D3.js/body/D3/dynamic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/body/D3/dynamic.tex -------------------------------------------------------------------------------- /D3.js/body/D3/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/body/D3/intro.tex -------------------------------------------------------------------------------- /D3.js/body/D3/language.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/body/D3/language.tex -------------------------------------------------------------------------------- /D3.js/body/D3/pie.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/body/D3/pie.tex -------------------------------------------------------------------------------- /D3.js/body/D3/svg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/body/D3/svg.tex -------------------------------------------------------------------------------- /D3.js/figure/D3/axis_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/axis_x.png -------------------------------------------------------------------------------- /D3.js/figure/D3/axis_xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/axis_xy.png -------------------------------------------------------------------------------- /D3.js/figure/D3/axis_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/axis_y.png -------------------------------------------------------------------------------- /D3.js/figure/D3/company_axis_xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/company_axis_xy.png -------------------------------------------------------------------------------- /D3.js/figure/D3/company_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/company_bar.png -------------------------------------------------------------------------------- /D3.js/figure/D3/company_bar_chart_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/company_bar_chart_complete.png -------------------------------------------------------------------------------- /D3.js/figure/D3/donut_browser_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/donut_browser_share.png -------------------------------------------------------------------------------- /D3.js/figure/D3/example_bubble_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/example_bubble_chart.png -------------------------------------------------------------------------------- /D3.js/figure/D3/example_circle_packing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/example_circle_packing.png -------------------------------------------------------------------------------- /D3.js/figure/D3/example_population_pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/example_population_pyramid.png -------------------------------------------------------------------------------- /D3.js/figure/D3/example_stream_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/example_stream_graph.png -------------------------------------------------------------------------------- /D3.js/figure/D3/gold_bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/gold_bar_chart.png -------------------------------------------------------------------------------- /D3.js/figure/D3/open_in_vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/open_in_vscode.png -------------------------------------------------------------------------------- /D3.js/figure/D3/pie_browser_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/pie_browser_share.png -------------------------------------------------------------------------------- /D3.js/figure/D3/simple_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/simple_pie.png -------------------------------------------------------------------------------- /D3.js/figure/D3/svg_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/figure/D3/svg_path.png -------------------------------------------------------------------------------- /D3.js/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/main.tex -------------------------------------------------------------------------------- /D3.js/package.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/package.tex -------------------------------------------------------------------------------- /D3.js/preface/buaa_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/D3.js/preface/buaa_logo.png -------------------------------------------------------------------------------- /EnvSettings/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | db.sqlite3 4 | migrations 5 | flask -------------------------------------------------------------------------------- /EnvSettings/Flask+Vue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Flask+Vue.md -------------------------------------------------------------------------------- /EnvSettings/GitRebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/GitRebase.md -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/Go+Gin+GORM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/Go+Gin+GORM.md -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/api/v1/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/api/v1/api.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/global/global.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/go.mod -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/go.sum -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/initialize/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/initialize/gorm.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/initialize/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/initialize/router.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/main.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/middleware/cors.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/model/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/model/user.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/router/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/router/user.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/demo/service/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/demo/service/user.go -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/img/2020-11-16-14-14-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/img/2020-11-16-14-14-06.png -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/img/2020-11-16-14-15-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/img/2020-11-16-14-15-32.png -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/img/2020-11-16-14-22-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/img/2020-11-16-14-22-50.png -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/img/2020-11-16-14-36-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/img/2020-11-16-14-36-03.png -------------------------------------------------------------------------------- /EnvSettings/Go+Gin+GORM/img/2020-11-16-14-36-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Go+Gin+GORM/img/2020-11-16-14-36-25.png -------------------------------------------------------------------------------- /EnvSettings/InitialSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/InitialSetup.md -------------------------------------------------------------------------------- /EnvSettings/Java+Gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Java+Gradle.md -------------------------------------------------------------------------------- /EnvSettings/ManjaroKDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/ManjaroKDE.md -------------------------------------------------------------------------------- /EnvSettings/Nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Nginx.md -------------------------------------------------------------------------------- /EnvSettings/Pipenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Pipenv.md -------------------------------------------------------------------------------- /EnvSettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/README.md -------------------------------------------------------------------------------- /EnvSettings/Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/Tools.md -------------------------------------------------------------------------------- /EnvSettings/buaa-login/login-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/buaa-login/login-v2.sh -------------------------------------------------------------------------------- /EnvSettings/buaa-login/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/buaa-login/usage.md -------------------------------------------------------------------------------- /EnvSettings/cmd.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/cmd.reg -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/manage.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/mysite/asgi.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/mysite/settings.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/mysite/urls.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/mysite/wsgi.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/polls/admin.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/polls/apps.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/polls/models.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/polls/templates/polls/index.html -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/polls/tests.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/polls/urls.py -------------------------------------------------------------------------------- /EnvSettings/django-polls-demo/polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/django-polls-demo/polls/views.py -------------------------------------------------------------------------------- /EnvSettings/flask-template-demo/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/flask-template-demo/app/__init__.py -------------------------------------------------------------------------------- /EnvSettings/flask-template-demo/app/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EnvSettings/flask-template-demo/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/flask-template-demo/app/templates/base.html -------------------------------------------------------------------------------- /EnvSettings/flask-template-demo/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/flask-template-demo/app/templates/index.html -------------------------------------------------------------------------------- /EnvSettings/flask-template-demo/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/flask-template-demo/app/views.py -------------------------------------------------------------------------------- /EnvSettings/flask-template-demo/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/flask-template-demo/run.py -------------------------------------------------------------------------------- /EnvSettings/vue2-utils/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/vue2-utils/Editor.vue -------------------------------------------------------------------------------- /EnvSettings/vue2-utils/VueDraggable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/EnvSettings/vue2-utils/VueDraggable.vue -------------------------------------------------------------------------------- /Intro2AI/03.invest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/03.invest.py -------------------------------------------------------------------------------- /Intro2AI/04.email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/04.email.py -------------------------------------------------------------------------------- /Intro2AI/05.astar/astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/05.astar/astar.py -------------------------------------------------------------------------------- /Intro2AI/05.astar/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/05.astar/main.py -------------------------------------------------------------------------------- /Intro2AI/05.astar/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/05.astar/point.py -------------------------------------------------------------------------------- /Intro2AI/05.astar/random_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/05.astar/random_map.py -------------------------------------------------------------------------------- /Intro2AI/06.account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/06.account.py -------------------------------------------------------------------------------- /Intro2AI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/README.md -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/1.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/10.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/11.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/12.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/13.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/14.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/15.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/16.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/17.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/18.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/19.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/2.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/20.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/21.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/22.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/23.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/24.txt: -------------------------------------------------------------------------------- 1 | Ok I will be there by 10:00 at the latest. -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/25.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/3.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/4.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/5.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/6.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/7.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/8.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/ham/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/ham/9.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/1.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/10.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/11.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/12.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/13.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/14.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/15.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/16.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/17.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/18.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/19.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/2.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/20.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/21.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/22.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/23.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/24.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/25.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/3.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/4.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/5.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/6.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/7.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/8.txt -------------------------------------------------------------------------------- /Intro2AI/email_dataset/spam/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/Intro2AI/email_dataset/spam/9.txt -------------------------------------------------------------------------------- /PowerBI/appendix/douban.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/appendix/douban.pbix -------------------------------------------------------------------------------- /PowerBI/appendix/test.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/appendix/test.pbix -------------------------------------------------------------------------------- /PowerBI/body/PowerBI/components.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/body/PowerBI/components.tex -------------------------------------------------------------------------------- /PowerBI/body/PowerBI/example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/body/PowerBI/example.tex -------------------------------------------------------------------------------- /PowerBI/body/PowerBI/install_ui.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/body/PowerBI/install_ui.tex -------------------------------------------------------------------------------- /PowerBI/body/PowerBI/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/body/PowerBI/intro.tex -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_advice_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_advice_table.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_call_param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_call_param.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_create_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_create_func.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_data_replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_data_replace.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_data_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_data_type.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_example_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_example_table.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_first_page_processed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_first_page_processed.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_func_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_func_code.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_import_from_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_import_from_web.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_movie_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_movie_list.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_movie_main_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_movie_main_page.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_new_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_new_list.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_new_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_new_query.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_param_not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_param_not_found.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_raw_data_power_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_raw_data_power_query.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_score_movie_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_score_movie_name.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_score_year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_score_year.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_score_year_trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_score_year_trend.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_select_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_select_url.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_split_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_split_data.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_split_data_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_split_data_after.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_split_from_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_split_from_right.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/douban_top250_fetched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/douban_top250_fetched.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/download_powerbi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/download_powerbi.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/download_powerbi_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/download_powerbi_web.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/gartner_bi_rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/gartner_bi_rank.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_3components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_3components.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_data_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_data_view.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_load_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_load_data.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_publish.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_query_editor_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_query_editor_detail.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_sale_profit_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_sale_profit_graph.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_select_query_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_select_query_editor.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_ui.png -------------------------------------------------------------------------------- /PowerBI/figure/PowerBI/powerbi_welcome_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/figure/PowerBI/powerbi_welcome_page.png -------------------------------------------------------------------------------- /PowerBI/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/main.tex -------------------------------------------------------------------------------- /PowerBI/package.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/package.tex -------------------------------------------------------------------------------- /PowerBI/preface/buaa_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PowerBI/preface/buaa_logo.png -------------------------------------------------------------------------------- /PythonBasics/CS41 Schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/CS41 Schedule.md -------------------------------------------------------------------------------- /PythonBasics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/README.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Instructions Q1-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Instructions Q1-2.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Instructions Q5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Instructions Q5.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #1 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #1 Answer.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #1.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #2 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #2 Answer.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #2.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #3 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #3 Answer.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #3.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #4 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #4 Answer.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Exercises #4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Exercises #4.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Extra Exercises #1 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Extra Exercises #1 Answer.md -------------------------------------------------------------------------------- /PythonBasics/exercises/Python Extra Exercises #1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/exercises/Python Extra Exercises #1.md -------------------------------------------------------------------------------- /PythonBasics/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/img/1.png -------------------------------------------------------------------------------- /PythonBasics/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/img/2.png -------------------------------------------------------------------------------- /PythonBasics/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/img/3.png -------------------------------------------------------------------------------- /PythonBasics/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/img/4.png -------------------------------------------------------------------------------- /PythonBasics/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/img/5.png -------------------------------------------------------------------------------- /PythonBasics/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/in.txt -------------------------------------------------------------------------------- /PythonBasics/knights.txt: -------------------------------------------------------------------------------- 1 | Lancelot 6 0 2 | Galahad 7 12 3 | Geraint 3 1 4 | Mordred 0 0 -------------------------------------------------------------------------------- /PythonBasics/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/out.txt -------------------------------------------------------------------------------- /PythonBasics/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/temp.py -------------------------------------------------------------------------------- /PythonBasics/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/test.py -------------------------------------------------------------------------------- /PythonBasics/tutorials/Python Basics #1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/tutorials/Python Basics #1.md -------------------------------------------------------------------------------- /PythonBasics/tutorials/Python Basics #2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/tutorials/Python Basics #2.md -------------------------------------------------------------------------------- /PythonBasics/tutorials/Python Basics #3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/PythonBasics/tutorials/Python Basics #3.md -------------------------------------------------------------------------------- /RBasics/R Basics #1 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/R Basics #1 Answer.md -------------------------------------------------------------------------------- /RBasics/R Basics #1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/R Basics #1.md -------------------------------------------------------------------------------- /RBasics/R Basics #2 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/R Basics #2 Answer.md -------------------------------------------------------------------------------- /RBasics/R Basics #2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/R Basics #2.md -------------------------------------------------------------------------------- /RBasics/R Basics #3 Answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/R Basics #3 Answer.md -------------------------------------------------------------------------------- /RBasics/R Basics #3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/R Basics #3.md -------------------------------------------------------------------------------- /RBasics/README.md: -------------------------------------------------------------------------------- 1 | # R Basics 2 | 3 | R Tutorial for Beginners 4 | -------------------------------------------------------------------------------- /RBasics/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/1.png -------------------------------------------------------------------------------- /RBasics/img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/10.png -------------------------------------------------------------------------------- /RBasics/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/2.png -------------------------------------------------------------------------------- /RBasics/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/3.png -------------------------------------------------------------------------------- /RBasics/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/4.png -------------------------------------------------------------------------------- /RBasics/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/5.png -------------------------------------------------------------------------------- /RBasics/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/6.png -------------------------------------------------------------------------------- /RBasics/img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/7.png -------------------------------------------------------------------------------- /RBasics/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/8.png -------------------------------------------------------------------------------- /RBasics/img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/RBasics/img/9.png -------------------------------------------------------------------------------- /RBasics/test.R: -------------------------------------------------------------------------------- 1 | print("Hello, R!") -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhzhu99/tutorials/HEAD/README.md --------------------------------------------------------------------------------