Skip to content

Instantly share code, notes, and snippets.

@bradlindblad
Created March 4, 2019 20:56
Show Gist options
  • Save bradlindblad/14c0fc55932d5ef1344af671e309bcb1 to your computer and use it in GitHub Desktop.
Save bradlindblad/14c0fc55932d5ef1344af671e309bcb1 to your computer and use it in GitHub Desktop.
full_template.Rmd
---
title: "Customer Service Survey EDA"
author: Brad Lindblad, MBA
output:
pdf_document:
number_sections: yes
toc: yes
html_notebook:
number_sections: yes
theme: journal
toc: yes
rmarkdown::html_document:
theme: cayman
prettydoc::html_pretty:
theme: cayman
number_sections: yes
toc: yes
header-includes:
- \setlength{\parindent}{2em}
- \setlength{\parskip}{0em}
date: September 20, 2018
always_allow_html: yes
bibliography: bibliography.bib
abstract: "Your text block here"
---
Writing Your Report
Now that you've done the necessary preparation, you can begin writing your report. To start, keep in mind there is a simple structure you should follow. Below you'll see the sections in order along with descriptions of each part.
Introduction
Summarize the purpose of the report and summarize the data / subject.
Include important contextual information about the reason for the report.
Summarize your analysis questions, your conclusions, and briefly outline the report.
Body - Four Sections
Data Section - Include written descriptions of data and follow with relevant spreadsheets.
Methods Section - Explain how you gathered and analyzed data.
Analysis Section - Explain what you analyzed. Include any charts here.
Results - Describe the results of your analysis.
Conclusions
Restate the questions from your introduction.
Restate important results.
Include any recommendations for additional data as needed.
Appendix
Include the details of your data and process here.
Include any secondary data, including references.
```{r echo=FALSE, message=FALSE, warning=FALSE}
# to show or hide code
knitr::opts_chunk$set(
echo = FALSE, message = FALSE, warning = FALSE
)
```
# Introduction
# Data
# Methods
# Analysis
# Results
# Conclusions
# Appendix
# References
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment