Skip to content

Instantly share code, notes, and snippets.

View eyayaw's full-sized avatar

Eyayaw Beze eyayaw

View GitHub Profile

App Install Plan

Critical

@eyayaw
eyayaw / r_python_homebrew.sh
Created May 26, 2020 18:52 — forked from pachadotdev/r_python_homebrew.sh
Install R and Python via Homebrew
# See http://pacha.hk/2017-07-12_r_and_python_via_homebrew.html
# XCode CLT
xcode-select --install
# Update Homebrew and add formulae
brew update
# Check for broken dependencies and/or outdated packages
brew doctor
# =======================================
# = Enhancements to data tidying =
# = Hadley Wickham =
# = https://rstd.io/tidyhancements-2019 =
# =======================================
# What is tidy data? ----------------------------------------------------------
# 1. Each column is a variable.
# 2. Each row is an observation.
# 3. Each cell is a value.