All Projects → benmarwick → researchcompendium

benmarwick / researchcompendium

Licence: other
NOTE: This repo is archived. Please see https://github.com/benmarwick/rrtools for my current approach

Programming Languages

r
7636 projects
TeX
3793 projects

Projects that are alternatives of or similar to researchcompendium

ReproducibleScience
Short course on reproducible science: what, why, how
Stars: ✭ 23 (-11.54%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
Reprozip
ReproZip is a tool that simplifies the process of creating reproducible experiments from command-line executions, a frequently-used common denominator in computational science.
Stars: ✭ 231 (+788.46%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
r10e-ds-py
Reproducible Data Science in Python (SciPy 2019 Tutorial)
Stars: ✭ 12 (-53.85%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
papers-as-modules
Software Papers as Software Modules: Towards a Culture of Reusable Results
Stars: ✭ 18 (-30.77%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
Rrtools
rrtools: Tools for Writing Reproducible Research in R
Stars: ✭ 508 (+1853.85%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
Sacred
Sacred is a tool to help you configure, organize, log and reproduce experiments developed at IDSIA.
Stars: ✭ 3,678 (+14046.15%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
reprozip-examples
Examples and demos for ReproZip
Stars: ✭ 13 (-50%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
Awesome Reproducible Research
A curated list of reproducible research case studies, projects, tutorials, and media
Stars: ✭ 106 (+307.69%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
ukbrest
ukbREST: efficient and streamlined data access for reproducible research of large biobanks
Stars: ✭ 32 (+23.08%)
Mutual labels:  reproducible-research, reproducible-science, reproducibility
hydra-zen
Pythonic functions for creating and enhancing Hydra applications
Stars: ✭ 165 (+534.62%)
Mutual labels:  reproducible-science, reproducibility
benchmark VAE
Unifying Variational Autoencoder (VAE) implementations in Pytorch (NeurIPS 2022)
Stars: ✭ 1,211 (+4557.69%)
Mutual labels:  reproducible-research, reproducibility
reproducibility-guide
⛔ ARCHIVED ⛔
Stars: ✭ 119 (+357.69%)
Mutual labels:  reproducible-research, reproducibility
targets-tutorial
Short course on the targets R package
Stars: ✭ 87 (+234.62%)
Mutual labels:  reproducible-research, reproducibility
fertile
creating optimal conditions for reproducibility
Stars: ✭ 52 (+100%)
Mutual labels:  reproducible-research, reproducibility
targets-minimal
A minimal example data analysis project with the targets R package
Stars: ✭ 50 (+92.31%)
Mutual labels:  reproducible-research, reproducibility
Containerit
Package an R workspace and all dependencies as a Docker container
Stars: ✭ 248 (+853.85%)
Mutual labels:  reproducible-research, reproducible-science
binderhub-deploy
Deploy a BinderHub from scratch on Microsoft Azure
Stars: ✭ 27 (+3.85%)
Mutual labels:  reproducible-research, reproducibility
analysis-flow
Data Analysis Workflows & Reproducibility Learning Resources
Stars: ✭ 108 (+315.38%)
Mutual labels:  reproducible-science, reproducibility
software-dev
Coding Standards for the USC Biostats group
Stars: ✭ 33 (+26.92%)
Mutual labels:  reproducible-research, reproducibility
openscience
Empirical Software Engineering journal (EMSE) open science and reproducible research initiative
Stars: ✭ 28 (+7.69%)
Mutual labels:  reproducible-research, reproducible-science

Last-changedate minimal R version Licence Travis-CI Build Status Circle CI codecov.io ORCiD

Research compendium for a report on xxxx

Compendium DOI:

http://dx.doi.org/xxxxxxx

The files at the URL above will generate the results as found in the publication. The files hosted at github.com/benmarwick/researchcompendium are the development versions and may have changed since the report was published

Authors of this repository:

Ben Marwick ([email protected])

Published in:

Marwick, B, xxxxx

Overview of contents

This repository is our research compendium for our analysis of xxxx. The compendium contains all data, code, and text associated with the publication. The Rmd files in the analysis/paper/ directory contain details of how all the analyses reported in the paper were conducted, as well as instructions on how to rerun the analysis to reproduce the results. The data/ directory in the analysis/ directory contains all the raw data.

The supplementary files

The analysis/ directory contains:

  • the manuscript as submitted (in MS Word format) and it's Rmd source file
  • all the data files (in CSV format, in the data/ directory)
  • supplementary information source files (in R markdown format) and executed versions
  • all the figures that are included in the paper (in the figures/ directory)

The R package

This repository is organized as an R package. There are no actual R functions in this package - all the R code is in the Rmd file. I simply used the R package structure to help manage dependencies, to take advantage of continuous integration for automated code testing, and so I didn't have to think too much about how to organise the files.

To download the package source as you see it on GitHub, for offline browsing, use this line at the shell prompt (assuming you have Git installed on your computer):

git clone https://github.com/benmarwick/researchcompendium.git

Once the download is complete, open the researchcompendium.Rproj in RStudio to begin working with the package and compendium files.

The package has a number of dependencies on other R packages, and programs outside of R. These are listed at the bottom of this README. Installing these can be time-consuming and complicated, so we've done two things to simpify access to the compendium. First is the packrat directory, which contains the source code for all the packages we depend on. If all works well, these will be installed on your computer when you open researchcompendium.Rproj in RStudio. Second is our Docker image that includes all the necessary software, code and data to run our analysis. The Docker image may give a quicker entry point to the project, and is more self-contained, so might save some fiddling with installing things.

The Docker image

A Docker image is a lightweight GNU/Linux virtual computer that can be run as a piece of software on Windows and OSX (and other Linux systems). To capture the complete computational environment used for this project we have a Dockerfile that specifies how to make the Docker image that we developed this project in. The Docker image includes all of the software dependencies needed to run the code in this project, as well as the R package and other compendium files. To launch the Docker image for this project, first, install Docker on your computer. At the Docker prompt, enter:

docker run -dp 8787:8787 benmarwick/researchcompendium

This will start a server instance of RStudio. Then open your web browser at localhost:8787 or or run docker-machine ip default in the shell to find the correct IP address, and log in with rstudio/rstudio.

Once logged in, use the Files pane (bottom right) to navigate to / (the root directory), then open the folder for this project, and open the .Rproj file for this project. Once that's open, you'll see the analysis/paper directory in the Files pane where you can find the R markdown document, and knit them to produce the results in the paper. More information about using RStudio in Docker is avaiable at the Rocker wiki pages.

We developed and tested the package on this Docker container, so this is the only platform that We're confident it works on, and so recommend to anyone wanting to use this package to generate the vignette, etc.

Licenses

Manuscript: CC-BY-4.0

Code: MIT year: 2016, copyright holder: Ben Marwick

Data: CC-0 attribution requested in reuse

Dependencies

I used RStudio on Ubuntu 16.04 and Windows 7. See the colophon section of the docx file in analysis/paper for a full list of the packages that this project depends on.

Contact

Ben Marwick, Associate Professor, Department of Anthropology Denny Hall 117, Box 353100, University of Washington Seattle, WA 98195-3100 USA

  1. (+1) 206.552.9450 e. [email protected]
  2. (+1) 206.543.3285 w. http://faculty.washington.edu/bmarwick/
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].