generated from SEFSC/SEFSC-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b873fa2
commit 88bc555
Showing
5 changed files
with
34 additions
and
25 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,17 +11,18 @@ Authors@R: | |
person(given = "Brittany", | ||
family = "Troast", | ||
email = "[email protected]", | ||
role = c("aut", "cre"), | ||
role = c("aut")), | ||
person(given = "Brendan", | ||
family = "Turley", | ||
email = "[email protected]", | ||
role = c("aut", "cre") | ||
role = c("aut")), | ||
person(given = "Willem", | ||
family = "Klajbor", | ||
email = "[email protected]", | ||
role = c("aut", "cre")) | ||
role = c("aut"))) | ||
Maintainer: The package maintainer <[email protected]> | ||
Description: This package contains standardized functions used to create and plot indicator data for NOAA IEA Ecosystem Status Reports. It was specifically created for the Gulf of Mexico IEA. | ||
License: What license is it under? | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.3.2 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
exportPattern("^[[:alpha:]]+") | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(hello) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
# Hello, world! | ||
# | ||
# This is an example function named 'hello' | ||
# which prints 'Hello, world!'. | ||
# | ||
# You can learn more about package authoring with RStudio at: | ||
# | ||
# https://r-pkgs.org | ||
# | ||
# Some useful keyboard shortcuts for package authoring: | ||
# | ||
# Install Package: 'Ctrl + Shift + B' | ||
# Check Package: 'Ctrl + Shift + E' | ||
# Test Package: 'Ctrl + Shift + T' | ||
|
||
hello <- function() { | ||
print("Hello, world!") | ||
#' Personal greeting | ||
#' | ||
#' @description Greet a person and appropriately capitalize their name. | ||
#' | ||
#' @param name Your name (character string; e.g. "john doe"). | ||
#' | ||
#' @return A character string, capitalized to title case. | ||
#' @export | ||
#' | ||
#' @examples | ||
#' hello("james bond") | ||
hello <- function(name = "your name") { | ||
name <- stringr::str_to_title(name) | ||
print(paste("Hello,", name)) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.