├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── content_fix.yml │ └── feature_request.yml ├── copilot-instructions.md ├── dependabot.yml ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── ci-core.yml │ ├── ci.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── deploy-certs.yml │ ├── docs-ci.yml │ ├── docs.yml │ ├── label-pr.yml │ ├── lint.yml │ └── performance-benchmark.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AGENTS.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Day_01_Introduction ├── README.md ├── helloworld.ipynb ├── helloworld.py ├── solutions.ipynb └── solutions.py ├── Day_02_Variables_Builtin_Functions ├── README.md ├── solutions.ipynb ├── solutions.py ├── variables.ipynb └── variables.py ├── Day_03_Operators ├── README.md ├── operators.ipynb ├── operators.py ├── solutions.ipynb └── solutions.py ├── Day_04_Strings ├── README.md ├── solutions.ipynb ├── solutions.py ├── strings.ipynb └── strings.py ├── Day_05_Lists ├── README.md ├── lists.ipynb ├── lists.py ├── solutions.ipynb └── solutions.py ├── Day_06_Tuples ├── README.md ├── solutions.ipynb ├── solutions.py ├── tuples.ipynb └── tuples.py ├── Day_07_Sets ├── README.md ├── sets.ipynb ├── sets.py ├── solutions.ipynb └── solutions.py ├── Day_08_Dictionaries ├── README.md ├── dictionaries.ipynb ├── dictionaries.py ├── solutions.ipynb └── solutions.py ├── Day_09_Conditionals ├── README.md ├── conditionals.ipynb ├── conditionals.py ├── solutions.ipynb └── solutions.py ├── Day_100_Stored_Procedures ├── README.md ├── exercises.sql └── solutions.sql ├── Day_101_Triggers ├── README.md ├── exercises.sql └── solutions.sql ├── Day_102_Common_Table_Expressions ├── README.md ├── exercises.sql └── solutions.sql ├── Day_103_Pivoting_Data ├── README.md ├── exercises.sql └── solutions.sql ├── Day_104_Database_Design_and_Normalization ├── README.md ├── exercises.sql └── solutions.sql ├── Day_105_JSON_in_SQL ├── README.md ├── exercises.sql └── solutions.sql ├── Day_106_XML_in_SQL ├── README.md ├── exercises.sql └── solutions.sql ├── Day_107_Security ├── README.md ├── exercises.sql └── solutions.sql ├── Day_108_Performance_Tuning ├── README.md ├── exercises.sql └── solutions.sql ├── Day_10_Loops ├── README.md ├── loops.ipynb ├── loops.py ├── solutions.ipynb └── solutions.py ├── Day_11_Functions ├── README.md ├── functions.ipynb ├── functions.py ├── solutions.ipynb └── solutions.py ├── Day_12_List_Comprehension ├── README.md ├── list_comprehension.ipynb ├── list_comprehension.py ├── solutions.ipynb └── solutions.py ├── Day_13_Higher_Order_Functions ├── HOF.ipynb ├── HOF.py ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_14_Modules ├── README.md ├── business_logic.ipynb ├── business_logic.py ├── finance_tools.py ├── modules.ipynb ├── modules.py ├── solutions.ipynb └── solutions.py ├── Day_15_Exception_Handling ├── README.md ├── exception.ipynb ├── exception.py ├── solutions.ipynb └── solutions.py ├── Day_16_File_Handling ├── README.md ├── fh.ipynb ├── fh.py ├── solutions.ipynb ├── solutions.py ├── stop_words.ipynb └── stop_words.py ├── Day_17_Regular_Expressions ├── README.md ├── regex.ipynb ├── regex.py ├── solutions.ipynb └── solutions.py ├── Day_18_Classes_and_Objects ├── CaO.ipynb ├── CaO.py ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_19_Python_Date_Time ├── README.md ├── date_time.ipynb ├── date_time.py ├── solutions.ipynb └── solutions.py ├── Day_20_Python_Package_Manager ├── README.md ├── solutions.ipynb ├── solutions.py ├── url.ipynb └── url.py ├── Day_21_Virtual_Environments ├── README.md ├── solutions.ipynb ├── solutions.py ├── virtual_environments.ipynb └── virtual_environments.py ├── Day_22_NumPy ├── README.md ├── numpy_examples.ipynb ├── numpy_examples.py ├── solutions.ipynb └── solutions.py ├── Day_23_Pandas ├── README.md ├── pandas_from_csv.ipynb ├── pandas_from_csv.py ├── pandas_intro.ipynb ├── pandas_intro.py ├── solutions.ipynb └── solutions.py ├── Day_24_Pandas_Advanced ├── README.md ├── pandas_adv.ipynb ├── pandas_adv.py ├── profile_pandas_adv.ipynb ├── profile_pandas_adv.py ├── sales_data.csv ├── solutions.ipynb └── solutions.py ├── Day_25_Data_Cleaning ├── README.md ├── data_cleaning.ipynb ├── data_cleaning.py ├── messy_sales_data.csv ├── solutions.ipynb └── solutions.py ├── Day_26_Statistics ├── README.md ├── solutions.ipynb ├── solutions.py ├── stats.ipynb └── stats.py ├── Day_27_Visualization ├── README.md ├── solutions.ipynb ├── solutions.py ├── visualization.ipynb └── visualization.py ├── Day_28_Advanced_Visualization ├── README.md ├── advanced_visualization.ipynb ├── advanced_visualization.py ├── solutions.ipynb └── solutions.py ├── Day_29_Interactive_Visualization ├── README.md ├── interactive_visualization.ipynb ├── interactive_visualization.py ├── solutions.ipynb └── solutions.py ├── Day_30_Web_Scraping ├── README.md ├── books_sample.html ├── presidents.csv ├── presidents.ipynb ├── presidents.json ├── presidents.py ├── profile_web_scraping.ipynb ├── profile_web_scraping.py ├── scraped_exercise_1.json ├── solutions.ipynb ├── solutions.py ├── web_scraping.ipynb ├── web_scraping.py ├── web_scraping_bu.ipynb └── web_scraping_bu.py ├── Day_31_Databases ├── README.md ├── __init__.py ├── databases.ipynb ├── databases.py ├── databases_smoke_test.ipynb ├── solutions.ipynb └── solutions.py ├── Day_32_Other_Databases ├── README.md ├── other_databases.ipynb └── other_databases.py ├── Day_33_API ├── README.md ├── api.ipynb ├── api.py ├── solutions.ipynb └── solutions.py ├── Day_34_Building_an_API ├── README.md ├── __init__.py ├── api_server.ipynb ├── api_server.py ├── data.ipynb ├── data.py ├── solutions.ipynb └── solutions.py ├── Day_35_Flask_Web_Framework ├── .gitignore ├── Procfile ├── README.md ├── __init__.py ├── app │ ├── __init__.py │ ├── __main__.ipynb │ ├── __main__.py │ ├── text_utils.ipynb │ └── text_utils.py ├── requirements.txt ├── solutions.ipynb ├── solutions.py ├── static │ └── css │ │ └── main.css └── templates │ ├── about.html │ ├── home.html │ ├── layout.html │ ├── post.html │ └── result.html ├── Day_36_Case_Study ├── README.md ├── case_study.ipynb ├── case_study.py ├── case_study_sales.csv ├── solutions.ipynb └── solutions.py ├── Day_37_Conclusion ├── README.md ├── conclusion.ipynb └── conclusion.py ├── Day_38_Linear_Algebra ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_39_Calculus ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_40_Intro_to_ML ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_41_Supervised_Learning_Regression ├── README.md ├── regression_fit.png ├── solutions.ipynb └── solutions.py ├── Day_42_Supervised_Learning_Classification_Part_1 ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_43_Supervised_Learning_Classification_Part_2 ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_44_Unsupervised_Learning ├── README.md ├── kmeans_clusters.png ├── pca_iris.png ├── solutions.ipynb └── solutions.py ├── Day_45_Feature_Engineering_and_Evaluation ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_46_Intro_to_Neural_Networks ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_47_Convolutional_Neural_Networks ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_48_Recurrent_Neural_Networks ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_49_NLP ├── README.md ├── solutions.ipynb └── solutions.py ├── Day_50_MLOps ├── README.md ├── __init__.py ├── bonus_flask_api.ipynb ├── bonus_flask_api.py ├── iris_model.joblib ├── solutions.ipynb └── solutions.py ├── Day_51_Regularized_Models ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_52_Ensemble_Methods ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_53_Model_Tuning_and_Feature_Selection ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_54_Probabilistic_Modeling ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_55_Advanced_Unsupervised_Learning ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_56_Time_Series_and_Forecasting ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_57_Recommender_Systems ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_58_Transformers_and_Attention ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_59_Generative_Models ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_60_Graph_and_Geometric_Learning ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_61_Reinforcement_and_Offline_Learning ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_62_Model_Interpretability_and_Fairness ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_63_Causal_Inference_and_Uplift ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_64_Modern_NLP_Pipelines ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_65_MLOps_Pipelines_and_CI ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_66_Model_Deployment_and_Serving ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_67_Model_Monitoring_and_Reliability ├── README.md ├── __init__.py ├── solutions.ipynb └── solutions.py ├── Day_68_BI_Analyst_Foundations ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_69_BI_Strategy_and_Stakeholders ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_70_BI_Metrics_and_Data_Literacy ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_71_BI_Data_Landscape ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_72_BI_Data_Formats_and_Ingestion ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_73_BI_SQL_and_Databases ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_74_BI_Data_Preparation_and_Tools ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_75_BI_Visualization_and_Dashboard_Principles ├── README.md ├── lesson.py └── solutions.py ├── Day_76_BI_Platforms_and_Automation_Tools ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_77_BI_Domain_Analytics_and_Value_Drivers ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_78_BI_Experimentation_and_Predictive_Insights ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_79_BI_Storytelling_and_Stakeholder_Influence ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_80_BI_Data_Quality_and_Governance ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_81_BI_Architecture_and_Data_Modeling ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_82_BI_ETL_and_Pipeline_Automation ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_83_BI_Cloud_and_Modern_Data_Stack ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_84_BI_Career_Development_and_Capstone ├── README.md ├── __init__.py ├── lesson.py └── solutions.py ├── Day_85_Advanced_SQL └── README.md ├── Day_86_BI_Cloud └── README.md ├── Day_87_Data_Governance └── README.md ├── Day_88_Capstone_Part_1 └── README.md ├── Day_89_Capstone_Part_2 └── README.md ├── Day_90_Career_Workshop └── README.md ├── Day_91_Relational_Databases ├── README.md └── exercises.sql ├── Day_92_Data_Definition_Language ├── README.md ├── exercises.sql └── solutions.sql ├── Day_93_Data_Manipulation_Language ├── README.md ├── exercises.sql └── solutions.sql ├── Day_94_Data_Query_Language ├── README.md ├── exercises.sql └── solutions.sql ├── Day_95_Joins ├── README.md ├── exercises.sql └── solutions.sql ├── Day_96_Subqueries ├── README.md ├── exercises.sql └── solutions.sql ├── Day_97_Views ├── README.md ├── exercises.sql └── solutions.sql ├── Day_98_Indexes ├── README.md ├── exercises.sql └── solutions.sql ├── Day_99_Transactions ├── README.md ├── exercises.sql └── solutions.sql ├── GITHUB_PAGES_SETUP.md ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── analytics ├── logger.js └── report.py ├── artifacts ├── execution-summary.txt ├── pr-summary.txt └── run-log.md ├── binder ├── README.md └── environment.yml ├── data ├── F500.csv ├── HN_posts_year_to_Sep_26_2016.csv ├── README.md ├── bi_analyst_roadmap.json ├── countries.py ├── countries_data.json ├── countries_data.py ├── donald_speech.txt ├── email_exchanges.txt ├── email_exchanges_big.txt ├── fortune1000_final.csv ├── fortune_500_companies_2017.csv ├── hacker_news.csv ├── melina_trump_speech.txt ├── michelle_obama_speech.txt ├── obama_speech.txt ├── result.csv ├── romeo_and_juliet.txt └── weight-height.csv ├── docs ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── _config.yml ├── agents.md ├── analytics.md ├── assets │ └── js │ │ └── progress.js ├── bi-curriculum.md ├── cheatsheets │ ├── index.md │ ├── phase-1-cheat-sheet.md │ ├── phase-2-cheat-sheet.md │ ├── phase-3-cheat-sheet.md │ ├── phase-4-cheat-sheet.md │ └── phase-5-business-intelligence.md ├── community │ └── github-discussions.md ├── contributing.md ├── dashboard │ └── README.md ├── demo-enhanced-lesson.md ├── faq.md ├── featured-lessons.md ├── get-started.md ├── i18n.md ├── implementation-guide.md ├── index.es.md ├── index.md ├── javascripts │ ├── progress-tracker.js │ ├── pyodide-console.js │ └── thebe-config.js ├── lessons │ ├── _index.md │ ├── day-01-introduction.md │ ├── day-02-variables-builtin-functions.md │ ├── day-03-operators.md │ ├── day-04-strings.md │ ├── day-05-lists.md │ ├── day-06-tuples.md │ ├── day-07-sets.md │ ├── day-08-dictionaries.md │ ├── day-09-conditionals.md │ ├── day-10-loops.md │ ├── day-100-stored-procedures.md │ ├── day-101-triggers.md │ ├── day-102-common-table-expressions.md │ ├── day-103-pivoting-data.md │ ├── day-104-database-design-and-normalization.md │ ├── day-105-json-in-sql.md │ ├── day-106-xml-in-sql.md │ ├── day-107-security.md │ ├── day-108-performance-tuning.md │ ├── day-11-functions.md │ ├── day-12-list-comprehension.md │ ├── day-13-higher-order-functions.md │ ├── day-14-modules.md │ ├── day-15-exception-handling.md │ ├── day-16-file-handling.md │ ├── day-17-regular-expressions.md │ ├── day-18-classes-and-objects.md │ ├── day-19-python-date-time.md │ ├── day-20-python-package-manager.md │ ├── day-21-virtual-environments.md │ ├── day-22-numpy.md │ ├── day-23-pandas.md │ ├── day-24-pandas-advanced.md │ ├── day-25-data-cleaning.md │ ├── day-26-statistics.md │ ├── day-27-visualization.md │ ├── day-28-advanced-visualization.md │ ├── day-29-interactive-visualization.md │ ├── day-30-web-scraping.md │ ├── day-31-databases.md │ ├── day-32-other-databases.md │ ├── day-33-api.md │ ├── day-34-building-an-api.md │ ├── day-35-flask-web-framework.md │ ├── day-36-case-study.md │ ├── day-37-conclusion.md │ ├── day-38-linear-algebra.md │ ├── day-39-calculus.md │ ├── day-40-intro-to-ml.md │ ├── day-41-supervised-learning-regression.md │ ├── day-42-supervised-learning-classification-part-1.md │ ├── day-43-supervised-learning-classification-part-2.md │ ├── day-44-unsupervised-learning.md │ ├── day-45-feature-engineering-and-evaluation.md │ ├── day-46-intro-to-neural-networks.md │ ├── day-47-convolutional-neural-networks.md │ ├── day-48-recurrent-neural-networks.md │ ├── day-49-nlp.md │ ├── day-50-mlops.md │ ├── day-51-regularized-models.md │ ├── day-52-ensemble-methods.md │ ├── day-53-model-tuning-and-feature-selection.md │ ├── day-54-probabilistic-modeling.md │ ├── day-55-advanced-unsupervised-learning.md │ ├── day-56-time-series-and-forecasting.md │ ├── day-57-recommender-systems.md │ ├── day-58-transformers-and-attention.md │ ├── day-59-generative-models.md │ ├── day-60-graph-and-geometric-learning.md │ ├── day-61-reinforcement-and-offline-learning.md │ ├── day-62-model-interpretability-and-fairness.md │ ├── day-63-causal-inference-and-uplift.md │ ├── day-64-modern-nlp-pipelines.md │ ├── day-65-mlops-pipelines-and-ci.md │ ├── day-66-model-deployment-and-serving.md │ ├── day-67-model-monitoring-and-reliability.md │ ├── day-68-bi-analyst-foundations.md │ ├── day-69-bi-strategy-and-stakeholders.md │ ├── day-70-bi-metrics-and-data-literacy.md │ ├── day-71-bi-data-landscape.md │ ├── day-72-bi-data-formats-and-ingestion.md │ ├── day-73-bi-sql-and-databases.md │ ├── day-74-bi-data-preparation-and-tools.md │ ├── day-75-bi-visualization-and-dashboard-principles.md │ ├── day-76-bi-platforms-and-automation-tools.md │ ├── day-77-bi-domain-analytics-and-value-drivers.md │ ├── day-78-bi-experimentation-and-predictive-insights.md │ ├── day-79-bi-storytelling-and-stakeholder-influence.md │ ├── day-80-bi-data-quality-and-governance.md │ ├── day-81-bi-architecture-and-data-modeling.md │ ├── day-82-bi-etl-and-pipeline-automation.md │ ├── day-83-bi-cloud-and-modern-data-stack.md │ ├── day-84-bi-career-development-and-capstone.md │ ├── day-85-advanced-sql.md │ ├── day-86-bi-cloud.md │ ├── day-87-data-governance.md │ ├── day-88-capstone-part-1.md │ ├── day-89-capstone-part-2.md │ ├── day-90-career-workshop.md │ ├── day-91-relational-databases.md │ ├── day-92-data-definition-language.md │ ├── day-93-data-manipulation-language.md │ ├── day-94-data-query-language.md │ ├── day-95-joins.md │ ├── day-96-subqueries.md │ ├── day-97-views.md │ ├── day-98-indexes.md │ ├── day-99-transactions.md │ └── index.md ├── ml_curriculum.md ├── overrides │ └── partials │ │ └── footer.html ├── performance-benchmarking.md ├── phases │ ├── overview.md │ ├── phase1.md │ ├── phase2.md │ ├── phase3.md │ ├── phase4.md │ ├── phase5.md │ ├── phase6.md │ ├── phase7.md │ ├── phase_1_overview.md │ ├── phase_2_overview.md │ ├── phase_3_overview.md │ ├── phase_4_overview.md │ ├── phase_5_overview.md │ ├── phase_6_overview.md │ └── phase_7_overview.md ├── requirements-docs.txt ├── requirements.txt ├── roadmap.md ├── site_metadata.json ├── stylesheets │ ├── extra.css │ └── interactive-widgets.css ├── theory.md └── website-improvements.md ├── generated ├── all_lessons.md ├── all_lessons_table.md └── lesson_count.txt ├── investigate_tables.py ├── learner_backend ├── .env.example ├── README.md ├── __init__.py ├── db.py ├── main.py └── static │ └── dashboard.html ├── mkdocs-enhanced.yml ├── mkdocs.yml ├── mypackage ├── README.md ├── __init__.py ├── arithmetics.py ├── bar_system.py ├── bi_curriculum.py ├── greet.py └── profiling.py ├── projects ├── README.md └── phase_1 │ └── project_1_sales_validator │ └── README.md ├── pyproject.toml ├── pytest.ini ├── quizzes ├── Day_02_quiz.yml ├── Day_23_quiz.yml └── Day_40_quiz.yml ├── requirements-dev.txt ├── requirements.txt ├── scripts ├── README.md ├── add_tags.py ├── extract_i18n.py ├── gen_lessons_index.py ├── gen_nav.py ├── gen_phase_overviews.py ├── generate_badge.py ├── generate_certificate.py ├── generate_pdfs.py ├── generate_quiz_pages.py ├── inject_footers.py ├── revert_high_effort.sh ├── revert_nav_changes.py ├── run_quick_audit.sh └── verify_lessons.py ├── tests ├── snapshots │ ├── day-02-footer.html │ ├── day-36-footer.html │ └── lessons-index-day-02-h3.html ├── test_bar_system.py ├── test_bi_curriculum.py ├── test_data_pipeline.py ├── test_day_01.py ├── test_day_02.py ├── test_day_03.py ├── test_day_04.py ├── test_day_05.py ├── test_day_06.py ├── test_day_07.py ├── test_day_08.py ├── test_day_09.py ├── test_day_10.py ├── test_day_11.py ├── test_day_12.py ├── test_day_13.py ├── test_day_14.py ├── test_day_15.py ├── test_day_16.py ├── test_day_17.py ├── test_day_18.py ├── test_day_19.py ├── test_day_20.py ├── test_day_22.py ├── test_day_23.py ├── test_day_24.py ├── test_day_25.py ├── test_day_26.py ├── test_day_27.py ├── test_day_28.py ├── test_day_29.py ├── test_day_30.py ├── test_day_31.py ├── test_day_32.py ├── test_day_33.py ├── test_day_34.py ├── test_day_35.py ├── test_day_36.py ├── test_day_37.py ├── test_day_38.py ├── test_day_39.py ├── test_day_40.py ├── test_day_41.py ├── test_day_42.py ├── test_day_43.py ├── test_day_44.py ├── test_day_45.py ├── test_day_46.py ├── test_day_47.py ├── test_day_48.py ├── test_day_49.py ├── test_day_50.py ├── test_day_51.py ├── test_day_52.py ├── test_day_53.py ├── test_day_54.py ├── test_day_55.py ├── test_day_56.py ├── test_day_57.py ├── test_day_58.py ├── test_day_59.py ├── test_day_60.py ├── test_day_61.py ├── test_day_62.py ├── test_day_63.py ├── test_day_64.py ├── test_day_65.py ├── test_day_66.py ├── test_day_67.py ├── test_day_68.py ├── test_day_69.py ├── test_day_70.py ├── test_day_71.py ├── test_day_72.py ├── test_day_73.py ├── test_day_74.py ├── test_day_75.py ├── test_day_76.py ├── test_day_77.py ├── test_day_78.py ├── test_day_79.py ├── test_day_80.py ├── test_day_81.py ├── test_day_82.py ├── test_day_83.py ├── test_day_84.py └── test_docs_build.py └── tools ├── DEV_NOTES.md ├── benchmark_lessons.py ├── build_docs.py ├── convert_lessons_to_notebooks.py └── templates └── accessible_html └── index.html.j2 /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/content_fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/ISSUE_TEMPLATE/content_fix.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/ci-core.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/deploy-certs.yml -------------------------------------------------------------------------------- /.github/workflows/docs-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/docs-ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/label-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/label-pr.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/performance-benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.github/workflows/performance-benchmark.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @saint2706 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Day_01_Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_01_Introduction/README.md -------------------------------------------------------------------------------- /Day_01_Introduction/helloworld.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_01_Introduction/helloworld.ipynb -------------------------------------------------------------------------------- /Day_01_Introduction/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_01_Introduction/helloworld.py -------------------------------------------------------------------------------- /Day_01_Introduction/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_01_Introduction/solutions.ipynb -------------------------------------------------------------------------------- /Day_01_Introduction/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_01_Introduction/solutions.py -------------------------------------------------------------------------------- /Day_02_Variables_Builtin_Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_02_Variables_Builtin_Functions/README.md -------------------------------------------------------------------------------- /Day_02_Variables_Builtin_Functions/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_02_Variables_Builtin_Functions/solutions.ipynb -------------------------------------------------------------------------------- /Day_02_Variables_Builtin_Functions/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_02_Variables_Builtin_Functions/solutions.py -------------------------------------------------------------------------------- /Day_02_Variables_Builtin_Functions/variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_02_Variables_Builtin_Functions/variables.ipynb -------------------------------------------------------------------------------- /Day_02_Variables_Builtin_Functions/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_02_Variables_Builtin_Functions/variables.py -------------------------------------------------------------------------------- /Day_03_Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_03_Operators/README.md -------------------------------------------------------------------------------- /Day_03_Operators/operators.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_03_Operators/operators.ipynb -------------------------------------------------------------------------------- /Day_03_Operators/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_03_Operators/operators.py -------------------------------------------------------------------------------- /Day_03_Operators/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_03_Operators/solutions.ipynb -------------------------------------------------------------------------------- /Day_03_Operators/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_03_Operators/solutions.py -------------------------------------------------------------------------------- /Day_04_Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_04_Strings/README.md -------------------------------------------------------------------------------- /Day_04_Strings/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_04_Strings/solutions.ipynb -------------------------------------------------------------------------------- /Day_04_Strings/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_04_Strings/solutions.py -------------------------------------------------------------------------------- /Day_04_Strings/strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_04_Strings/strings.ipynb -------------------------------------------------------------------------------- /Day_04_Strings/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_04_Strings/strings.py -------------------------------------------------------------------------------- /Day_05_Lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_05_Lists/README.md -------------------------------------------------------------------------------- /Day_05_Lists/lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_05_Lists/lists.ipynb -------------------------------------------------------------------------------- /Day_05_Lists/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_05_Lists/lists.py -------------------------------------------------------------------------------- /Day_05_Lists/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_05_Lists/solutions.ipynb -------------------------------------------------------------------------------- /Day_05_Lists/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_05_Lists/solutions.py -------------------------------------------------------------------------------- /Day_06_Tuples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_06_Tuples/README.md -------------------------------------------------------------------------------- /Day_06_Tuples/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_06_Tuples/solutions.ipynb -------------------------------------------------------------------------------- /Day_06_Tuples/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_06_Tuples/solutions.py -------------------------------------------------------------------------------- /Day_06_Tuples/tuples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_06_Tuples/tuples.ipynb -------------------------------------------------------------------------------- /Day_06_Tuples/tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_06_Tuples/tuples.py -------------------------------------------------------------------------------- /Day_07_Sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_07_Sets/README.md -------------------------------------------------------------------------------- /Day_07_Sets/sets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_07_Sets/sets.ipynb -------------------------------------------------------------------------------- /Day_07_Sets/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_07_Sets/sets.py -------------------------------------------------------------------------------- /Day_07_Sets/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_07_Sets/solutions.ipynb -------------------------------------------------------------------------------- /Day_07_Sets/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_07_Sets/solutions.py -------------------------------------------------------------------------------- /Day_08_Dictionaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_08_Dictionaries/README.md -------------------------------------------------------------------------------- /Day_08_Dictionaries/dictionaries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_08_Dictionaries/dictionaries.ipynb -------------------------------------------------------------------------------- /Day_08_Dictionaries/dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_08_Dictionaries/dictionaries.py -------------------------------------------------------------------------------- /Day_08_Dictionaries/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_08_Dictionaries/solutions.ipynb -------------------------------------------------------------------------------- /Day_08_Dictionaries/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_08_Dictionaries/solutions.py -------------------------------------------------------------------------------- /Day_09_Conditionals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_09_Conditionals/README.md -------------------------------------------------------------------------------- /Day_09_Conditionals/conditionals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_09_Conditionals/conditionals.ipynb -------------------------------------------------------------------------------- /Day_09_Conditionals/conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_09_Conditionals/conditionals.py -------------------------------------------------------------------------------- /Day_09_Conditionals/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_09_Conditionals/solutions.ipynb -------------------------------------------------------------------------------- /Day_09_Conditionals/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_09_Conditionals/solutions.py -------------------------------------------------------------------------------- /Day_100_Stored_Procedures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_100_Stored_Procedures/README.md -------------------------------------------------------------------------------- /Day_100_Stored_Procedures/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_100_Stored_Procedures/exercises.sql -------------------------------------------------------------------------------- /Day_100_Stored_Procedures/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_100_Stored_Procedures/solutions.sql -------------------------------------------------------------------------------- /Day_101_Triggers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_101_Triggers/README.md -------------------------------------------------------------------------------- /Day_101_Triggers/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_101_Triggers/exercises.sql -------------------------------------------------------------------------------- /Day_101_Triggers/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_101_Triggers/solutions.sql -------------------------------------------------------------------------------- /Day_102_Common_Table_Expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_102_Common_Table_Expressions/README.md -------------------------------------------------------------------------------- /Day_102_Common_Table_Expressions/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_102_Common_Table_Expressions/exercises.sql -------------------------------------------------------------------------------- /Day_102_Common_Table_Expressions/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_102_Common_Table_Expressions/solutions.sql -------------------------------------------------------------------------------- /Day_103_Pivoting_Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_103_Pivoting_Data/README.md -------------------------------------------------------------------------------- /Day_103_Pivoting_Data/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_103_Pivoting_Data/exercises.sql -------------------------------------------------------------------------------- /Day_103_Pivoting_Data/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_103_Pivoting_Data/solutions.sql -------------------------------------------------------------------------------- /Day_104_Database_Design_and_Normalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_104_Database_Design_and_Normalization/README.md -------------------------------------------------------------------------------- /Day_104_Database_Design_and_Normalization/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_104_Database_Design_and_Normalization/exercises.sql -------------------------------------------------------------------------------- /Day_104_Database_Design_and_Normalization/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_104_Database_Design_and_Normalization/solutions.sql -------------------------------------------------------------------------------- /Day_105_JSON_in_SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_105_JSON_in_SQL/README.md -------------------------------------------------------------------------------- /Day_105_JSON_in_SQL/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_105_JSON_in_SQL/exercises.sql -------------------------------------------------------------------------------- /Day_105_JSON_in_SQL/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_105_JSON_in_SQL/solutions.sql -------------------------------------------------------------------------------- /Day_106_XML_in_SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_106_XML_in_SQL/README.md -------------------------------------------------------------------------------- /Day_106_XML_in_SQL/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_106_XML_in_SQL/exercises.sql -------------------------------------------------------------------------------- /Day_106_XML_in_SQL/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_106_XML_in_SQL/solutions.sql -------------------------------------------------------------------------------- /Day_107_Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_107_Security/README.md -------------------------------------------------------------------------------- /Day_107_Security/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_107_Security/exercises.sql -------------------------------------------------------------------------------- /Day_107_Security/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_107_Security/solutions.sql -------------------------------------------------------------------------------- /Day_108_Performance_Tuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_108_Performance_Tuning/README.md -------------------------------------------------------------------------------- /Day_108_Performance_Tuning/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_108_Performance_Tuning/exercises.sql -------------------------------------------------------------------------------- /Day_108_Performance_Tuning/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_108_Performance_Tuning/solutions.sql -------------------------------------------------------------------------------- /Day_10_Loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_10_Loops/README.md -------------------------------------------------------------------------------- /Day_10_Loops/loops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_10_Loops/loops.ipynb -------------------------------------------------------------------------------- /Day_10_Loops/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_10_Loops/loops.py -------------------------------------------------------------------------------- /Day_10_Loops/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_10_Loops/solutions.ipynb -------------------------------------------------------------------------------- /Day_10_Loops/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_10_Loops/solutions.py -------------------------------------------------------------------------------- /Day_11_Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_11_Functions/README.md -------------------------------------------------------------------------------- /Day_11_Functions/functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_11_Functions/functions.ipynb -------------------------------------------------------------------------------- /Day_11_Functions/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_11_Functions/functions.py -------------------------------------------------------------------------------- /Day_11_Functions/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_11_Functions/solutions.ipynb -------------------------------------------------------------------------------- /Day_11_Functions/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_11_Functions/solutions.py -------------------------------------------------------------------------------- /Day_12_List_Comprehension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_12_List_Comprehension/README.md -------------------------------------------------------------------------------- /Day_12_List_Comprehension/list_comprehension.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_12_List_Comprehension/list_comprehension.ipynb -------------------------------------------------------------------------------- /Day_12_List_Comprehension/list_comprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_12_List_Comprehension/list_comprehension.py -------------------------------------------------------------------------------- /Day_12_List_Comprehension/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_12_List_Comprehension/solutions.ipynb -------------------------------------------------------------------------------- /Day_12_List_Comprehension/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_12_List_Comprehension/solutions.py -------------------------------------------------------------------------------- /Day_13_Higher_Order_Functions/HOF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_13_Higher_Order_Functions/HOF.ipynb -------------------------------------------------------------------------------- /Day_13_Higher_Order_Functions/HOF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_13_Higher_Order_Functions/HOF.py -------------------------------------------------------------------------------- /Day_13_Higher_Order_Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_13_Higher_Order_Functions/README.md -------------------------------------------------------------------------------- /Day_13_Higher_Order_Functions/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_13_Higher_Order_Functions/solutions.ipynb -------------------------------------------------------------------------------- /Day_13_Higher_Order_Functions/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_13_Higher_Order_Functions/solutions.py -------------------------------------------------------------------------------- /Day_14_Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/README.md -------------------------------------------------------------------------------- /Day_14_Modules/business_logic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/business_logic.ipynb -------------------------------------------------------------------------------- /Day_14_Modules/business_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/business_logic.py -------------------------------------------------------------------------------- /Day_14_Modules/finance_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/finance_tools.py -------------------------------------------------------------------------------- /Day_14_Modules/modules.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/modules.ipynb -------------------------------------------------------------------------------- /Day_14_Modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/modules.py -------------------------------------------------------------------------------- /Day_14_Modules/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/solutions.ipynb -------------------------------------------------------------------------------- /Day_14_Modules/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_14_Modules/solutions.py -------------------------------------------------------------------------------- /Day_15_Exception_Handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_15_Exception_Handling/README.md -------------------------------------------------------------------------------- /Day_15_Exception_Handling/exception.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_15_Exception_Handling/exception.ipynb -------------------------------------------------------------------------------- /Day_15_Exception_Handling/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_15_Exception_Handling/exception.py -------------------------------------------------------------------------------- /Day_15_Exception_Handling/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_15_Exception_Handling/solutions.ipynb -------------------------------------------------------------------------------- /Day_15_Exception_Handling/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_15_Exception_Handling/solutions.py -------------------------------------------------------------------------------- /Day_16_File_Handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_16_File_Handling/README.md -------------------------------------------------------------------------------- /Day_16_File_Handling/fh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_16_File_Handling/fh.ipynb -------------------------------------------------------------------------------- /Day_16_File_Handling/fh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_16_File_Handling/fh.py -------------------------------------------------------------------------------- /Day_16_File_Handling/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_16_File_Handling/solutions.ipynb -------------------------------------------------------------------------------- /Day_16_File_Handling/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_16_File_Handling/solutions.py -------------------------------------------------------------------------------- /Day_16_File_Handling/stop_words.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_16_File_Handling/stop_words.ipynb -------------------------------------------------------------------------------- /Day_16_File_Handling/stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_16_File_Handling/stop_words.py -------------------------------------------------------------------------------- /Day_17_Regular_Expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_17_Regular_Expressions/README.md -------------------------------------------------------------------------------- /Day_17_Regular_Expressions/regex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_17_Regular_Expressions/regex.ipynb -------------------------------------------------------------------------------- /Day_17_Regular_Expressions/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_17_Regular_Expressions/regex.py -------------------------------------------------------------------------------- /Day_17_Regular_Expressions/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_17_Regular_Expressions/solutions.ipynb -------------------------------------------------------------------------------- /Day_17_Regular_Expressions/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_17_Regular_Expressions/solutions.py -------------------------------------------------------------------------------- /Day_18_Classes_and_Objects/CaO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_18_Classes_and_Objects/CaO.ipynb -------------------------------------------------------------------------------- /Day_18_Classes_and_Objects/CaO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_18_Classes_and_Objects/CaO.py -------------------------------------------------------------------------------- /Day_18_Classes_and_Objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_18_Classes_and_Objects/README.md -------------------------------------------------------------------------------- /Day_18_Classes_and_Objects/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_18_Classes_and_Objects/solutions.ipynb -------------------------------------------------------------------------------- /Day_18_Classes_and_Objects/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_18_Classes_and_Objects/solutions.py -------------------------------------------------------------------------------- /Day_19_Python_Date_Time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_19_Python_Date_Time/README.md -------------------------------------------------------------------------------- /Day_19_Python_Date_Time/date_time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_19_Python_Date_Time/date_time.ipynb -------------------------------------------------------------------------------- /Day_19_Python_Date_Time/date_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_19_Python_Date_Time/date_time.py -------------------------------------------------------------------------------- /Day_19_Python_Date_Time/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_19_Python_Date_Time/solutions.ipynb -------------------------------------------------------------------------------- /Day_19_Python_Date_Time/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_19_Python_Date_Time/solutions.py -------------------------------------------------------------------------------- /Day_20_Python_Package_Manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_20_Python_Package_Manager/README.md -------------------------------------------------------------------------------- /Day_20_Python_Package_Manager/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_20_Python_Package_Manager/solutions.ipynb -------------------------------------------------------------------------------- /Day_20_Python_Package_Manager/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_20_Python_Package_Manager/solutions.py -------------------------------------------------------------------------------- /Day_20_Python_Package_Manager/url.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_20_Python_Package_Manager/url.ipynb -------------------------------------------------------------------------------- /Day_20_Python_Package_Manager/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_20_Python_Package_Manager/url.py -------------------------------------------------------------------------------- /Day_21_Virtual_Environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_21_Virtual_Environments/README.md -------------------------------------------------------------------------------- /Day_21_Virtual_Environments/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_21_Virtual_Environments/solutions.ipynb -------------------------------------------------------------------------------- /Day_21_Virtual_Environments/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_21_Virtual_Environments/solutions.py -------------------------------------------------------------------------------- /Day_21_Virtual_Environments/virtual_environments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_21_Virtual_Environments/virtual_environments.ipynb -------------------------------------------------------------------------------- /Day_21_Virtual_Environments/virtual_environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_21_Virtual_Environments/virtual_environments.py -------------------------------------------------------------------------------- /Day_22_NumPy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_22_NumPy/README.md -------------------------------------------------------------------------------- /Day_22_NumPy/numpy_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_22_NumPy/numpy_examples.ipynb -------------------------------------------------------------------------------- /Day_22_NumPy/numpy_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_22_NumPy/numpy_examples.py -------------------------------------------------------------------------------- /Day_22_NumPy/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_22_NumPy/solutions.ipynb -------------------------------------------------------------------------------- /Day_22_NumPy/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_22_NumPy/solutions.py -------------------------------------------------------------------------------- /Day_23_Pandas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_23_Pandas/README.md -------------------------------------------------------------------------------- /Day_23_Pandas/pandas_from_csv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_23_Pandas/pandas_from_csv.ipynb -------------------------------------------------------------------------------- /Day_23_Pandas/pandas_from_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_23_Pandas/pandas_from_csv.py -------------------------------------------------------------------------------- /Day_23_Pandas/pandas_intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_23_Pandas/pandas_intro.ipynb -------------------------------------------------------------------------------- /Day_23_Pandas/pandas_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_23_Pandas/pandas_intro.py -------------------------------------------------------------------------------- /Day_23_Pandas/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_23_Pandas/solutions.ipynb -------------------------------------------------------------------------------- /Day_23_Pandas/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_23_Pandas/solutions.py -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/README.md -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/pandas_adv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/pandas_adv.ipynb -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/pandas_adv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/pandas_adv.py -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/profile_pandas_adv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/profile_pandas_adv.ipynb -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/profile_pandas_adv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/profile_pandas_adv.py -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/sales_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/sales_data.csv -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/solutions.ipynb -------------------------------------------------------------------------------- /Day_24_Pandas_Advanced/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_24_Pandas_Advanced/solutions.py -------------------------------------------------------------------------------- /Day_25_Data_Cleaning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_25_Data_Cleaning/README.md -------------------------------------------------------------------------------- /Day_25_Data_Cleaning/data_cleaning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_25_Data_Cleaning/data_cleaning.ipynb -------------------------------------------------------------------------------- /Day_25_Data_Cleaning/data_cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_25_Data_Cleaning/data_cleaning.py -------------------------------------------------------------------------------- /Day_25_Data_Cleaning/messy_sales_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_25_Data_Cleaning/messy_sales_data.csv -------------------------------------------------------------------------------- /Day_25_Data_Cleaning/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_25_Data_Cleaning/solutions.ipynb -------------------------------------------------------------------------------- /Day_25_Data_Cleaning/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_25_Data_Cleaning/solutions.py -------------------------------------------------------------------------------- /Day_26_Statistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_26_Statistics/README.md -------------------------------------------------------------------------------- /Day_26_Statistics/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_26_Statistics/solutions.ipynb -------------------------------------------------------------------------------- /Day_26_Statistics/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_26_Statistics/solutions.py -------------------------------------------------------------------------------- /Day_26_Statistics/stats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_26_Statistics/stats.ipynb -------------------------------------------------------------------------------- /Day_26_Statistics/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_26_Statistics/stats.py -------------------------------------------------------------------------------- /Day_27_Visualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_27_Visualization/README.md -------------------------------------------------------------------------------- /Day_27_Visualization/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_27_Visualization/solutions.ipynb -------------------------------------------------------------------------------- /Day_27_Visualization/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_27_Visualization/solutions.py -------------------------------------------------------------------------------- /Day_27_Visualization/visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_27_Visualization/visualization.ipynb -------------------------------------------------------------------------------- /Day_27_Visualization/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_27_Visualization/visualization.py -------------------------------------------------------------------------------- /Day_28_Advanced_Visualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_28_Advanced_Visualization/README.md -------------------------------------------------------------------------------- /Day_28_Advanced_Visualization/advanced_visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_28_Advanced_Visualization/advanced_visualization.ipynb -------------------------------------------------------------------------------- /Day_28_Advanced_Visualization/advanced_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_28_Advanced_Visualization/advanced_visualization.py -------------------------------------------------------------------------------- /Day_28_Advanced_Visualization/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_28_Advanced_Visualization/solutions.ipynb -------------------------------------------------------------------------------- /Day_28_Advanced_Visualization/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_28_Advanced_Visualization/solutions.py -------------------------------------------------------------------------------- /Day_29_Interactive_Visualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_29_Interactive_Visualization/README.md -------------------------------------------------------------------------------- /Day_29_Interactive_Visualization/interactive_visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_29_Interactive_Visualization/interactive_visualization.ipynb -------------------------------------------------------------------------------- /Day_29_Interactive_Visualization/interactive_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_29_Interactive_Visualization/interactive_visualization.py -------------------------------------------------------------------------------- /Day_29_Interactive_Visualization/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_29_Interactive_Visualization/solutions.ipynb -------------------------------------------------------------------------------- /Day_29_Interactive_Visualization/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_29_Interactive_Visualization/solutions.py -------------------------------------------------------------------------------- /Day_30_Web_Scraping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/README.md -------------------------------------------------------------------------------- /Day_30_Web_Scraping/books_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/books_sample.html -------------------------------------------------------------------------------- /Day_30_Web_Scraping/presidents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/presidents.csv -------------------------------------------------------------------------------- /Day_30_Web_Scraping/presidents.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/presidents.ipynb -------------------------------------------------------------------------------- /Day_30_Web_Scraping/presidents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/presidents.json -------------------------------------------------------------------------------- /Day_30_Web_Scraping/presidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/presidents.py -------------------------------------------------------------------------------- /Day_30_Web_Scraping/profile_web_scraping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/profile_web_scraping.ipynb -------------------------------------------------------------------------------- /Day_30_Web_Scraping/profile_web_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/profile_web_scraping.py -------------------------------------------------------------------------------- /Day_30_Web_Scraping/scraped_exercise_1.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Day_30_Web_Scraping/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/solutions.ipynb -------------------------------------------------------------------------------- /Day_30_Web_Scraping/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/solutions.py -------------------------------------------------------------------------------- /Day_30_Web_Scraping/web_scraping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/web_scraping.ipynb -------------------------------------------------------------------------------- /Day_30_Web_Scraping/web_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/web_scraping.py -------------------------------------------------------------------------------- /Day_30_Web_Scraping/web_scraping_bu.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/web_scraping_bu.ipynb -------------------------------------------------------------------------------- /Day_30_Web_Scraping/web_scraping_bu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_30_Web_Scraping/web_scraping_bu.py -------------------------------------------------------------------------------- /Day_31_Databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_31_Databases/README.md -------------------------------------------------------------------------------- /Day_31_Databases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_31_Databases/__init__.py -------------------------------------------------------------------------------- /Day_31_Databases/databases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_31_Databases/databases.ipynb -------------------------------------------------------------------------------- /Day_31_Databases/databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_31_Databases/databases.py -------------------------------------------------------------------------------- /Day_31_Databases/databases_smoke_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_31_Databases/databases_smoke_test.ipynb -------------------------------------------------------------------------------- /Day_31_Databases/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_31_Databases/solutions.ipynb -------------------------------------------------------------------------------- /Day_31_Databases/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_31_Databases/solutions.py -------------------------------------------------------------------------------- /Day_32_Other_Databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_32_Other_Databases/README.md -------------------------------------------------------------------------------- /Day_32_Other_Databases/other_databases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_32_Other_Databases/other_databases.ipynb -------------------------------------------------------------------------------- /Day_32_Other_Databases/other_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_32_Other_Databases/other_databases.py -------------------------------------------------------------------------------- /Day_33_API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_33_API/README.md -------------------------------------------------------------------------------- /Day_33_API/api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_33_API/api.ipynb -------------------------------------------------------------------------------- /Day_33_API/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_33_API/api.py -------------------------------------------------------------------------------- /Day_33_API/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_33_API/solutions.ipynb -------------------------------------------------------------------------------- /Day_33_API/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_33_API/solutions.py -------------------------------------------------------------------------------- /Day_34_Building_an_API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/README.md -------------------------------------------------------------------------------- /Day_34_Building_an_API/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/__init__.py -------------------------------------------------------------------------------- /Day_34_Building_an_API/api_server.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/api_server.ipynb -------------------------------------------------------------------------------- /Day_34_Building_an_API/api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/api_server.py -------------------------------------------------------------------------------- /Day_34_Building_an_API/data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/data.ipynb -------------------------------------------------------------------------------- /Day_34_Building_an_API/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/data.py -------------------------------------------------------------------------------- /Day_34_Building_an_API/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/solutions.ipynb -------------------------------------------------------------------------------- /Day_34_Building_an_API/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_34_Building_an_API/solutions.py -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/.gitignore -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/Procfile: -------------------------------------------------------------------------------- 1 | web: python app.py 2 | -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/README.md -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/__init__.py: -------------------------------------------------------------------------------- 1 | """Learning resources for Day 35.""" 2 | -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/app/__init__.py -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/app/__main__.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/app/__main__.ipynb -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/app/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/app/__main__.py -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/app/text_utils.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/app/text_utils.ipynb -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/app/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/app/text_utils.py -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/requirements.txt -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/solutions.ipynb -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/solutions.py -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/static/css/main.css -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/templates/about.html -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/templates/home.html -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/templates/layout.html -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/templates/post.html -------------------------------------------------------------------------------- /Day_35_Flask_Web_Framework/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_35_Flask_Web_Framework/templates/result.html -------------------------------------------------------------------------------- /Day_36_Case_Study/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_36_Case_Study/README.md -------------------------------------------------------------------------------- /Day_36_Case_Study/case_study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_36_Case_Study/case_study.ipynb -------------------------------------------------------------------------------- /Day_36_Case_Study/case_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_36_Case_Study/case_study.py -------------------------------------------------------------------------------- /Day_36_Case_Study/case_study_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_36_Case_Study/case_study_sales.csv -------------------------------------------------------------------------------- /Day_36_Case_Study/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_36_Case_Study/solutions.ipynb -------------------------------------------------------------------------------- /Day_36_Case_Study/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_36_Case_Study/solutions.py -------------------------------------------------------------------------------- /Day_37_Conclusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_37_Conclusion/README.md -------------------------------------------------------------------------------- /Day_37_Conclusion/conclusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_37_Conclusion/conclusion.ipynb -------------------------------------------------------------------------------- /Day_37_Conclusion/conclusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_37_Conclusion/conclusion.py -------------------------------------------------------------------------------- /Day_38_Linear_Algebra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_38_Linear_Algebra/README.md -------------------------------------------------------------------------------- /Day_38_Linear_Algebra/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_38_Linear_Algebra/solutions.ipynb -------------------------------------------------------------------------------- /Day_38_Linear_Algebra/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_38_Linear_Algebra/solutions.py -------------------------------------------------------------------------------- /Day_39_Calculus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_39_Calculus/README.md -------------------------------------------------------------------------------- /Day_39_Calculus/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_39_Calculus/solutions.ipynb -------------------------------------------------------------------------------- /Day_39_Calculus/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_39_Calculus/solutions.py -------------------------------------------------------------------------------- /Day_40_Intro_to_ML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_40_Intro_to_ML/README.md -------------------------------------------------------------------------------- /Day_40_Intro_to_ML/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_40_Intro_to_ML/solutions.ipynb -------------------------------------------------------------------------------- /Day_40_Intro_to_ML/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_40_Intro_to_ML/solutions.py -------------------------------------------------------------------------------- /Day_41_Supervised_Learning_Regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_41_Supervised_Learning_Regression/README.md -------------------------------------------------------------------------------- /Day_41_Supervised_Learning_Regression/regression_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_41_Supervised_Learning_Regression/regression_fit.png -------------------------------------------------------------------------------- /Day_41_Supervised_Learning_Regression/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_41_Supervised_Learning_Regression/solutions.ipynb -------------------------------------------------------------------------------- /Day_41_Supervised_Learning_Regression/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_41_Supervised_Learning_Regression/solutions.py -------------------------------------------------------------------------------- /Day_42_Supervised_Learning_Classification_Part_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_42_Supervised_Learning_Classification_Part_1/README.md -------------------------------------------------------------------------------- /Day_42_Supervised_Learning_Classification_Part_1/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_42_Supervised_Learning_Classification_Part_1/solutions.ipynb -------------------------------------------------------------------------------- /Day_42_Supervised_Learning_Classification_Part_1/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_42_Supervised_Learning_Classification_Part_1/solutions.py -------------------------------------------------------------------------------- /Day_43_Supervised_Learning_Classification_Part_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_43_Supervised_Learning_Classification_Part_2/README.md -------------------------------------------------------------------------------- /Day_43_Supervised_Learning_Classification_Part_2/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_43_Supervised_Learning_Classification_Part_2/solutions.ipynb -------------------------------------------------------------------------------- /Day_43_Supervised_Learning_Classification_Part_2/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_43_Supervised_Learning_Classification_Part_2/solutions.py -------------------------------------------------------------------------------- /Day_44_Unsupervised_Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_44_Unsupervised_Learning/README.md -------------------------------------------------------------------------------- /Day_44_Unsupervised_Learning/kmeans_clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_44_Unsupervised_Learning/kmeans_clusters.png -------------------------------------------------------------------------------- /Day_44_Unsupervised_Learning/pca_iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_44_Unsupervised_Learning/pca_iris.png -------------------------------------------------------------------------------- /Day_44_Unsupervised_Learning/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_44_Unsupervised_Learning/solutions.ipynb -------------------------------------------------------------------------------- /Day_44_Unsupervised_Learning/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_44_Unsupervised_Learning/solutions.py -------------------------------------------------------------------------------- /Day_45_Feature_Engineering_and_Evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_45_Feature_Engineering_and_Evaluation/README.md -------------------------------------------------------------------------------- /Day_45_Feature_Engineering_and_Evaluation/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_45_Feature_Engineering_and_Evaluation/solutions.ipynb -------------------------------------------------------------------------------- /Day_45_Feature_Engineering_and_Evaluation/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_45_Feature_Engineering_and_Evaluation/solutions.py -------------------------------------------------------------------------------- /Day_46_Intro_to_Neural_Networks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_46_Intro_to_Neural_Networks/README.md -------------------------------------------------------------------------------- /Day_46_Intro_to_Neural_Networks/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_46_Intro_to_Neural_Networks/solutions.ipynb -------------------------------------------------------------------------------- /Day_46_Intro_to_Neural_Networks/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_46_Intro_to_Neural_Networks/solutions.py -------------------------------------------------------------------------------- /Day_47_Convolutional_Neural_Networks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_47_Convolutional_Neural_Networks/README.md -------------------------------------------------------------------------------- /Day_47_Convolutional_Neural_Networks/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_47_Convolutional_Neural_Networks/solutions.ipynb -------------------------------------------------------------------------------- /Day_47_Convolutional_Neural_Networks/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_47_Convolutional_Neural_Networks/solutions.py -------------------------------------------------------------------------------- /Day_48_Recurrent_Neural_Networks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_48_Recurrent_Neural_Networks/README.md -------------------------------------------------------------------------------- /Day_48_Recurrent_Neural_Networks/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_48_Recurrent_Neural_Networks/solutions.ipynb -------------------------------------------------------------------------------- /Day_48_Recurrent_Neural_Networks/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_48_Recurrent_Neural_Networks/solutions.py -------------------------------------------------------------------------------- /Day_49_NLP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_49_NLP/README.md -------------------------------------------------------------------------------- /Day_49_NLP/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_49_NLP/solutions.ipynb -------------------------------------------------------------------------------- /Day_49_NLP/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_49_NLP/solutions.py -------------------------------------------------------------------------------- /Day_50_MLOps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_50_MLOps/README.md -------------------------------------------------------------------------------- /Day_50_MLOps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_50_MLOps/bonus_flask_api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_50_MLOps/bonus_flask_api.ipynb -------------------------------------------------------------------------------- /Day_50_MLOps/bonus_flask_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_50_MLOps/bonus_flask_api.py -------------------------------------------------------------------------------- /Day_50_MLOps/iris_model.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_50_MLOps/iris_model.joblib -------------------------------------------------------------------------------- /Day_50_MLOps/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_50_MLOps/solutions.ipynb -------------------------------------------------------------------------------- /Day_50_MLOps/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_50_MLOps/solutions.py -------------------------------------------------------------------------------- /Day_51_Regularized_Models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_51_Regularized_Models/README.md -------------------------------------------------------------------------------- /Day_51_Regularized_Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_51_Regularized_Models/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_51_Regularized_Models/solutions.ipynb -------------------------------------------------------------------------------- /Day_51_Regularized_Models/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_51_Regularized_Models/solutions.py -------------------------------------------------------------------------------- /Day_52_Ensemble_Methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_52_Ensemble_Methods/README.md -------------------------------------------------------------------------------- /Day_52_Ensemble_Methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_52_Ensemble_Methods/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_52_Ensemble_Methods/solutions.ipynb -------------------------------------------------------------------------------- /Day_52_Ensemble_Methods/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_52_Ensemble_Methods/solutions.py -------------------------------------------------------------------------------- /Day_53_Model_Tuning_and_Feature_Selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_53_Model_Tuning_and_Feature_Selection/README.md -------------------------------------------------------------------------------- /Day_53_Model_Tuning_and_Feature_Selection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_53_Model_Tuning_and_Feature_Selection/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_53_Model_Tuning_and_Feature_Selection/solutions.ipynb -------------------------------------------------------------------------------- /Day_53_Model_Tuning_and_Feature_Selection/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_53_Model_Tuning_and_Feature_Selection/solutions.py -------------------------------------------------------------------------------- /Day_54_Probabilistic_Modeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_54_Probabilistic_Modeling/README.md -------------------------------------------------------------------------------- /Day_54_Probabilistic_Modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_54_Probabilistic_Modeling/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_54_Probabilistic_Modeling/solutions.ipynb -------------------------------------------------------------------------------- /Day_54_Probabilistic_Modeling/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_54_Probabilistic_Modeling/solutions.py -------------------------------------------------------------------------------- /Day_55_Advanced_Unsupervised_Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_55_Advanced_Unsupervised_Learning/README.md -------------------------------------------------------------------------------- /Day_55_Advanced_Unsupervised_Learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_55_Advanced_Unsupervised_Learning/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_55_Advanced_Unsupervised_Learning/solutions.ipynb -------------------------------------------------------------------------------- /Day_55_Advanced_Unsupervised_Learning/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_55_Advanced_Unsupervised_Learning/solutions.py -------------------------------------------------------------------------------- /Day_56_Time_Series_and_Forecasting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_56_Time_Series_and_Forecasting/README.md -------------------------------------------------------------------------------- /Day_56_Time_Series_and_Forecasting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_56_Time_Series_and_Forecasting/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_56_Time_Series_and_Forecasting/solutions.ipynb -------------------------------------------------------------------------------- /Day_56_Time_Series_and_Forecasting/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_56_Time_Series_and_Forecasting/solutions.py -------------------------------------------------------------------------------- /Day_57_Recommender_Systems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_57_Recommender_Systems/README.md -------------------------------------------------------------------------------- /Day_57_Recommender_Systems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_57_Recommender_Systems/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_57_Recommender_Systems/solutions.ipynb -------------------------------------------------------------------------------- /Day_57_Recommender_Systems/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_57_Recommender_Systems/solutions.py -------------------------------------------------------------------------------- /Day_58_Transformers_and_Attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_58_Transformers_and_Attention/README.md -------------------------------------------------------------------------------- /Day_58_Transformers_and_Attention/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_58_Transformers_and_Attention/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_58_Transformers_and_Attention/solutions.ipynb -------------------------------------------------------------------------------- /Day_58_Transformers_and_Attention/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_58_Transformers_and_Attention/solutions.py -------------------------------------------------------------------------------- /Day_59_Generative_Models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_59_Generative_Models/README.md -------------------------------------------------------------------------------- /Day_59_Generative_Models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_59_Generative_Models/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_59_Generative_Models/solutions.ipynb -------------------------------------------------------------------------------- /Day_59_Generative_Models/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_59_Generative_Models/solutions.py -------------------------------------------------------------------------------- /Day_60_Graph_and_Geometric_Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_60_Graph_and_Geometric_Learning/README.md -------------------------------------------------------------------------------- /Day_60_Graph_and_Geometric_Learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_60_Graph_and_Geometric_Learning/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_60_Graph_and_Geometric_Learning/solutions.ipynb -------------------------------------------------------------------------------- /Day_60_Graph_and_Geometric_Learning/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_60_Graph_and_Geometric_Learning/solutions.py -------------------------------------------------------------------------------- /Day_61_Reinforcement_and_Offline_Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_61_Reinforcement_and_Offline_Learning/README.md -------------------------------------------------------------------------------- /Day_61_Reinforcement_and_Offline_Learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_61_Reinforcement_and_Offline_Learning/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_61_Reinforcement_and_Offline_Learning/solutions.ipynb -------------------------------------------------------------------------------- /Day_61_Reinforcement_and_Offline_Learning/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_61_Reinforcement_and_Offline_Learning/solutions.py -------------------------------------------------------------------------------- /Day_62_Model_Interpretability_and_Fairness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_62_Model_Interpretability_and_Fairness/README.md -------------------------------------------------------------------------------- /Day_62_Model_Interpretability_and_Fairness/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_62_Model_Interpretability_and_Fairness/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_62_Model_Interpretability_and_Fairness/solutions.ipynb -------------------------------------------------------------------------------- /Day_62_Model_Interpretability_and_Fairness/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_62_Model_Interpretability_and_Fairness/solutions.py -------------------------------------------------------------------------------- /Day_63_Causal_Inference_and_Uplift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_63_Causal_Inference_and_Uplift/README.md -------------------------------------------------------------------------------- /Day_63_Causal_Inference_and_Uplift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_63_Causal_Inference_and_Uplift/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_63_Causal_Inference_and_Uplift/solutions.ipynb -------------------------------------------------------------------------------- /Day_63_Causal_Inference_and_Uplift/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_63_Causal_Inference_and_Uplift/solutions.py -------------------------------------------------------------------------------- /Day_64_Modern_NLP_Pipelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_64_Modern_NLP_Pipelines/README.md -------------------------------------------------------------------------------- /Day_64_Modern_NLP_Pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_64_Modern_NLP_Pipelines/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_64_Modern_NLP_Pipelines/solutions.ipynb -------------------------------------------------------------------------------- /Day_64_Modern_NLP_Pipelines/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_64_Modern_NLP_Pipelines/solutions.py -------------------------------------------------------------------------------- /Day_65_MLOps_Pipelines_and_CI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_65_MLOps_Pipelines_and_CI/README.md -------------------------------------------------------------------------------- /Day_65_MLOps_Pipelines_and_CI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_65_MLOps_Pipelines_and_CI/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_65_MLOps_Pipelines_and_CI/solutions.ipynb -------------------------------------------------------------------------------- /Day_65_MLOps_Pipelines_and_CI/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_65_MLOps_Pipelines_and_CI/solutions.py -------------------------------------------------------------------------------- /Day_66_Model_Deployment_and_Serving/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_66_Model_Deployment_and_Serving/README.md -------------------------------------------------------------------------------- /Day_66_Model_Deployment_and_Serving/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_66_Model_Deployment_and_Serving/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_66_Model_Deployment_and_Serving/solutions.ipynb -------------------------------------------------------------------------------- /Day_66_Model_Deployment_and_Serving/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_66_Model_Deployment_and_Serving/solutions.py -------------------------------------------------------------------------------- /Day_67_Model_Monitoring_and_Reliability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_67_Model_Monitoring_and_Reliability/README.md -------------------------------------------------------------------------------- /Day_67_Model_Monitoring_and_Reliability/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_67_Model_Monitoring_and_Reliability/solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_67_Model_Monitoring_and_Reliability/solutions.ipynb -------------------------------------------------------------------------------- /Day_67_Model_Monitoring_and_Reliability/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_67_Model_Monitoring_and_Reliability/solutions.py -------------------------------------------------------------------------------- /Day_68_BI_Analyst_Foundations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_68_BI_Analyst_Foundations/README.md -------------------------------------------------------------------------------- /Day_68_BI_Analyst_Foundations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_68_BI_Analyst_Foundations/__init__.py -------------------------------------------------------------------------------- /Day_68_BI_Analyst_Foundations/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_68_BI_Analyst_Foundations/lesson.py -------------------------------------------------------------------------------- /Day_68_BI_Analyst_Foundations/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_68_BI_Analyst_Foundations/solutions.py -------------------------------------------------------------------------------- /Day_69_BI_Strategy_and_Stakeholders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_69_BI_Strategy_and_Stakeholders/README.md -------------------------------------------------------------------------------- /Day_69_BI_Strategy_and_Stakeholders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_69_BI_Strategy_and_Stakeholders/__init__.py -------------------------------------------------------------------------------- /Day_69_BI_Strategy_and_Stakeholders/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_69_BI_Strategy_and_Stakeholders/lesson.py -------------------------------------------------------------------------------- /Day_69_BI_Strategy_and_Stakeholders/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_69_BI_Strategy_and_Stakeholders/solutions.py -------------------------------------------------------------------------------- /Day_70_BI_Metrics_and_Data_Literacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_70_BI_Metrics_and_Data_Literacy/README.md -------------------------------------------------------------------------------- /Day_70_BI_Metrics_and_Data_Literacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_70_BI_Metrics_and_Data_Literacy/__init__.py -------------------------------------------------------------------------------- /Day_70_BI_Metrics_and_Data_Literacy/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_70_BI_Metrics_and_Data_Literacy/lesson.py -------------------------------------------------------------------------------- /Day_70_BI_Metrics_and_Data_Literacy/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_70_BI_Metrics_and_Data_Literacy/solutions.py -------------------------------------------------------------------------------- /Day_71_BI_Data_Landscape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_71_BI_Data_Landscape/README.md -------------------------------------------------------------------------------- /Day_71_BI_Data_Landscape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_71_BI_Data_Landscape/__init__.py -------------------------------------------------------------------------------- /Day_71_BI_Data_Landscape/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_71_BI_Data_Landscape/lesson.py -------------------------------------------------------------------------------- /Day_71_BI_Data_Landscape/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_71_BI_Data_Landscape/solutions.py -------------------------------------------------------------------------------- /Day_72_BI_Data_Formats_and_Ingestion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_72_BI_Data_Formats_and_Ingestion/README.md -------------------------------------------------------------------------------- /Day_72_BI_Data_Formats_and_Ingestion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_72_BI_Data_Formats_and_Ingestion/__init__.py -------------------------------------------------------------------------------- /Day_72_BI_Data_Formats_and_Ingestion/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_72_BI_Data_Formats_and_Ingestion/lesson.py -------------------------------------------------------------------------------- /Day_72_BI_Data_Formats_and_Ingestion/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_72_BI_Data_Formats_and_Ingestion/solutions.py -------------------------------------------------------------------------------- /Day_73_BI_SQL_and_Databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_73_BI_SQL_and_Databases/README.md -------------------------------------------------------------------------------- /Day_73_BI_SQL_and_Databases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_73_BI_SQL_and_Databases/__init__.py -------------------------------------------------------------------------------- /Day_73_BI_SQL_and_Databases/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_73_BI_SQL_and_Databases/lesson.py -------------------------------------------------------------------------------- /Day_73_BI_SQL_and_Databases/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_73_BI_SQL_and_Databases/solutions.py -------------------------------------------------------------------------------- /Day_74_BI_Data_Preparation_and_Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_74_BI_Data_Preparation_and_Tools/README.md -------------------------------------------------------------------------------- /Day_74_BI_Data_Preparation_and_Tools/__init__.py: -------------------------------------------------------------------------------- 1 | """Package for Day 74: BI Data Preparation and Tools.""" 2 | -------------------------------------------------------------------------------- /Day_74_BI_Data_Preparation_and_Tools/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_74_BI_Data_Preparation_and_Tools/lesson.py -------------------------------------------------------------------------------- /Day_74_BI_Data_Preparation_and_Tools/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_74_BI_Data_Preparation_and_Tools/solutions.py -------------------------------------------------------------------------------- /Day_75_BI_Visualization_and_Dashboard_Principles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_75_BI_Visualization_and_Dashboard_Principles/README.md -------------------------------------------------------------------------------- /Day_75_BI_Visualization_and_Dashboard_Principles/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_75_BI_Visualization_and_Dashboard_Principles/lesson.py -------------------------------------------------------------------------------- /Day_75_BI_Visualization_and_Dashboard_Principles/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_75_BI_Visualization_and_Dashboard_Principles/solutions.py -------------------------------------------------------------------------------- /Day_76_BI_Platforms_and_Automation_Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_76_BI_Platforms_and_Automation_Tools/README.md -------------------------------------------------------------------------------- /Day_76_BI_Platforms_and_Automation_Tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_76_BI_Platforms_and_Automation_Tools/__init__.py -------------------------------------------------------------------------------- /Day_76_BI_Platforms_and_Automation_Tools/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_76_BI_Platforms_and_Automation_Tools/lesson.py -------------------------------------------------------------------------------- /Day_76_BI_Platforms_and_Automation_Tools/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_76_BI_Platforms_and_Automation_Tools/solutions.py -------------------------------------------------------------------------------- /Day_77_BI_Domain_Analytics_and_Value_Drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_77_BI_Domain_Analytics_and_Value_Drivers/README.md -------------------------------------------------------------------------------- /Day_77_BI_Domain_Analytics_and_Value_Drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_77_BI_Domain_Analytics_and_Value_Drivers/__init__.py -------------------------------------------------------------------------------- /Day_77_BI_Domain_Analytics_and_Value_Drivers/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_77_BI_Domain_Analytics_and_Value_Drivers/lesson.py -------------------------------------------------------------------------------- /Day_77_BI_Domain_Analytics_and_Value_Drivers/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_77_BI_Domain_Analytics_and_Value_Drivers/solutions.py -------------------------------------------------------------------------------- /Day_78_BI_Experimentation_and_Predictive_Insights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_78_BI_Experimentation_and_Predictive_Insights/README.md -------------------------------------------------------------------------------- /Day_78_BI_Experimentation_and_Predictive_Insights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Day_78_BI_Experimentation_and_Predictive_Insights/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_78_BI_Experimentation_and_Predictive_Insights/lesson.py -------------------------------------------------------------------------------- /Day_78_BI_Experimentation_and_Predictive_Insights/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_78_BI_Experimentation_and_Predictive_Insights/solutions.py -------------------------------------------------------------------------------- /Day_79_BI_Storytelling_and_Stakeholder_Influence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_79_BI_Storytelling_and_Stakeholder_Influence/README.md -------------------------------------------------------------------------------- /Day_79_BI_Storytelling_and_Stakeholder_Influence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_79_BI_Storytelling_and_Stakeholder_Influence/__init__.py -------------------------------------------------------------------------------- /Day_79_BI_Storytelling_and_Stakeholder_Influence/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_79_BI_Storytelling_and_Stakeholder_Influence/lesson.py -------------------------------------------------------------------------------- /Day_79_BI_Storytelling_and_Stakeholder_Influence/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_79_BI_Storytelling_and_Stakeholder_Influence/solutions.py -------------------------------------------------------------------------------- /Day_80_BI_Data_Quality_and_Governance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_80_BI_Data_Quality_and_Governance/README.md -------------------------------------------------------------------------------- /Day_80_BI_Data_Quality_and_Governance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_80_BI_Data_Quality_and_Governance/__init__.py -------------------------------------------------------------------------------- /Day_80_BI_Data_Quality_and_Governance/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_80_BI_Data_Quality_and_Governance/lesson.py -------------------------------------------------------------------------------- /Day_80_BI_Data_Quality_and_Governance/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_80_BI_Data_Quality_and_Governance/solutions.py -------------------------------------------------------------------------------- /Day_81_BI_Architecture_and_Data_Modeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_81_BI_Architecture_and_Data_Modeling/README.md -------------------------------------------------------------------------------- /Day_81_BI_Architecture_and_Data_Modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_81_BI_Architecture_and_Data_Modeling/__init__.py -------------------------------------------------------------------------------- /Day_81_BI_Architecture_and_Data_Modeling/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_81_BI_Architecture_and_Data_Modeling/lesson.py -------------------------------------------------------------------------------- /Day_81_BI_Architecture_and_Data_Modeling/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_81_BI_Architecture_and_Data_Modeling/solutions.py -------------------------------------------------------------------------------- /Day_82_BI_ETL_and_Pipeline_Automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_82_BI_ETL_and_Pipeline_Automation/README.md -------------------------------------------------------------------------------- /Day_82_BI_ETL_and_Pipeline_Automation/__init__.py: -------------------------------------------------------------------------------- 1 | """Package for Day 82: BI ETL and Pipeline Automation.""" 2 | -------------------------------------------------------------------------------- /Day_82_BI_ETL_and_Pipeline_Automation/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_82_BI_ETL_and_Pipeline_Automation/lesson.py -------------------------------------------------------------------------------- /Day_82_BI_ETL_and_Pipeline_Automation/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_82_BI_ETL_and_Pipeline_Automation/solutions.py -------------------------------------------------------------------------------- /Day_83_BI_Cloud_and_Modern_Data_Stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_83_BI_Cloud_and_Modern_Data_Stack/README.md -------------------------------------------------------------------------------- /Day_83_BI_Cloud_and_Modern_Data_Stack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_83_BI_Cloud_and_Modern_Data_Stack/__init__.py -------------------------------------------------------------------------------- /Day_83_BI_Cloud_and_Modern_Data_Stack/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_83_BI_Cloud_and_Modern_Data_Stack/lesson.py -------------------------------------------------------------------------------- /Day_83_BI_Cloud_and_Modern_Data_Stack/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_83_BI_Cloud_and_Modern_Data_Stack/solutions.py -------------------------------------------------------------------------------- /Day_84_BI_Career_Development_and_Capstone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_84_BI_Career_Development_and_Capstone/README.md -------------------------------------------------------------------------------- /Day_84_BI_Career_Development_and_Capstone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_84_BI_Career_Development_and_Capstone/__init__.py -------------------------------------------------------------------------------- /Day_84_BI_Career_Development_and_Capstone/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_84_BI_Career_Development_and_Capstone/lesson.py -------------------------------------------------------------------------------- /Day_84_BI_Career_Development_and_Capstone/solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_84_BI_Career_Development_and_Capstone/solutions.py -------------------------------------------------------------------------------- /Day_85_Advanced_SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_85_Advanced_SQL/README.md -------------------------------------------------------------------------------- /Day_86_BI_Cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_86_BI_Cloud/README.md -------------------------------------------------------------------------------- /Day_87_Data_Governance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_87_Data_Governance/README.md -------------------------------------------------------------------------------- /Day_88_Capstone_Part_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_88_Capstone_Part_1/README.md -------------------------------------------------------------------------------- /Day_89_Capstone_Part_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_89_Capstone_Part_2/README.md -------------------------------------------------------------------------------- /Day_90_Career_Workshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_90_Career_Workshop/README.md -------------------------------------------------------------------------------- /Day_91_Relational_Databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_91_Relational_Databases/README.md -------------------------------------------------------------------------------- /Day_91_Relational_Databases/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_91_Relational_Databases/exercises.sql -------------------------------------------------------------------------------- /Day_92_Data_Definition_Language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_92_Data_Definition_Language/README.md -------------------------------------------------------------------------------- /Day_92_Data_Definition_Language/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_92_Data_Definition_Language/exercises.sql -------------------------------------------------------------------------------- /Day_92_Data_Definition_Language/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_92_Data_Definition_Language/solutions.sql -------------------------------------------------------------------------------- /Day_93_Data_Manipulation_Language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_93_Data_Manipulation_Language/README.md -------------------------------------------------------------------------------- /Day_93_Data_Manipulation_Language/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_93_Data_Manipulation_Language/exercises.sql -------------------------------------------------------------------------------- /Day_93_Data_Manipulation_Language/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_93_Data_Manipulation_Language/solutions.sql -------------------------------------------------------------------------------- /Day_94_Data_Query_Language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_94_Data_Query_Language/README.md -------------------------------------------------------------------------------- /Day_94_Data_Query_Language/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_94_Data_Query_Language/exercises.sql -------------------------------------------------------------------------------- /Day_94_Data_Query_Language/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_94_Data_Query_Language/solutions.sql -------------------------------------------------------------------------------- /Day_95_Joins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_95_Joins/README.md -------------------------------------------------------------------------------- /Day_95_Joins/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_95_Joins/exercises.sql -------------------------------------------------------------------------------- /Day_95_Joins/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_95_Joins/solutions.sql -------------------------------------------------------------------------------- /Day_96_Subqueries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_96_Subqueries/README.md -------------------------------------------------------------------------------- /Day_96_Subqueries/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_96_Subqueries/exercises.sql -------------------------------------------------------------------------------- /Day_96_Subqueries/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_96_Subqueries/solutions.sql -------------------------------------------------------------------------------- /Day_97_Views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_97_Views/README.md -------------------------------------------------------------------------------- /Day_97_Views/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_97_Views/exercises.sql -------------------------------------------------------------------------------- /Day_97_Views/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_97_Views/solutions.sql -------------------------------------------------------------------------------- /Day_98_Indexes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_98_Indexes/README.md -------------------------------------------------------------------------------- /Day_98_Indexes/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_98_Indexes/exercises.sql -------------------------------------------------------------------------------- /Day_98_Indexes/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_98_Indexes/solutions.sql -------------------------------------------------------------------------------- /Day_99_Transactions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_99_Transactions/README.md -------------------------------------------------------------------------------- /Day_99_Transactions/exercises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_99_Transactions/exercises.sql -------------------------------------------------------------------------------- /Day_99_Transactions/solutions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Day_99_Transactions/solutions.sql -------------------------------------------------------------------------------- /GITHUB_PAGES_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/GITHUB_PAGES_SETUP.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/TODO.md -------------------------------------------------------------------------------- /analytics/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/analytics/logger.js -------------------------------------------------------------------------------- /analytics/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/analytics/report.py -------------------------------------------------------------------------------- /artifacts/execution-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/artifacts/execution-summary.txt -------------------------------------------------------------------------------- /artifacts/pr-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/artifacts/pr-summary.txt -------------------------------------------------------------------------------- /artifacts/run-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/artifacts/run-log.md -------------------------------------------------------------------------------- /binder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/binder/README.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /data/F500.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/F500.csv -------------------------------------------------------------------------------- /data/HN_posts_year_to_Sep_26_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/HN_posts_year_to_Sep_26_2016.csv -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/README.md -------------------------------------------------------------------------------- /data/bi_analyst_roadmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/bi_analyst_roadmap.json -------------------------------------------------------------------------------- /data/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/countries.py -------------------------------------------------------------------------------- /data/countries_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/countries_data.json -------------------------------------------------------------------------------- /data/countries_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/countries_data.py -------------------------------------------------------------------------------- /data/donald_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/donald_speech.txt -------------------------------------------------------------------------------- /data/email_exchanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/email_exchanges.txt -------------------------------------------------------------------------------- /data/email_exchanges_big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/email_exchanges_big.txt -------------------------------------------------------------------------------- /data/fortune1000_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/fortune1000_final.csv -------------------------------------------------------------------------------- /data/fortune_500_companies_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/fortune_500_companies_2017.csv -------------------------------------------------------------------------------- /data/hacker_news.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/hacker_news.csv -------------------------------------------------------------------------------- /data/melina_trump_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/melina_trump_speech.txt -------------------------------------------------------------------------------- /data/michelle_obama_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/michelle_obama_speech.txt -------------------------------------------------------------------------------- /data/obama_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/obama_speech.txt -------------------------------------------------------------------------------- /data/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/result.csv -------------------------------------------------------------------------------- /data/romeo_and_juliet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/romeo_and_juliet.txt -------------------------------------------------------------------------------- /data/weight-height.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/data/weight-height.csv -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/agents.md -------------------------------------------------------------------------------- /docs/analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/analytics.md -------------------------------------------------------------------------------- /docs/assets/js/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/assets/js/progress.js -------------------------------------------------------------------------------- /docs/bi-curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/bi-curriculum.md -------------------------------------------------------------------------------- /docs/cheatsheets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/cheatsheets/index.md -------------------------------------------------------------------------------- /docs/cheatsheets/phase-1-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/cheatsheets/phase-1-cheat-sheet.md -------------------------------------------------------------------------------- /docs/cheatsheets/phase-2-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/cheatsheets/phase-2-cheat-sheet.md -------------------------------------------------------------------------------- /docs/cheatsheets/phase-3-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/cheatsheets/phase-3-cheat-sheet.md -------------------------------------------------------------------------------- /docs/cheatsheets/phase-4-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/cheatsheets/phase-4-cheat-sheet.md -------------------------------------------------------------------------------- /docs/cheatsheets/phase-5-business-intelligence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/cheatsheets/phase-5-business-intelligence.md -------------------------------------------------------------------------------- /docs/community/github-discussions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/community/github-discussions.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/dashboard/README.md -------------------------------------------------------------------------------- /docs/demo-enhanced-lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/demo-enhanced-lesson.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/featured-lessons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/featured-lessons.md -------------------------------------------------------------------------------- /docs/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/get-started.md -------------------------------------------------------------------------------- /docs/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/i18n.md -------------------------------------------------------------------------------- /docs/implementation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/implementation-guide.md -------------------------------------------------------------------------------- /docs/index.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/index.es.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/progress-tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/javascripts/progress-tracker.js -------------------------------------------------------------------------------- /docs/javascripts/pyodide-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/javascripts/pyodide-console.js -------------------------------------------------------------------------------- /docs/javascripts/thebe-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/javascripts/thebe-config.js -------------------------------------------------------------------------------- /docs/lessons/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/_index.md -------------------------------------------------------------------------------- /docs/lessons/day-01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-01-introduction.md -------------------------------------------------------------------------------- /docs/lessons/day-02-variables-builtin-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-02-variables-builtin-functions.md -------------------------------------------------------------------------------- /docs/lessons/day-03-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-03-operators.md -------------------------------------------------------------------------------- /docs/lessons/day-04-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-04-strings.md -------------------------------------------------------------------------------- /docs/lessons/day-05-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-05-lists.md -------------------------------------------------------------------------------- /docs/lessons/day-06-tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-06-tuples.md -------------------------------------------------------------------------------- /docs/lessons/day-07-sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-07-sets.md -------------------------------------------------------------------------------- /docs/lessons/day-08-dictionaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-08-dictionaries.md -------------------------------------------------------------------------------- /docs/lessons/day-09-conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-09-conditionals.md -------------------------------------------------------------------------------- /docs/lessons/day-10-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-10-loops.md -------------------------------------------------------------------------------- /docs/lessons/day-100-stored-procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-100-stored-procedures.md -------------------------------------------------------------------------------- /docs/lessons/day-101-triggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-101-triggers.md -------------------------------------------------------------------------------- /docs/lessons/day-102-common-table-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-102-common-table-expressions.md -------------------------------------------------------------------------------- /docs/lessons/day-103-pivoting-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-103-pivoting-data.md -------------------------------------------------------------------------------- /docs/lessons/day-104-database-design-and-normalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-104-database-design-and-normalization.md -------------------------------------------------------------------------------- /docs/lessons/day-105-json-in-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-105-json-in-sql.md -------------------------------------------------------------------------------- /docs/lessons/day-106-xml-in-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-106-xml-in-sql.md -------------------------------------------------------------------------------- /docs/lessons/day-107-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-107-security.md -------------------------------------------------------------------------------- /docs/lessons/day-108-performance-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-108-performance-tuning.md -------------------------------------------------------------------------------- /docs/lessons/day-11-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-11-functions.md -------------------------------------------------------------------------------- /docs/lessons/day-12-list-comprehension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-12-list-comprehension.md -------------------------------------------------------------------------------- /docs/lessons/day-13-higher-order-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-13-higher-order-functions.md -------------------------------------------------------------------------------- /docs/lessons/day-14-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-14-modules.md -------------------------------------------------------------------------------- /docs/lessons/day-15-exception-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-15-exception-handling.md -------------------------------------------------------------------------------- /docs/lessons/day-16-file-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-16-file-handling.md -------------------------------------------------------------------------------- /docs/lessons/day-17-regular-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-17-regular-expressions.md -------------------------------------------------------------------------------- /docs/lessons/day-18-classes-and-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-18-classes-and-objects.md -------------------------------------------------------------------------------- /docs/lessons/day-19-python-date-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-19-python-date-time.md -------------------------------------------------------------------------------- /docs/lessons/day-20-python-package-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-20-python-package-manager.md -------------------------------------------------------------------------------- /docs/lessons/day-21-virtual-environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-21-virtual-environments.md -------------------------------------------------------------------------------- /docs/lessons/day-22-numpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-22-numpy.md -------------------------------------------------------------------------------- /docs/lessons/day-23-pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-23-pandas.md -------------------------------------------------------------------------------- /docs/lessons/day-24-pandas-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-24-pandas-advanced.md -------------------------------------------------------------------------------- /docs/lessons/day-25-data-cleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-25-data-cleaning.md -------------------------------------------------------------------------------- /docs/lessons/day-26-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-26-statistics.md -------------------------------------------------------------------------------- /docs/lessons/day-27-visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-27-visualization.md -------------------------------------------------------------------------------- /docs/lessons/day-28-advanced-visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-28-advanced-visualization.md -------------------------------------------------------------------------------- /docs/lessons/day-29-interactive-visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-29-interactive-visualization.md -------------------------------------------------------------------------------- /docs/lessons/day-30-web-scraping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-30-web-scraping.md -------------------------------------------------------------------------------- /docs/lessons/day-31-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-31-databases.md -------------------------------------------------------------------------------- /docs/lessons/day-32-other-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-32-other-databases.md -------------------------------------------------------------------------------- /docs/lessons/day-33-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-33-api.md -------------------------------------------------------------------------------- /docs/lessons/day-34-building-an-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-34-building-an-api.md -------------------------------------------------------------------------------- /docs/lessons/day-35-flask-web-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-35-flask-web-framework.md -------------------------------------------------------------------------------- /docs/lessons/day-36-case-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-36-case-study.md -------------------------------------------------------------------------------- /docs/lessons/day-37-conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-37-conclusion.md -------------------------------------------------------------------------------- /docs/lessons/day-38-linear-algebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-38-linear-algebra.md -------------------------------------------------------------------------------- /docs/lessons/day-39-calculus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-39-calculus.md -------------------------------------------------------------------------------- /docs/lessons/day-40-intro-to-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-40-intro-to-ml.md -------------------------------------------------------------------------------- /docs/lessons/day-41-supervised-learning-regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-41-supervised-learning-regression.md -------------------------------------------------------------------------------- /docs/lessons/day-42-supervised-learning-classification-part-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-42-supervised-learning-classification-part-1.md -------------------------------------------------------------------------------- /docs/lessons/day-43-supervised-learning-classification-part-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-43-supervised-learning-classification-part-2.md -------------------------------------------------------------------------------- /docs/lessons/day-44-unsupervised-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-44-unsupervised-learning.md -------------------------------------------------------------------------------- /docs/lessons/day-45-feature-engineering-and-evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-45-feature-engineering-and-evaluation.md -------------------------------------------------------------------------------- /docs/lessons/day-46-intro-to-neural-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-46-intro-to-neural-networks.md -------------------------------------------------------------------------------- /docs/lessons/day-47-convolutional-neural-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-47-convolutional-neural-networks.md -------------------------------------------------------------------------------- /docs/lessons/day-48-recurrent-neural-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-48-recurrent-neural-networks.md -------------------------------------------------------------------------------- /docs/lessons/day-49-nlp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-49-nlp.md -------------------------------------------------------------------------------- /docs/lessons/day-50-mlops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-50-mlops.md -------------------------------------------------------------------------------- /docs/lessons/day-51-regularized-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-51-regularized-models.md -------------------------------------------------------------------------------- /docs/lessons/day-52-ensemble-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-52-ensemble-methods.md -------------------------------------------------------------------------------- /docs/lessons/day-53-model-tuning-and-feature-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-53-model-tuning-and-feature-selection.md -------------------------------------------------------------------------------- /docs/lessons/day-54-probabilistic-modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-54-probabilistic-modeling.md -------------------------------------------------------------------------------- /docs/lessons/day-55-advanced-unsupervised-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-55-advanced-unsupervised-learning.md -------------------------------------------------------------------------------- /docs/lessons/day-56-time-series-and-forecasting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-56-time-series-and-forecasting.md -------------------------------------------------------------------------------- /docs/lessons/day-57-recommender-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-57-recommender-systems.md -------------------------------------------------------------------------------- /docs/lessons/day-58-transformers-and-attention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-58-transformers-and-attention.md -------------------------------------------------------------------------------- /docs/lessons/day-59-generative-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-59-generative-models.md -------------------------------------------------------------------------------- /docs/lessons/day-60-graph-and-geometric-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-60-graph-and-geometric-learning.md -------------------------------------------------------------------------------- /docs/lessons/day-61-reinforcement-and-offline-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-61-reinforcement-and-offline-learning.md -------------------------------------------------------------------------------- /docs/lessons/day-62-model-interpretability-and-fairness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-62-model-interpretability-and-fairness.md -------------------------------------------------------------------------------- /docs/lessons/day-63-causal-inference-and-uplift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-63-causal-inference-and-uplift.md -------------------------------------------------------------------------------- /docs/lessons/day-64-modern-nlp-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-64-modern-nlp-pipelines.md -------------------------------------------------------------------------------- /docs/lessons/day-65-mlops-pipelines-and-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-65-mlops-pipelines-and-ci.md -------------------------------------------------------------------------------- /docs/lessons/day-66-model-deployment-and-serving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-66-model-deployment-and-serving.md -------------------------------------------------------------------------------- /docs/lessons/day-67-model-monitoring-and-reliability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-67-model-monitoring-and-reliability.md -------------------------------------------------------------------------------- /docs/lessons/day-68-bi-analyst-foundations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-68-bi-analyst-foundations.md -------------------------------------------------------------------------------- /docs/lessons/day-69-bi-strategy-and-stakeholders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-69-bi-strategy-and-stakeholders.md -------------------------------------------------------------------------------- /docs/lessons/day-70-bi-metrics-and-data-literacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-70-bi-metrics-and-data-literacy.md -------------------------------------------------------------------------------- /docs/lessons/day-71-bi-data-landscape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-71-bi-data-landscape.md -------------------------------------------------------------------------------- /docs/lessons/day-72-bi-data-formats-and-ingestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-72-bi-data-formats-and-ingestion.md -------------------------------------------------------------------------------- /docs/lessons/day-73-bi-sql-and-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-73-bi-sql-and-databases.md -------------------------------------------------------------------------------- /docs/lessons/day-74-bi-data-preparation-and-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-74-bi-data-preparation-and-tools.md -------------------------------------------------------------------------------- /docs/lessons/day-75-bi-visualization-and-dashboard-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-75-bi-visualization-and-dashboard-principles.md -------------------------------------------------------------------------------- /docs/lessons/day-76-bi-platforms-and-automation-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-76-bi-platforms-and-automation-tools.md -------------------------------------------------------------------------------- /docs/lessons/day-77-bi-domain-analytics-and-value-drivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-77-bi-domain-analytics-and-value-drivers.md -------------------------------------------------------------------------------- /docs/lessons/day-78-bi-experimentation-and-predictive-insights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-78-bi-experimentation-and-predictive-insights.md -------------------------------------------------------------------------------- /docs/lessons/day-79-bi-storytelling-and-stakeholder-influence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-79-bi-storytelling-and-stakeholder-influence.md -------------------------------------------------------------------------------- /docs/lessons/day-80-bi-data-quality-and-governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-80-bi-data-quality-and-governance.md -------------------------------------------------------------------------------- /docs/lessons/day-81-bi-architecture-and-data-modeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-81-bi-architecture-and-data-modeling.md -------------------------------------------------------------------------------- /docs/lessons/day-82-bi-etl-and-pipeline-automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-82-bi-etl-and-pipeline-automation.md -------------------------------------------------------------------------------- /docs/lessons/day-83-bi-cloud-and-modern-data-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-83-bi-cloud-and-modern-data-stack.md -------------------------------------------------------------------------------- /docs/lessons/day-84-bi-career-development-and-capstone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-84-bi-career-development-and-capstone.md -------------------------------------------------------------------------------- /docs/lessons/day-85-advanced-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-85-advanced-sql.md -------------------------------------------------------------------------------- /docs/lessons/day-86-bi-cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-86-bi-cloud.md -------------------------------------------------------------------------------- /docs/lessons/day-87-data-governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-87-data-governance.md -------------------------------------------------------------------------------- /docs/lessons/day-88-capstone-part-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-88-capstone-part-1.md -------------------------------------------------------------------------------- /docs/lessons/day-89-capstone-part-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-89-capstone-part-2.md -------------------------------------------------------------------------------- /docs/lessons/day-90-career-workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-90-career-workshop.md -------------------------------------------------------------------------------- /docs/lessons/day-91-relational-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-91-relational-databases.md -------------------------------------------------------------------------------- /docs/lessons/day-92-data-definition-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-92-data-definition-language.md -------------------------------------------------------------------------------- /docs/lessons/day-93-data-manipulation-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-93-data-manipulation-language.md -------------------------------------------------------------------------------- /docs/lessons/day-94-data-query-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-94-data-query-language.md -------------------------------------------------------------------------------- /docs/lessons/day-95-joins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-95-joins.md -------------------------------------------------------------------------------- /docs/lessons/day-96-subqueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-96-subqueries.md -------------------------------------------------------------------------------- /docs/lessons/day-97-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-97-views.md -------------------------------------------------------------------------------- /docs/lessons/day-98-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-98-indexes.md -------------------------------------------------------------------------------- /docs/lessons/day-99-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/day-99-transactions.md -------------------------------------------------------------------------------- /docs/lessons/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/lessons/index.md -------------------------------------------------------------------------------- /docs/ml_curriculum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/ml_curriculum.md -------------------------------------------------------------------------------- /docs/overrides/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/overrides/partials/footer.html -------------------------------------------------------------------------------- /docs/performance-benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/performance-benchmarking.md -------------------------------------------------------------------------------- /docs/phases/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/overview.md -------------------------------------------------------------------------------- /docs/phases/phase1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase1.md -------------------------------------------------------------------------------- /docs/phases/phase2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase2.md -------------------------------------------------------------------------------- /docs/phases/phase3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase3.md -------------------------------------------------------------------------------- /docs/phases/phase4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase4.md -------------------------------------------------------------------------------- /docs/phases/phase5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase5.md -------------------------------------------------------------------------------- /docs/phases/phase6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase6.md -------------------------------------------------------------------------------- /docs/phases/phase7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase7.md -------------------------------------------------------------------------------- /docs/phases/phase_1_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase_1_overview.md -------------------------------------------------------------------------------- /docs/phases/phase_2_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase_2_overview.md -------------------------------------------------------------------------------- /docs/phases/phase_3_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase_3_overview.md -------------------------------------------------------------------------------- /docs/phases/phase_4_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase_4_overview.md -------------------------------------------------------------------------------- /docs/phases/phase_5_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase_5_overview.md -------------------------------------------------------------------------------- /docs/phases/phase_6_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase_6_overview.md -------------------------------------------------------------------------------- /docs/phases/phase_7_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/phases/phase_7_overview.md -------------------------------------------------------------------------------- /docs/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/requirements-docs.txt -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-material>=9.5.16 2 | -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/site_metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "total_lessons": 108 3 | } 4 | -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/stylesheets/interactive-widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/stylesheets/interactive-widgets.css -------------------------------------------------------------------------------- /docs/theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/theory.md -------------------------------------------------------------------------------- /docs/website-improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/docs/website-improvements.md -------------------------------------------------------------------------------- /generated/all_lessons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/generated/all_lessons.md -------------------------------------------------------------------------------- /generated/all_lessons_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/generated/all_lessons_table.md -------------------------------------------------------------------------------- /generated/lesson_count.txt: -------------------------------------------------------------------------------- 1 | 108 -------------------------------------------------------------------------------- /investigate_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/investigate_tables.py -------------------------------------------------------------------------------- /learner_backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/learner_backend/.env.example -------------------------------------------------------------------------------- /learner_backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/learner_backend/README.md -------------------------------------------------------------------------------- /learner_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/learner_backend/__init__.py -------------------------------------------------------------------------------- /learner_backend/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/learner_backend/db.py -------------------------------------------------------------------------------- /learner_backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/learner_backend/main.py -------------------------------------------------------------------------------- /learner_backend/static/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/learner_backend/static/dashboard.html -------------------------------------------------------------------------------- /mkdocs-enhanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mkdocs-enhanced.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mypackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mypackage/README.md -------------------------------------------------------------------------------- /mypackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mypackage/__init__.py -------------------------------------------------------------------------------- /mypackage/arithmetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mypackage/arithmetics.py -------------------------------------------------------------------------------- /mypackage/bar_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mypackage/bar_system.py -------------------------------------------------------------------------------- /mypackage/bi_curriculum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mypackage/bi_curriculum.py -------------------------------------------------------------------------------- /mypackage/greet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mypackage/greet.py -------------------------------------------------------------------------------- /mypackage/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/mypackage/profiling.py -------------------------------------------------------------------------------- /projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/projects/README.md -------------------------------------------------------------------------------- /projects/phase_1/project_1_sales_validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/projects/phase_1/project_1_sales_validator/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/pytest.ini -------------------------------------------------------------------------------- /quizzes/Day_02_quiz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/quizzes/Day_02_quiz.yml -------------------------------------------------------------------------------- /quizzes/Day_23_quiz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/quizzes/Day_23_quiz.yml -------------------------------------------------------------------------------- /quizzes/Day_40_quiz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/quizzes/Day_40_quiz.yml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/add_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/add_tags.py -------------------------------------------------------------------------------- /scripts/extract_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/extract_i18n.py -------------------------------------------------------------------------------- /scripts/gen_lessons_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/gen_lessons_index.py -------------------------------------------------------------------------------- /scripts/gen_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/gen_nav.py -------------------------------------------------------------------------------- /scripts/gen_phase_overviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/gen_phase_overviews.py -------------------------------------------------------------------------------- /scripts/generate_badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/generate_badge.py -------------------------------------------------------------------------------- /scripts/generate_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/generate_certificate.py -------------------------------------------------------------------------------- /scripts/generate_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/generate_pdfs.py -------------------------------------------------------------------------------- /scripts/generate_quiz_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/generate_quiz_pages.py -------------------------------------------------------------------------------- /scripts/inject_footers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/inject_footers.py -------------------------------------------------------------------------------- /scripts/revert_high_effort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/revert_high_effort.sh -------------------------------------------------------------------------------- /scripts/revert_nav_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/revert_nav_changes.py -------------------------------------------------------------------------------- /scripts/run_quick_audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/run_quick_audit.sh -------------------------------------------------------------------------------- /scripts/verify_lessons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/scripts/verify_lessons.py -------------------------------------------------------------------------------- /tests/snapshots/day-02-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/snapshots/day-02-footer.html -------------------------------------------------------------------------------- /tests/snapshots/day-36-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/snapshots/day-36-footer.html -------------------------------------------------------------------------------- /tests/snapshots/lessons-index-day-02-h3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/snapshots/lessons-index-day-02-h3.html -------------------------------------------------------------------------------- /tests/test_bar_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_bar_system.py -------------------------------------------------------------------------------- /tests/test_bi_curriculum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_bi_curriculum.py -------------------------------------------------------------------------------- /tests/test_data_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_data_pipeline.py -------------------------------------------------------------------------------- /tests/test_day_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_01.py -------------------------------------------------------------------------------- /tests/test_day_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_02.py -------------------------------------------------------------------------------- /tests/test_day_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_03.py -------------------------------------------------------------------------------- /tests/test_day_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_04.py -------------------------------------------------------------------------------- /tests/test_day_05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_05.py -------------------------------------------------------------------------------- /tests/test_day_06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_06.py -------------------------------------------------------------------------------- /tests/test_day_07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_07.py -------------------------------------------------------------------------------- /tests/test_day_08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_08.py -------------------------------------------------------------------------------- /tests/test_day_09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_09.py -------------------------------------------------------------------------------- /tests/test_day_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_10.py -------------------------------------------------------------------------------- /tests/test_day_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_11.py -------------------------------------------------------------------------------- /tests/test_day_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_12.py -------------------------------------------------------------------------------- /tests/test_day_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_13.py -------------------------------------------------------------------------------- /tests/test_day_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_14.py -------------------------------------------------------------------------------- /tests/test_day_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_15.py -------------------------------------------------------------------------------- /tests/test_day_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_16.py -------------------------------------------------------------------------------- /tests/test_day_17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_17.py -------------------------------------------------------------------------------- /tests/test_day_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_18.py -------------------------------------------------------------------------------- /tests/test_day_19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_19.py -------------------------------------------------------------------------------- /tests/test_day_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_20.py -------------------------------------------------------------------------------- /tests/test_day_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_22.py -------------------------------------------------------------------------------- /tests/test_day_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_23.py -------------------------------------------------------------------------------- /tests/test_day_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_24.py -------------------------------------------------------------------------------- /tests/test_day_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_25.py -------------------------------------------------------------------------------- /tests/test_day_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_26.py -------------------------------------------------------------------------------- /tests/test_day_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_27.py -------------------------------------------------------------------------------- /tests/test_day_28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_28.py -------------------------------------------------------------------------------- /tests/test_day_29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_29.py -------------------------------------------------------------------------------- /tests/test_day_30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_30.py -------------------------------------------------------------------------------- /tests/test_day_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_31.py -------------------------------------------------------------------------------- /tests/test_day_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_32.py -------------------------------------------------------------------------------- /tests/test_day_33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_33.py -------------------------------------------------------------------------------- /tests/test_day_34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_34.py -------------------------------------------------------------------------------- /tests/test_day_35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_35.py -------------------------------------------------------------------------------- /tests/test_day_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_36.py -------------------------------------------------------------------------------- /tests/test_day_37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_37.py -------------------------------------------------------------------------------- /tests/test_day_38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_38.py -------------------------------------------------------------------------------- /tests/test_day_39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_39.py -------------------------------------------------------------------------------- /tests/test_day_40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_40.py -------------------------------------------------------------------------------- /tests/test_day_41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_41.py -------------------------------------------------------------------------------- /tests/test_day_42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_42.py -------------------------------------------------------------------------------- /tests/test_day_43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_43.py -------------------------------------------------------------------------------- /tests/test_day_44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_44.py -------------------------------------------------------------------------------- /tests/test_day_45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_45.py -------------------------------------------------------------------------------- /tests/test_day_46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_46.py -------------------------------------------------------------------------------- /tests/test_day_47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_47.py -------------------------------------------------------------------------------- /tests/test_day_48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_48.py -------------------------------------------------------------------------------- /tests/test_day_49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_49.py -------------------------------------------------------------------------------- /tests/test_day_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_50.py -------------------------------------------------------------------------------- /tests/test_day_51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_51.py -------------------------------------------------------------------------------- /tests/test_day_52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_52.py -------------------------------------------------------------------------------- /tests/test_day_53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_53.py -------------------------------------------------------------------------------- /tests/test_day_54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_54.py -------------------------------------------------------------------------------- /tests/test_day_55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_55.py -------------------------------------------------------------------------------- /tests/test_day_56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_56.py -------------------------------------------------------------------------------- /tests/test_day_57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_57.py -------------------------------------------------------------------------------- /tests/test_day_58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_58.py -------------------------------------------------------------------------------- /tests/test_day_59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_59.py -------------------------------------------------------------------------------- /tests/test_day_60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_60.py -------------------------------------------------------------------------------- /tests/test_day_61.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_61.py -------------------------------------------------------------------------------- /tests/test_day_62.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_62.py -------------------------------------------------------------------------------- /tests/test_day_63.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_63.py -------------------------------------------------------------------------------- /tests/test_day_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_64.py -------------------------------------------------------------------------------- /tests/test_day_65.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_65.py -------------------------------------------------------------------------------- /tests/test_day_66.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_66.py -------------------------------------------------------------------------------- /tests/test_day_67.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_67.py -------------------------------------------------------------------------------- /tests/test_day_68.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_68.py -------------------------------------------------------------------------------- /tests/test_day_69.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_69.py -------------------------------------------------------------------------------- /tests/test_day_70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_70.py -------------------------------------------------------------------------------- /tests/test_day_71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_71.py -------------------------------------------------------------------------------- /tests/test_day_72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_72.py -------------------------------------------------------------------------------- /tests/test_day_73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_73.py -------------------------------------------------------------------------------- /tests/test_day_74.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_74.py -------------------------------------------------------------------------------- /tests/test_day_75.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_75.py -------------------------------------------------------------------------------- /tests/test_day_76.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_76.py -------------------------------------------------------------------------------- /tests/test_day_77.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_77.py -------------------------------------------------------------------------------- /tests/test_day_78.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_78.py -------------------------------------------------------------------------------- /tests/test_day_79.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_79.py -------------------------------------------------------------------------------- /tests/test_day_80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_80.py -------------------------------------------------------------------------------- /tests/test_day_81.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_81.py -------------------------------------------------------------------------------- /tests/test_day_82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_82.py -------------------------------------------------------------------------------- /tests/test_day_83.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_83.py -------------------------------------------------------------------------------- /tests/test_day_84.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_day_84.py -------------------------------------------------------------------------------- /tests/test_docs_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tests/test_docs_build.py -------------------------------------------------------------------------------- /tools/DEV_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tools/DEV_NOTES.md -------------------------------------------------------------------------------- /tools/benchmark_lessons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tools/benchmark_lessons.py -------------------------------------------------------------------------------- /tools/build_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tools/build_docs.py -------------------------------------------------------------------------------- /tools/convert_lessons_to_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tools/convert_lessons_to_notebooks.py -------------------------------------------------------------------------------- /tools/templates/accessible_html/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saint2706/Coding-For-MBA/HEAD/tools/templates/accessible_html/index.html.j2 --------------------------------------------------------------------------------