| read_series | R Documentation | 
This function imports a list of count series data previously exported by
format_data(). Users can import one, several, or all count series data.
read_series(series = NULL, path = ".")
series | 
 a vector of   | 
path | 
 a   | 
An n-element list (where n is the number of count series). See
format_data() for further information.
## 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")
## Import all count series ----
count_series <- popbayes::read_series(path = temp_path)
## Import one count series ----
a_bus <- popbayes::read_series(series = "garamba__alcelaphus_buselaphus",
                               path   = temp_path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.