Skip to content

Instantly share code, notes, and snippets.

View dfucci's full-sized avatar

Davide Fucci dfucci

View GitHub Profile
@dfucci
dfucci / README-Template.md
Created November 30, 2018 11:58 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@dfucci
dfucci / brew.sh
Created March 15, 2017 10:40 — forked from anonymous/brew.sh
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
# Make sure we’re using the latest Homebrew.
brew update
# Upgrade any already-installed formulae.
brew upgrade --all
@dfucci
dfucci / ggprplots.R
Last active August 29, 2015 14:01 — forked from masverba/ggprplots.R
# Component+residual plots with ggplot2, with support for interaction terms.
# Modeled after function "prplot" in package "faraway".
#
# Example usage:
# > print(ggprplots(lm(prestige~income+education, data=Prestige)))
library(ggplot2)