Manuscript/Report Template for a Data Analysis Project

Author

Taylor Glass

Published

April 12, 2024

1 Note: Cora Hirst contributed to this exercise.

The structure below is one possible setup for a data analysis project (including the course project). For a manuscript, adjust as needed. You don’t need to have exactly these sections, but the content covering those sections should be addressed.

This uses MS Word as output format. See here for more information. You can switch to other formats, like html or pdf. See the Quarto documentation for other formats.

2 Summary/Abstract

Write a summary of your project.

3 Introduction

3.1 General Background Information

Provide enough background on your topic that others can understand the why and how of your analysis

3.2 Description of data and data source

Describe what the data is, what it contains, where it is from, etc. Eventually this might be part of a methods section.

3.3 Questions/Hypotheses to be addressed

State the research questions you plan to answer with this analysis.

To cite other work (important everywhere, but likely happens first in introduction), make sure your references are in the bibtex file specified in the YAML header above (here dataanalysis_template_references.bib) and have the right bibtex key. Then you can include like this:

Examples of reproducible research projects can for instance be found in (McKay, Ebell, Billings, et al., 2020; McKay, Ebell, Dale, Shen, & Handel, 2020)

4 Methods

Describe your methods. That should describe the data, the cleaning processes, and the analysis approaches. You might want to provide a shorter description here and all the details in the supplement.

4.1 Data aquisition

As applicable, explain where and how you got the data. If you directly import the data from an online source, you can combine this section with the next.

4.2 Data import and cleaning

Write code that reads in the file and cleans it so it’s ready for analysis. Since this will be fairly long code for most datasets, it might be a good idea to have it in one or several R scripts. If that is the case, explain here briefly what kind of cleaning/processing you do, and provide more details and well documented code somewhere (e.g. as supplement in a paper). All materials, including files that contain code, should be commented well so everyone can follow along.

4.3 Statistical analysis

Explain anything related to your statistical analyses.

5 Results

5.1 Exploratory/Descriptive analysis

Use a combination of text/tables/figures to explore and describe your data. Show the most important descriptive results here. Additional ones should go in the supplement. Even more can be in the R and Quarto files that are part of your project.

Table 1 shows a summary of the data.

Note the loading of the data providing a relative path using the ../../ notation. (Two dots means a folder up). You never want to specify an absolute path like C:\ahandel\myproject\results\ because if you share this with someone, it won’t work for them since they don’t have that path. You can also use the here R package to create paths. See examples of that below. I recommend the here package, but I’m showing the other approach here just in case you encounter it.

Table 1: Data summary table.
skim_type skim_variable n_missing complete_rate factor.ordered factor.n_unique factor.top_counts numeric.mean numeric.sd numeric.p0 numeric.p25 numeric.p50 numeric.p75 numeric.p100 numeric.hist
factor Gender 0 1 FALSE 3 M: 4, F: 3, O: 2 NA NA NA NA NA NA NA NA
numeric Height 0 1 NA NA NA 165.66667 15.97655 133 156 166 178 183 ▂▁▃▃▇
numeric Weight 0 1 NA NA NA 70.11111 21.24526 45 55 70 80 110 ▇▂▃▂▂

5.2 Basic statistical analysis

To get some further insight into your data, if reasonable you could compute simple statistics (e.g. simple models with 1 predictor) to look for associations between your outcome(s) and each individual predictor variable. Though note that unless you pre-specified the outcome and main exposure, any “p<0.05 means statistical significance” interpretation is not valid.

Figure 1 shows a scatterplot figure produced by one of the R scripts.

Figure 1: Height and weight stratified by gender.

Figure 2 shows a boxplot figure produced by one of the R scripts. Each boxplot represents the distribution of height for a specific race. The average height is highest among Black participants, and average height seems to be approximately the same across the other three races included, which are White, American Indian and Alaska Native, and Asian. The boxplot for American Indian and Alaska Native is not helpful because there is only one observation for this racial category, so there is no additional data to display besides the height of the one AIAN observation.

Figure 2: Height statified by race.

Figure 3 shows a scatterplot figure produced by one of the R scripts. The scatterplot has been fitted with a line that displays the relationship between the two numerical variables along with a shaded area that represents the confidence interval around the estimates. As weight increases across the x-axis, age decreases. This observation is counter intuitive because most people gain weight as they age, which suggests there could be an issue with the data.

Figure 3: Plot of age by weight.

5.3 Full analysis

Use one or several suitable statistical/machine learning methods to analyze your data and to produce meaningful figures, tables, etc. This might again be code that is best placed in one or several separate R scripts that need to be well documented. You want the code to produce figures and data ready for display as tables, and save those. Then you load them here.

Example Table 2 shows a summary of a linear model fit.

Table 2: Linear model fit table.
term estimate std.error statistic p.value
(Intercept) 149.2726967 23.3823360 6.3839942 0.0013962
Weight 0.2623972 0.3512436 0.7470519 0.4886517
GenderM -2.1244913 15.5488953 -0.1366329 0.8966520
GenderO -4.7644739 19.0114155 -0.2506112 0.8120871

Example Table 3 shows a summary of another linear model fit with Height as the outcome with Race and Age as predictors. The table displays an estimate for each component of the linear model, along with the standard error, test statistic, and p-value for the estimate to provide context for its usefulness. The p-values for each variable are extremely large, which shows we fail to reject the null hypothesis that each of these variables are not statistically significantly associated with height according to this dataset.

Table 3: Second linear model fit table.
term estimate std.error statistic p.value
(Intercept) 167.5410539 20.2483086 8.2743234 0.0011643
RaceAIAN -0.5460615 26.1275182 -0.0208999 0.9843265
RaceB -1.1524256 18.6903702 -0.0616588 0.9537925
RaceW -2.0799817 20.6436086 -0.1007567 0.9245919
Age -0.0226135 0.4010505 -0.0563856 0.9577388

6 Discussion

6.1 Summary and Interpretation

Summarize what you did, what you found and what it means.

6.2 Strengths and Limitations

Discuss what you perceive as strengths and limitations of your analysis.

6.3 Conclusions

What are the main take-home messages?

Include citations in your Rmd file using bibtex, the list of references will automatically be placed at the end

This paper (Leek & Peng, 2015) discusses types of analyses.

These papers (McKay, Ebell, Billings, et al., 2020; McKay, Ebell, Dale, et al., 2020) are good examples of papers published using a fully reproducible setup similar to the one shown in this template.

Note that this cited reference will show up at the end of the document, the reference formatting is determined by the CSL file specified in the YAML header. Many more style files for almost any journal are available. You also specify the location of your bibtex reference file in the YAML. You can call your reference file anything you like, I just used the generic word references.bib but giving it a more descriptive name is probably better.

7 References

Leek, J. T., & Peng, R. D. (2015). Statistics. What is the question? Science (New York, N.Y.), 347(6228), 1314–1315. https://doi.org/10.1126/science.aaa6146
McKay, B., Ebell, M., Billings, W. Z., Dale, A. P., Shen, Y., & Handel, A. (2020). Associations Between Relative Viral Load at Diagnosis and Influenza A Symptoms and Recovery. Open Forum Infectious Diseases, 7(11), ofaa494. https://doi.org/10.1093/ofid/ofaa494
McKay, B., Ebell, M., Dale, A. P., Shen, Y., & Handel, A. (2020). Virulence-mediated infectiousness and activity trade-offs and their impact on transmission potential of influenza patients. Proceedings. Biological Sciences, 287(1927), 20200496. https://doi.org/10.1098/rspb.2020.0496