Skip to content

AustinB2319/DS-2002-F25

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

289 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DS-2002-F25

Welcome to DS2002 Data Science Systems!

This repository has been created to serve as a centralized location for the Fall 2025 students in my DS 2002 (Data Science Systems) course, at the University of Virginia's School of Data Science.

This repository tracks your working environment during this course. Some course material and tools will be distributed in this way so that we all have a common set of tools, scripts, and datasets.

This requires that you clone and stay current with the course code respository and have the appropriate tools to complete exercises.

Updating your fork

To stay current with new releases into the course repository, follow these steps:

  1. Add an upstream source
git remote add upstream git@github.com:austin-t-rivera/DS-2002-F25.git
  1. Fetch from the upstream branch:
git fetch upstream
  1. Merge your branch with the upstream branch.
git merge upstream/main main

This can be run in a single block:

git remote add upstream git@github.com:austin-t-rivera/DS-2002-F25.git
git fetch upstream
git merge upstream/main main

Saving your changes

If you generate code, scripts, data files, etc. that you would like to keep, simply add, commit, and push the files back to your fork of the repository:

git add .
git commit -m "Some meaningful message"
git push origin main

Remember that changes you commit and push will be saved to YOUR fork of the repository.

About

This repository has been created to serve as a centralized location for the Fall 2025 students in my DS 2002 (Data Science Systems) course, at the University of Virginia's School of Data Science.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 42.2%
  • Jupyter Notebook 36.2%
  • Shell 14.9%
  • Perl 5.3%
  • Dockerfile 1.4%