Last active
August 25, 2019 18:52
-
-
Save wlinInspire/51886fa8ac05cef51bcbe40ad0d63b30 to your computer and use it in GitHub Desktop.
Tricks in R to Boost Your Productivity (Part 2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.First <- function(){ | |
# Set Java Heap Space | |
options(java.parameters = "-Xmx25g") | |
# Load common packages | |
library(ggplot2) | |
library(tidyverse) | |
library(data.table) | |
# Set ggplot2 theme | |
theme_set(theme_minimal()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment