diff --git a/DESCRIPTION b/DESCRIPTION index 9f2e38b..e75b061 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: nhanesA -Version: 0.6.2 -Date: 2015-12-19 +Version: 0.6.2.1 +Date: 2015-12-29 Title: NHANES Data Retrieval Author: Christopher Endres Maintainer: Christopher Endres diff --git a/R/nhanes.R b/R/nhanes.R index 42b3d8a..839b2d1 100644 --- a/R/nhanes.R +++ b/R/nhanes.R @@ -501,11 +501,11 @@ nhanesTranslate <- function(nh_table, colnames=NULL, data = NULL, nchar = 32, de #' @param dxa If TRUE then browse to the DXA page. #' @details browseNHANES will open a web browser to the specified NHANES site. #' @examples -#' \donttest{browseNHANES()} Defaults to the main data sets page -#' \donttest{browseNHANES(2005)} The main page for the specified survey year -#' \donttest{browseNHANES(2009, 'EXAM')} Page for the specified year and survey group -#' \donttest{browseNHANES(nh_table = 'VIX_D')} Page for a specific table -#' \donttest{browseNHANES(dxa=T)} DXA main page +#' browseNHANES() # Defaults to the main data sets page +#' browseNHANES(2005) # The main page for the specified survey year +#' browseNHANES(2009, 'EXAM') # Page for the specified year and survey group +#' browseNHANES(nh_table = 'VIX_D') # Page for a specific table +#' browseNHANES(dxa = TRUE) # DXA main page #' @export #' diff --git a/man/browseNHANES.Rd b/man/browseNHANES.Rd index 87f6b86..075186a 100644 --- a/man/browseNHANES.Rd +++ b/man/browseNHANES.Rd @@ -24,10 +24,10 @@ The browser may be directed to a specific year, survey, or table. browseNHANES will open a web browser to the specified NHANES site. } \examples{ -\donttest{browseNHANES()} Defaults to the main data sets page -\donttest{browseNHANES(2005)} The main page for the specified survey year -\donttest{browseNHANES(2009, 'EXAM')} Page for the specified year and survey group -\donttest{browseNHANES(nh_table = 'VIX_D')} Page for a specific table -\donttest{browseNHANES(dxa=T)} DXA main page +browseNHANES() # Defaults to the main data sets page +browseNHANES(2005) # The main page for the specified survey year +browseNHANES(2009, 'EXAM') # Page for the specified year and survey group +browseNHANES(nh_table = 'VIX_D') # Page for a specific table +browseNHANES(dxa = TRUE) # DXA main page }