Skip to content

A collection of data science work preformed for COMSC.230

Notifications You must be signed in to change notification settings

michael-kudrik/forest_fire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

About the project

This project is a collaborative effort between Shawn and Myself for our principles of programming language final project. We will be using python with libraries such as numpy, pandas, etc.

Dataset used

We will be using the following dataset: https://archive.ics.uci.edu/dataset/162/forest+fires

Branches

main branch

  • From the main branch, run:
git checkout main
  • Push the branch to GitHub:
git push -u origin main

This is the main branch and should not be directly edited. Instead refer to working branch below. Main branch can be pushed to when something is finalized or close to.

working branch

  • From the main branch, run:
git checkout working
  • Push the branch to GitHub:
git push -u origin working

This branch will be dedicated to the current work being preformed.

feature branches:

You can further create "feature branches" for each task you're working on. This will help break down work into smaller, manageable pieces.

Example:

  • If you're working on calculating the mean of a dataset:
git checkout -b feature/mean
  • If Mike is working on something of his own he can do this:
git checkout -b feature/mikeswork

After completing a feature, you both can create a pull request (PR) to merge the feature branch back into the respective main branch (feature or working). See here

About

A collection of data science work preformed for COMSC.230

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published