aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-04-19 20:28:15 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-04-19 20:31:27 -0400
commit4b34ef523dc51cf6a0df4fe91150aa9c5e4ffc48 (patch)
tree18030395a9613475b8eeb3390440eb8a655ecd38
parent906ae72b21f630b5c9ff328d3ee51e5e366acb9d (diff)
initial files for analysis
-rw-r--r--.gitignore2
-rw-r--r--analysis/analysis.Rmd19
-rw-r--r--makefile15
3 files changed, 33 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 7535ece..0b894d2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
# Presentation Stuff
-presentation/presentation.html
+*.html
# Prerequisites
*.d
diff --git a/analysis/analysis.Rmd b/analysis/analysis.Rmd
new file mode 100644
index 0000000..b78d169
--- /dev/null
+++ b/analysis/analysis.Rmd
@@ -0,0 +1,19 @@
+---
+title: "HPC Final Project Analysis"
+author:
+- "JP Appel"
+output:
+ html_document:
+ toc: true
+ toc_float: true
+ number_sections: false
+ theme: united
+ highlight: tango
+ code_folding: show
+ fig_width: 10
+ fig_height: 8
+ fig_caption: true
+---
+
+```{r setup, echo=FALSE}
+```
diff --git a/makefile b/makefile
index 445e881..14478ef 100644
--- a/makefile
+++ b/makefile
@@ -4,6 +4,9 @@ LDFLAGS :=
all:
+##############
+# Programs #
+##############
################
# Animations #
@@ -18,7 +21,15 @@ presentation: presentation/presentation.html
presentation/presentation.html: presentation/presentation.md
pandoc -t revealjs -so $@ $<
+##############
+# Analysis #
+##############
+
+analysis: analysis/analysis.html
+
+analysis/analysis.html: analysis/analysis.Rmd # TODO: add compile command
+
clean:
- rm -rf presentation/presentation.html
+ rm -rf presentation/presentation.html analysis/analysis.html
-.PHONY: all presentation clean
+.PHONY: all presentation analysis clean