list_series: Retrieve the count series names

View source: R/series-funs.R

list_seriesR Documentation

Retrieve the count series names

Description

This function retrieves the count series names generated by the function format_data().

Usage

list_series(path = ".")

Arguments

path

a character string. The directory in which count series have been saved by the function format_data().

Value

A vector of count series names (character strings).

Examples

## Load Garamba raw dataset ----
file_path <- system.file("extdata", "garamba_survey.csv", 
                         package = "popbayes")
                         
garamba <- read.csv(file = file_path)

## Create temporary folder ----
temp_path <- tempdir()

## Format dataset ----
garamba_formatted <- popbayes::format_data(
  data              = garamba, 
  path              = temp_path,
  field_method      = "field_method",
  pref_field_method = "pref_field_method",
  conversion_A2G    = "conversion_A2G",
  rmax              = "rmax")

## Retrieve count series names ----
popbayes::list_series(path = temp_path)

FRBCesab/popbayes documentation built on Jan. 26, 2024, 12:13 p.m.