Skip to content

pds2021/a5-bene401

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Assignment 5

Practical Data Science (PDS) 2020/2021, University of Wuerzburg

Deadline 21.01.2021, 10am

Instructions (Google Colab)

Note: Make sure that you are logged in with your Google Account; Link Google Colab with your Github account to access private repositories.

  1. Create a branch assignment_5
    • Click on Branch: master and create branch assignment_5
  2. Open Assingment Notebook on Google Colab
    • Select the Github tab and tick Include private repos
    • Search for "pds2021" and select your repository and branch
  3. Work on the assignment and push changes to branch assignment_5
    • Click File -> Save a copy on Github
    • Check Include a link to Colaboratory
  4. Send a Pull Request to merge your final notebook with master

Instructions (Local)

  1. Clone repository
git clone <url to repository> 
# e.g.
git clone https://github.com/wi3jmu/PDS1920_A0.git

  1. Change working directory
cd <folder name>

  1. Create a branch "assignment_5"
git checkout -b assignment_5

  1. Work on the assignment and push changes to branch, e.g.
git add <notebook name>
git commit -m 'Assingment complete'
git push origin assignment_5

  1. Send a Pull Request to merge your final notebook with master