This repo contains a collection of Izzy Illari's work for DATS 6101 Spring 2020 at GWU. You may contact me at [email protected] or [email protected] for more info.
Also included is the work on the class project with fellow teammates Lucia Illari ([email protected]), Lydia Teinfalt ([email protected]), Omar Qusous ([email protected]), and Obumneke Amadi ([email protected]).
Note: Obumneke left part way through the project, but her work is still shown for the record.
To see a live version of the final project write up please go here here.
To clone this repo, you may use GitHub Desktop, or terminal. If using terminal, the following command will clone this repository:
git clone https://github.com/IzzyIllari/DATS6101-Spring2020-IntroDataSci.git
This will create a directory called "DATS6101-Spring2020-IntroDataSci". Inside that directory, you will find all my files and folders.
If the repo is newer than your local version, you can't push your changes, and you will receive a log telling you to merge. You can use the following command to saty up to date:
git pull
Note: This will open an editor with a merge message, which you don't need to edit (just exit the editor).
Use add to add files to the repo:
git add filename
or rm to remove files from the repo:
git rm filename
When checking the status with git pull there will be an A for "added" files and a D for "deleted" files.
Check which files you have changed with the following command:
git status
To commit changes to a particular file, don't forget:
git commit filename -m"nice comment"
To commit changes to all the files use the -a flag:
git commit -a -m"nice comment"
To push to the repository use the following command:
git push
This will upload your changes.