Conversation
|
anjali-deshpande-hub
left a comment
There was a problem hiding this comment.
Please make corrections and re-submit.
|
Thank you for the notes, Anjali! |
anjali-deshpande-hub
left a comment
There was a problem hiding this comment.
I can see a valid notebook file (https://github.com/peeu32/python/blob/66d34b6c14d8486cf1091fde077d13f9894206c9/02_activities/assignments/assignment_2.ipynb). Looks good!
One last change. You have changes to assignment_1.ipynb in this branch and PR. It should only have assignment_2.ipynb changes. To fix this go over https://uoft-dsi-certificates.slack.com/archives/C080M1JFJ8G/p1733888574840979
|
Thanks, Anjali, for providing the commands. I have a few questions that I'd like to ask once you confirm there are no further changes, to avoid any confusion. |
|
Your command:
|
2.git commit -m "Revert assignment_1.ipynb to main branch": This command only commits changes to your local repository. It does not send anything to GitHub. The commit operation records changes to the file (assignment_1.ipynb in this case) in your local branch (assignment-2), but it stays on your local machine until you push it to GitHub. git push origin assignment-2: This pushes your local branch (assignment-2) to the remote repository (GitHub). This command uploads the committed changes (like the updated assignment_1.ipynb file) to GitHub, making them available on the remote repository. The command git checkout main -- assignment_1.ipynb checks out the file assignment_1.ipynb from the main branch and places it in your current working directory on your assignment-2 branch. This is why you see the file updated locally. I hope I have answered your question |
|
Thanks a ton Anjali :) |

What changes are you trying to make? (e.g. Adding or removing code, refactoring existing code, adding reports)
Creating a program to display data from a csv file, computing statistics from the data, detecting errors by checking the irregularities in patient data.
What did you learn from the changes you have made?
How to do the above.
Was there another approach you were thinking about making? If so, what approach(es) were you thinking of?
I did, then I researched why certain functions cannot be done as I was planning because of numpy foundations.
Were there any challenges? If so, what issue(s) did you face? How did you overcome it?
I did have faced challenges on github because of the file error.
How were these changes tested?
A reference to a related issue in your repository (if applicable)
Checklist