We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xportr_metadata() should allow passing of verbose as well
metadata <- data.frame( dataset = "test", variable = c("Subj", "Param", "Val", "NotUsed"), type = c("numeric", "character", "numeric", "character"), order = c(1, 3, 4, 2) )
adlb <- data.frame( Subj = as.character(123, 456, 789), Different = c("a", "b", "c"), Val = c("1", "2", "3"), Param = c("param1", "param2", "param3") )
You have to set each verbose to get feedback.
adlb %>% xportr_metadata(metadata, "test") %>% xportr_type(verbose = 'warn') %>% xportr_order(verbose = 'warn')
Better if you could set at the top
adlb %>% xportr_metadata(metadata, "test", verbose = 'warn') %>% xportr_type() %>% xportr_order()
The text was updated successfully, but these errors were encountered:
verbose
metadata
xportr_*
Merge pull request #199 from atorus-research/151_metadata_verbose
eb3428d
Closes #151 - Metadata includes `verbose` option
EeethB
Successfully merging a pull request may close this issue.
Feature Idea
xportr_metadata() should allow passing of verbose as well
Relevant Input
metadata <- data.frame(
dataset = "test",
variable = c("Subj", "Param", "Val", "NotUsed"),
type = c("numeric", "character", "numeric", "character"),
order = c(1, 3, 4, 2)
)
adlb <- data.frame(
Subj = as.character(123, 456, 789),
Different = c("a", "b", "c"),
Val = c("1", "2", "3"),
Param = c("param1", "param2", "param3")
)
You have to set each verbose to get feedback.
adlb %>%
xportr_metadata(metadata, "test") %>%
xportr_type(verbose = 'warn') %>%
xportr_order(verbose = 'warn')
Better if you could set at the top
adlb %>%
xportr_metadata(metadata, "test", verbose = 'warn') %>%
xportr_type() %>%
xportr_order()
The text was updated successfully, but these errors were encountered: