Skip to content

Commit

Permalink
updated documentation to satisfy CRAN rcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed May 19, 2017
1 parent c84c1ae commit 91f27e7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Version: 1.2.0
Authors@R: person("Zach", "Burnett", email = "[email protected]", role = c("aut", "cre"))
Description: This package performs data parsing and anaylsis tools useful to the University of Maryland Balloon Payload Program (UMDBPP).
Depends: R (>= 2.10)
Imports: ggplot2, ggmap, zoo
Imports: ggplot2, ggmap, zoo, jsonlite
License: MIT + file LICENSE
LazyData: TRUE
RoxygenNote: 6.0.1
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ importFrom(ggplot2,geom_point)
importFrom(ggplot2,labs)
importFrom(jsonlite,fromJSON)
importFrom(stats,complete.cases)
importFrom(stats,median)
importFrom(utils,head)
importFrom(utils,read.csv)
importFrom(utils,tail)
Expand Down
15 changes: 13 additions & 2 deletions R/read.payload.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,22 @@
#' @importFrom utils head
#' @importFrom utils tail
#' @importFrom stats complete.cases
#' @importFrom stats median
#' @importFrom jsonlite fromJSON
#' @examples
#' \dontrun{
#' NS57.Coord <- read.payload("NS57_parsedPackets.txt", "LINK-TLM", "NS57", start_time = "07:50:31", end_time = "09:27:34")
#' NS57.Rad <- read.payload("NS57LaunchData.txt", "IRENE", "NS57", start_time = "07:50:31", end_time = "09:27:34")
#' NS57.Coord <- read.payload("NS57_parsedPackets.txt",
#' "LINK-TLM",
#' "NS57",
#' start_time = "07:50:31",
#' end_time = "09:27:34"
#' )
#' NS57.Rad <- read.payload("NS57LaunchData.txt",
#' "IRENE",
#' "NS57",
#' start_time = "07:50:31",
#' end_time = "09:27:34"
#' )
#' }

read.payload <-
Expand Down
14 changes: 12 additions & 2 deletions man/read.payload.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 91f27e7

Please sign in to comment.