This repository is a template for computational project 1 in NPRE 247.
To submit your project, you'll need to learn about git and github. It's not as intimidating as it seems, and your CAs can help you in the computer lab. Also, Prof. Huff can help you by appointment.
To help you figure git out on your own, here are some resources:
- Download your assignment repository. (Use
git clone.) - Delete the report template you aren't planning to use. (Use
git rm.) - Commit this change (Use
git commit.) - Sync this change to your fork (Use
git push.)
There is a 'report' directory.
- It contains 2 document templates (one .docx and one .tex file) for your convenience. The tex file has an associated .bib file to hold references. You can learn about .bib (bibtex) files online.
- You can start with the word doc or the LaTeX document and edit from there.
- If you prefer some other format (e.g. markdown), feel free to use it as long as a .pdf can be created with that format (e.g. via pandoc).
- The report directory must include at least a pdf file.
- There is a 'code' directory. It contains nothing.
- You should place all of your code in this directory.
- Don't forget to
git addgit commitandgit pushall of the files you want to include.
- There is an 'output' directory. It contains nothing.
- This is where you can optionally place the output files and plots generated by your code.
- Don't forget to
git addgit commitandgit pushall of the files you want to include.