This is the central repository for submitting homework for the Introduction to Data Science: Intensive Course.
To ensure smooth and organized submissions, all students must submit their homework via one shared GitHub repository. Each student will create their own branch for submission. Please follow the instructions below to properly submit your work.
- Go to the shared GitHub repository https://github.com/Myanmar-Data-Tech/MMDT_2025_DSAN101.
- Click the “Fork” button at the top-right corner to create a personal copy of the repository.
Once you've forked the repository, clone it to your local machine:
git clone https://github.com/Myanmar-Data-Tech/MMDT_2025_DSAN101.git
Create a new branch using your name to clearly identify your submission:
git checkout -b yourname
Example:
git checkout -b alex-chen
- Complete the homework locally (e.g.,
<your-name>_Ex01.ipynb
). - Put your completed notebook or code in a folder named
<your-name>
. - Add your reflection report as
report.md
orreport.pdf
in the same folder.
After adding your work, commit and push your changes to your branch:
git add .
git commit -m "Completed Homework 01 and reflection"
git push origin yourname
- Go to your repo.
- Click “Compare & pull request”.
- Title the pull request as:
<Mid-term> Project Submission - Your Name
- Confirm your changes and submit the pull request to the main repository.
- Forked the repo
- Created a personal branch (e.g.,
yourname
) - Added all required files in the
[Yourname]/
folder - Wrote and included the reflection (≤300 words)
- Committed & pushed changes
- Opened a pull request to the main repository