Commit 5597cf6c1f0a24c58bd5d7096047ef93ed2e5458
0 parents
Exists in
master
Initial commit
Showing
7 changed files
with
68 additions
and
0 deletions
Show diff stats
1 | +++ a/DESCRIPTION | ||
@@ -0,0 +1,11 @@ | @@ -0,0 +1,11 @@ | ||
1 | +Package: EMCRome2020 | ||
2 | +Type: Package | ||
3 | +Title: What the Package Does (Title Case) | ||
4 | +Version: 0.1.0 | ||
5 | +Author: Who wrote it | ||
6 | +Maintainer: The package maintainer <yourself@somewhere.net> | ||
7 | +Description: More about what it does (maybe more than one line) | ||
8 | + Use four spaces when indenting paragraphs within the Description. | ||
9 | +License: What license is it under? | ||
10 | +Encoding: UTF-8 | ||
11 | +LazyData: true |
1 | +++ a/EMCRome2020.Rproj | ||
@@ -0,0 +1,20 @@ | @@ -0,0 +1,20 @@ | ||
1 | +Version: 1.0 | ||
2 | + | ||
3 | +RestoreWorkspace: Default | ||
4 | +SaveWorkspace: Default | ||
5 | +AlwaysSaveHistory: Default | ||
6 | + | ||
7 | +EnableCodeIndexing: Yes | ||
8 | +UseSpacesForTab: Yes | ||
9 | +NumSpacesForTab: 2 | ||
10 | +Encoding: UTF-8 | ||
11 | + | ||
12 | +RnwWeave: Sweave | ||
13 | +LaTeX: pdfLaTeX | ||
14 | + | ||
15 | +AutoAppendNewline: Yes | ||
16 | +StripTrailingWhitespace: Yes | ||
17 | + | ||
18 | +BuildType: Package | ||
19 | +PackageUseDevtools: Yes | ||
20 | +PackageInstallArgs: --no-multiarch --with-keep.source |
1 | +++ a/R/hello.R | ||
@@ -0,0 +1,18 @@ | @@ -0,0 +1,18 @@ | ||
1 | +# Hello, world! | ||
2 | +# | ||
3 | +# This is an example function named 'hello' | ||
4 | +# which prints 'Hello, world!'. | ||
5 | +# | ||
6 | +# You can learn more about package authoring with RStudio at: | ||
7 | +# | ||
8 | +# http://r-pkgs.had.co.nz/ | ||
9 | +# | ||
10 | +# Some useful keyboard shortcuts for package authoring: | ||
11 | +# | ||
12 | +# Install Package: 'Cmd + Shift + B' | ||
13 | +# Check Package: 'Cmd + Shift + E' | ||
14 | +# Test Package: 'Cmd + Shift + T' | ||
15 | + | ||
16 | +hello <- function() { | ||
17 | + print("Hello, world!") | ||
18 | +} |