forked from tidyverse/dplyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata-nasa.r
34 lines (34 loc) · 1.11 KB
/
data-nasa.r
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#' NASA spatio-temporal data
#'
#' This data comes from the ASA 2007 data expo,
#' \url{http://stat-computing.org/dataexpo/2006/}. The data are geographic and
#' atmospheric measures on a very coarse 24 by 24 grid covering Central
#' America. The variables are: temperature (surface and air), ozone,
#' air pressure, and cloud cover (low, mid, and high). All variables are
#' monthly averages, with observations for Jan 1995 to Dec 2000. These data
#' were obtained from the NASA Langley Research Center Atmospheric Sciences
#' Data Center (with permission; see important copyright terms below).
#'
#' @section Dimensions:
#'
#' \itemize{
#' \item \code{lat}, \code{long}: latitude and longitude
#' \item \code{year}, \code{month}: month and year
#' }
#'
#' @section Measures:
#'
#' \itemize{
#' \item \code{cloudlow}, \code{cloudmed}, \code{cloudhigh}: cloud cover
#' at three heights
#' \item \code{ozone}
#' \item \code{surftemp} and \code{temperature}
#' \item \code{pressure}
#' }
#' @docType data
#' @name nasa
#' @usage nasa
#' @format A \code{\link{tbl_cube}} with 41,472 observations.
#' @examples
#' nasa
NULL