All Projects → tallguyjenks → RWorkflow

tallguyjenks / RWorkflow

Licence: other
📑 My approach to an analysis or product produced with R

Projects that are alternatives of or similar to RWorkflow

starter-hugo-research-group
👥 轻松创建研究组或组织网站 Easily create a stunning Research Group, Team, or Business Website with no-code
Stars: ✭ 148 (+492%)
Mutual labels:  academic, academia
Starter Academic
🎓 Easily create a beautiful academic résumé or educational website using Hugo, GitHub, and Netlify
Stars: ✭ 1,158 (+4532%)
Mutual labels:  rstudio, academic
Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+24272%)
Mutual labels:  rstudio, academic
snorkeling
Extracting biomedical relationships from literature with Snorkel 🏊
Stars: ✭ 56 (+124%)
Mutual labels:  workflow, analysis
Cytoflow
A Python toolbox for quantitative, reproducible flow cytometry analysis
Stars: ✭ 90 (+260%)
Mutual labels:  workflow, analysis
Sooty
The SOC Analysts all-in-one CLI tool to automate and speed up workflow.
Stars: ✭ 867 (+3368%)
Mutual labels:  workflow, analysis
Tidyversity
🎓 Tidy tools for academics
Stars: ✭ 155 (+520%)
Mutual labels:  analysis, academic
wowchemy-hugo-themes
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, easily build with blocks! 创建在线课程,学术简历或初创网站。#OpenScience
Stars: ✭ 6,891 (+27464%)
Mutual labels:  rstudio, academic
fla.sh
💥 flashcards in your terminal
Stars: ✭ 99 (+296%)
Mutual labels:  academic, bryan-jenks
craft-text-detector
Packaged, Pytorch-based, easy to use, cross-platform version of the CRAFT text detector
Stars: ✭ 151 (+504%)
Mutual labels:  workflow
swift-proposal-analyzer
An analysis of Swift Evolution proposals
Stars: ✭ 58 (+132%)
Mutual labels:  analysis
bootstrap-gulp-starter-template
Bootstrap 4 + Gulp 4 + Panini for improve front-end development workflow
Stars: ✭ 67 (+168%)
Mutual labels:  workflow
jekyll-deploy-action
🪂 A Github Action to deploy the Jekyll site conveniently for GitHub Pages.
Stars: ✭ 162 (+548%)
Mutual labels:  workflow
version-check
An action that allows you to check whether your npm package version has been updated
Stars: ✭ 65 (+160%)
Mutual labels:  workflow
polystores
A library for performing hyperparameter optimization
Stars: ✭ 48 (+92%)
Mutual labels:  workflow
meta
Official Git repository of R package meta
Stars: ✭ 48 (+92%)
Mutual labels:  rstudio
MGT-python
Musical Gestures Toolbox for Python
Stars: ✭ 25 (+0%)
Mutual labels:  analysis
mdtoolbox
MDToolbox: A MATLAB/Octave toolbox for statistical analysis of molecular dynamics trajectories
Stars: ✭ 21 (-16%)
Mutual labels:  analysis
drupal9ci
One-line installers for implementing Continuous Integration in Drupal 9
Stars: ✭ 137 (+448%)
Mutual labels:  workflow
alfred-microsoft-onenote-navigator
Use Alfred to browse through your Microsoft OneNote notebooks, section groups and sections and then jump to them instantly.
Stars: ✭ 52 (+108%)
Mutual labels:  workflow

Table Of Contents

SETUP

Return To Table Of Contents

Create a new package file

Return To Table Of Contents

file --> New Project --> New/Existing Directory --> R Package

Fill out description file

Return To Table Of Contents

Package: workflow
Title: A Robust workflow for software driven data analysis
Version: 0.0.1
Authors@R:
    person(given = "Bryan",
           family = "Jenks",
           role = c("aut", "cre"),
           email = "[email protected]",
           comment = c(ORCID = "0000-0002-9604-3069"))
Description: A Robust document for discussing a great way to structure analysis.
License: MIT file LICENSE # The license can be written out in the 'LICENSE' File
Encoding: UTF-8
LazyData: true
# Roxygen: list(markdown = TRUE) if you want markdown support for the documentation use this option

use the package loading script

Return To Table Of Contents

This way it just loops over a vector of the packages and installs what isnt alread installed and loads what is installed so it is available for the RMarkdown product.

packages <- c("tidyverse", "here", "todor", "lintr", "DT", "kableExtra", "roxygen2", "testthat", "usethis", "devtools", "tidylog")
xfun::pkg_attach2(packages, message = FALSE)

If performing a reporoducable analysis utilize packrat for a snapshot of your utilized packages / libraries.

# setup packrat snapshot in your new package/project
packrat::init(here::here())
# To add package for use to your project in this snapshot environment you install as normal:
install.packages("runes")
# when you're ready to save your snapshot to packrat for your reproducable project:
packrat::snapshot()
# to check the status of your snapshot
packrat::status()
# to remove a package from your snapshot
remove.packages("runes")
# and to restore one
packrat::restore()
# if packages are not used:
# Use packrat::clean() to remove them. Or, if they are actually needed
# by your project, add `library(packagename)` calls to a .R file
# somewhere in your project.

There are also plenty of GUI options for working with packrat in RStudio

TODO management

Return To Table Of Contents

If you have multiple files or a large RMarkdown document and you use commented <!-- TODO/BUG/FIXME/HACK --> items and want to see where all of them are then use the todor package with the following snippet

# Create a vector of document paths in the current directory (use with HERE() package)
# This is great for multiple R markdown documents
docs <- dir(pattern = "*.Rmd") %>%
    as.vector()
todor::todor(file = docs)

# A less hacky way of checking a whole PACKAGE for TODO's is just the built in function:
todor::todor_package()

Create Data directory

Return To Table Of Contents

Create the Data/ directory to hold raw data files that will be cleaned and processed by R scripts in the R/ directory for the RMarkdown document when sourced.

To save tibbles or data from R that has already been tidy-ified to make sure they dont lose their specifications i.e. that a column is a factor, etc etc use the {feather} package.

library(feather)
feather::write_feather(<x>,<path>)
feather::read_feather(<path>)

Update Rbuildignore

Return To Table Of Contents

When building a package for installation and reproducablilty have the build process ignore certain files, driectories and other things that it shouldn't touch during the build process

OPTIONAL

if keeping the package in GIT version control then also update the .gitignore

Ethics

Return To Table Of Contents

"deon is a command line tool that allows you to easily add an ethics checklist to your data science projects. The conversation about ethics in data science, machine learning, and AI is increasingly important. The goal of deon is to push that conversation forward and provide concrete, actionable reminders to the developers that have influence over how data science gets done."

deon

Deon badge

ANALYSIS

Return To Table Of Contents

Begin Writing Your Content

Return To Table Of Contents

In your RMarkdown Document you can begin filling in your content with what ever template or way you prefer to write in your document. There are many ways to convey the results and workflow of your analysis, you have a package, a single stand alone RMarkdown document, a bookdown book, HTML output only, theres a million ways to perofrm an analysis and this is just going to be a document about some of the more common parts of the workflow with nuances left to personalization and preference.

Never use require() or library() in a packaged analysis, put these items in the DESCRIPTION file as imports or suggests to import them

For local file management in the .Rproj project directory, i and many many others prefer to use the here package that uses the project root directory as the relative root and use relative directory references to reference other files in your package.

Visualization

Return To Table Of Contents

Two very great addins in RStudio for graphically editing and creating initial plots and visualizations without having to type all the code from scratch:

  • esquisse --- Initial plot creation to minimize boiler plate writing
  • ggedit --- Editing created plots graphically
  • colourpicker --- Custom color code pickers for themes and general use

Create New R Function as needed

Return To Table Of Contents

functions into seperate R script files in R/ and if there are a lot of functions group their filenames with some sort of convention that groups them AAA_Function.R

Write Unit Tests

Return To Table Of Contents

To start using unit tests devtools::use_testthat()

to run all current tests Ctrl + Shift + T or devtools::test()

Test Fix Iterate

Return To Table Of Contents

Run your tests on your developing functions and fix any ERRORS, WARNINGS, or NOTES that come up

To find answers to your errors you can use the tracestack package to find the last error message on stackoverflow

Document Completed R Functions

Return To Table Of Contents

Use roxygen2 documentation on all functions script files in R/

  • First line: Title
  • Second line: Description
  • Subsequent lines: Details

A link to Cheat Sheet Documentation

Bare Bones Template:

#' @title       # This Is the Name of your funtion
#' @description # This is a good explanation of your function
#' @detail      # This is each granular detail of your function (there can be multiple of these sections)
#' @param       # This is a parameter of your function
#' @return      # This is what your function returns
#' @export      # This is how your function gets exported to the NAMESPACE and is available for use after library() otherwise you use :::

Documentation Info

Compile Your Documentation

Return To Table Of Contents

Run devtools::document() (or press Ctrl + Shift + D in RStudio) to compile your documents into function documentation that appears in the man/ directory and the NAMESPACE that contains all @export functions.

MODELING

beyond just the lm() function, you can make a model object by model <- lm(var1 ~ var2 + var4, data) and then wrap that model object with

performance::check_model(model)

and the output is graphical and awesomely useful. it is a bit slow though

REFERENCES

Return To Table Of Contents

Writing a bibliography for your R packages

# automatically create a bib database for R packages
knitr::write_bib(c(
  .packages(), packages #this is made in the lib loading section
), 'packages.bib')

in your yaml portion of the RMarkdown document you can use a yaml array to contain multiple .bib files to have one solely for your R Packages that are generated from the code chunk above and also any other cited sources you wish to compile manually or otherwise. like so:

bibliography: [cited.bib, packages.bib]

and for packages, you can use this yaml trick to have all non-inline citations i.e. the R packages used, immediately cited at the end of the document:

nocite: '@*'

you can also use the {citr} package to use an RStudio addin for citations, Now in newer versions of RStudio this integrates seamlessly with Zotero.

REPRODUCABILITY

Return To Table Of Contents

One of the most important parts of science and academia is the ability for research or conclusions to be reproduced. People shouldn't be wondering what software you were using, or what versions of them you were running, and one way of capturing this information would be to capture your session info in a text document.

writeLines(capture.output(sessionInfo()), "sessionInfo.txt")

FINE TUNING

Return To Table Of Contents

with the profvis package you can select a chunk of code and in RStudio click the profile option and profile the selected code and show resource intensive code and tune them to be more efficient. Good background on this from HERE Another tool to test variations of a function to see which is the most maximally efficient is the microbenchmark package.

# this defaults to 100 iterations of each passed function call and will benchmark them
# and tells you which of the different variations are maximally efficient.
microbenchmark::microbenchmark(func1, ...)

CLEAN CODE

Return To Table Of Contents

Devtools Check

Return To Table Of Contents

To check if your pacakge is ready for distribution and installable use:

devtools::check(), or press Ctrl + Shift + E in RStudio. to check your package for ERRORS, WARNINGS, or NOTES

Lintr

Return To Table Of Contents

use lintr for linting your R code

# Good suggestions for making legible and consistently formatted code
lintr::lint_package()

A README

Return To Table Of Contents

Use README.md file for github or just general user info, even keep an .Rmd document that compiles to a markdown document if you so wish that can be used to explain the package to users in a medium --> long form format so the user knows what to do to reproduce the analysis or use the package.

Issue Templates

Return To Table Of Contents

IBM Watson

CHANGELOG

Return To Table Of Contents

Use NEWS.md as the CHANGELOG for your package

i start all changelogs with semantic versioning from the 'Keep a change log project' a snippet of that changelog might look like this:

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Summary

> Given a version number MAJOR.MINOR.PATCH, increment the:
>
> 1. MAJOR version when you make incompatible API changes,
> 2. MINOR version when you add functionality in a backwards compatible manner, and
> 3. PATCH version when you make backwards compatible bug fixes.
>
> Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

### Guiding Principles

> Changelogs are for _humans_, not machines.
> There should be an entry for every single version.
> The same types of changes should be grouped.
> Versions and sections should be linkable.
> The latest version comes first.
> The release date of each version is displayed.
> Mention whether you follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Types of changes

> Added for new features.
> Changed for changes in existing functionality.
> Deprecated for soon-to-be removed features.
> Removed for now removed features.
> Fixed for any bug fixes.
> Security in case of vulnerabilities.

## [Unreleased]

### Added

-

### Changed

-

### Deprecated

-

### Removed

-

### Fixed

-

### Security

-

## [0.0.1] - 2020-01-22

### Added

- Core functionality of a-z alphabet translation to Elder Futhark
- all special characters, numeric, or otherwise all ignored as pass through
- New function `runes_table()` create a 3 column data frame with the unicode sequence, transcription, and character of the entire Elder Futhark alphabet to be used for inputting into documents, reference, or any other purpose

### Changed

- new parameter to `runes()` `hide=FALSE` is now the default option but when set to true, the English 'x' & 'q' characters will not pass through the function and appear at all since there is no equivalent rune.
    + added unit tests to support this new parameter option

### Deprecated

-

### Removed

-

### Fixed

-

### Security

-

TIPS

Return To Table Of Contents

  • Using # TEXT ----- inside an R code chunk adds it to the table of contents of the RMarkdown document
  • Good websites for RDocumentation and Searching for R Resources
  • Date opertor with lubridate %m+% and %m-% to add a date part to a date that is wise to things like jan31st doesnt go to feb31st but to feb28/29th
  • if moving data between languages use feather package and .feather files to make the interchange

to be expounded on later:

Template package, project, document templates for my analyses

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].