1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,11 @@ |
1 |
+Package: TDbasedUFEadv |
|
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 <[email protected]> |
|
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 |
0 | 12 |
new file mode 100644 |
... | ... |
@@ -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: 'Ctrl + Shift + B' |
|
13 |
+# Check Package: 'Ctrl + Shift + E' |
|
14 |
+# Test Package: 'Ctrl + Shift + T' |
|
15 |
+ |
|
16 |
+hello <- function() { |
|
17 |
+ print("Hello, world!") |
|
18 |
+} |