Gets the list of the properties corresponding to the identifier of a moniker
Source:R/jd3txt.R
txt_id_to_properties.Rd
Gets the list of the properties corresponding to the identifier of a moniker
Examples
set_txt_paths(system.file("extdata", package = "rjd3providers"))
txt_15 <- txt_series("ABS.csv", series = 15, delimiter = "COMMA")
id<-txt_15$moniker$id
print(txt_id_to_properties(id))
#> $file
#> [1] "ABS.csv"
#>
#> $delimiter
#> [1] "COMMA"
#>
#> $textQualifier
#> [1] "NONE"
#>
#> $headers
#> [1] 1
#>
#> $skipLines
#> [1] 0
#>
#> $series
#> [1] 15
#>
#> $gathering
#> $gathering$period
#> [1] -1
#>
#> $gathering$aggregation
#> [1] "None"
#>
#> $gathering$partialAggregation
#> [1] FALSE
#>
#> $gathering$cleanMissing
#> [1] TRUE
#>
#>
#> $format
#> $format$locale
#> [1] "en"
#>
#> $format$datePattern
#> [1] "yyyy-MM-dd"
#>
#> $format$numberPattern
#> [1] ""
#>
#> $format$ignoreNumberGrouping
#> [1] TRUE
#>
#>