[0bdad5]: / R / data.R

Download this file

17 lines (15 with data), 403 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## how to document datasets: you need to specify @docType and @name; do not
## forget NULL in the end
#' Xena Hub Information
#'
#' This `data.frame` is very useful for selecting datasets fastly and
#' independent on APIs of UCSC Xena Hubs.
#'
#' @docType data
#' @name XenaData
#' @format A `tibble`.
#' @source Generated from UCSC Xena Data Hubs.
#' @examples
#' data(XenaData)
#' str(XenaData)
NULL