Skip to content
Snippets Groups Projects
Commit c2921599 authored by Bergant's avatar Bergant
Browse files

standard eval

change to standard evaluation when filtering
parent 5a10abea
No related branches found
No related tags found
No related merge requests found
......@@ -111,10 +111,10 @@ xbrl_get_data <- function(elements, xbrl_vars, complete_only = TRUE, complete_fi
min_dec <- min(as.numeric(res$decimals), na.rm = TRUE)
context_filter <- res %>% dplyr::filter(level == 1) %>%
context_filter <- res %>% dplyr::filter_(~level == 1) %>%
getElement("contextId") %>% unique
decimals_filter <- res %>% dplyr::filter(level == 1) %>%
decimals_filter <- res %>% dplyr::filter_(~level == 1) %>%
getElement("decimals") %>% unique
res <-
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment