Created
April 14, 2018 18:34
-
-
Save arukavina/e2b366b55e3b425db5aed3da514234bf to your computer and use it in GitHub Desktop.
Lazy C&P R template
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
#!interpreter {optional-arg} | |
readRenviron(“/etc/default/locale”) | |
LANG <- Sys.getenv(“LANG”) | |
if(nchar(LANG)) | |
Sys.setlocale(“LC_ALL”, LANG) | |
################################################## | |
## {Description} | |
################################################## | |
## {License_info} | |
################################################## | |
## Author: {author} | |
## Copyright: Copyright {year}, {project_name} | |
## Credits: [{credit_list}] | |
## License: {license} | |
## Version: {mayor}.{minor}.{rel} | |
## Mmaintainer: {maintainer} | |
## Email: {contact_email} | |
## Status: {dev_status} | |
################################################## | |
# Libs | |
library(ggplot2) | |
library(reshape) | |
library(vegan) | |
# […] | |
# Own surces | |
source {path} | |
# […] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment