Skip to content

Commit

Permalink
removed README.Rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
pgstevenson committed Aug 23, 2018
1 parent d6c8a9a commit f229466
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 47 deletions.
6 changes: 6 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
^.*\.Rproj$
^\.Rproj\.user$
^README\.Rmd$
^data-raw$
^archive$
^\.git$
45 changes: 45 additions & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Telethon Kids Institute custom .Rprofile script
# see https://www.statmethods.net/interface/customizing.html
# Template v1.0 created by Paul Stevenson 17-May-2018

# Set default CRAN repository
# local({r <- getOption("repos")
# r["CRAN"] <- "https://cran.curtin.edu.au/"
# options(repos=r)})

# Things you might want to change
options(papersize="a4")
# options(editor="notepad")
# options(pager="internal")

# R interactive prompt
# options(prompt="> ")
# options(continue="+ ")

# to prefer Compiled HTML
# help options(chmhelp=TRUE)
# to prefer HTML help
options(htmlhelp = TRUE)

# General options
options(tab.width = 2)
options(width = 130)
options(graphics.record=TRUE)

.First <- function(){
library(stats)
library(reshape2)
library(plyr)
library(tidyverse)
library(lubridate)
library(ProjectTemplate)
library(repmis)
cat("\nWelcome -", date(), "\n")
}

.Last <- function(){
cat("\nGoodbye at ", date(), "\n")
}

# Custom mappings
h <- utils::head
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
README.Rmd

# Ignore data files
/archive
/data-raw
inst/doc
47 changes: 0 additions & 47 deletions README.Rmd

This file was deleted.

0 comments on commit f229466

Please sign in to comment.