apexcharter/R/data.R

61 lines
2.1 KiB
R
Raw Normal View History

2019-02-14 09:22:57 +01:00
2019-09-05 10:48:34 +02:00
#' UNHCR data by continent of origin
#'
2019-11-27 23:17:23 +01:00
#' The dataset contains data about UNHCR's populations of concern summarised by continent of origin.
2019-09-05 10:48:34 +02:00
#'
2020-04-02 17:43:24 +02:00
#' @format A data frame with 913 observations and the following 4 variables:
2019-09-05 10:48:34 +02:00
#' \describe{
#' \item{\code{year}}{Year concerned.}
#' \item{\code{population_type}}{Populations of concern : Refugees, Asylum-seekers, Internally displaced persons (IDPs), Returned refugees,
#' Returned IDPs, Stateless persons, Others of concern.}
2019-09-05 10:48:34 +02:00
#' \item{\code{continent_origin}}{Continent of residence of population.}
#' \item{\code{n}}{Number of people concerned.}
#' }
2019-11-27 23:17:23 +01:00
#' @source UNHCR (The UN Refugee Agency) (\url{https://www.unhcr.org/})
2019-09-05 10:48:34 +02:00
"unhcr_ts"
2020-04-02 17:43:24 +02:00
#' Electricity consumption and forecasting
#'
#' Electricity consumption per day in France for january and february of year 2020.
#'
#' @format A data frame with 120 observations and the following 3 variables:
#' \describe{
#' \item{\code{date}}{date.}
#' \item{\code{type}}{Type of data : realized or forecast.}
2020-04-02 17:43:24 +02:00
#' \item{\code{value}}{Value in giga-watt per hour.}
#' }
#' @source Rte (Electricity Transmission Network in France) (\url{https://data.rte-france.com/})
"consumption"
2020-06-13 13:04:10 +02:00
#' Candlestick demo data
#'
#'
#' @format A data frame with 60 observations and the following 5 variables:
#' \describe{
#' \item{\code{datetime}}{Timestamp.}
#' \item{\code{open}}{Open value.}
2020-06-13 13:04:10 +02:00
#' \item{\code{high}}{Highest value.}
#' \item{\code{low}}{Lowest value.}
#' \item{\code{close}}{Close value.}
#' }
#' @source Apexcharts (\url{https://apexcharts.com/javascript-chart-demos/candlestick-charts/basic/})
"candles"
2020-04-02 17:43:24 +02:00
2020-07-26 10:45:25 +02:00
#' @title Paris Climate
#'
2020-07-26 10:45:25 +02:00
#' @description Average temperature and precipitation in Paris for the period 1971-2000.
#'
#'
#' @format A data frame with 12 observations and the following 3 variables:
#' \describe{
#' \item{\code{month}}{Month}
#' \item{\code{temperature}}{Temperature (in degree celsius).}
2020-07-26 10:45:25 +02:00
#' \item{\code{precipitation}}{Precipitation (in mm).}
#' }
#' @source Wikipedia (\url{https://fr.wikipedia.org/wiki/Climat_de_Paris})
"climate_paris"