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
I am new to metricsgrphics, but it looks like a useful tool. I am trying to integrate a histogram into a shiny dashboard.
The following works, but the data is static:
output$hist <- renderMetricsgraphics(
dataset %>% mjs_plot(var1, width=300, height=300) %>% mjs_histogram() %>% mjs_labs(x_label=sprintf("x label")) )
The following does not work:
zipsInBounds() %>% mjs_plot(var1, width=300, height=300) %>% mjs_histogram() %>% mjs_labs(x_label=sprintf("x label")) )
Thanks for any guidance/updates.
The text was updated successfully, but these errors were encountered:
can you do a dput(head(dataset)) and dput(head(zipsInBounds())) so I can see data types? - thx
dput(head(dataset))
dput(head(zipsInBounds()))
Sorry, something went wrong.
hrbrmstr
No branches or pull requests
I am new to metricsgrphics, but it looks like a useful tool. I am trying to integrate a histogram into a shiny dashboard.
The following works, but the data is static:
output$hist <- renderMetricsgraphics(
dataset %>%
mjs_plot(var1, width=300, height=300) %>%
mjs_histogram() %>%
mjs_labs(x_label=sprintf("x label"))
)
The following does not work:
output$hist <- renderMetricsgraphics(
zipsInBounds() %>%
mjs_plot(var1, width=300, height=300) %>%
mjs_histogram() %>%
mjs_labs(x_label=sprintf("x label"))
)
Thanks for any guidance/updates.
The text was updated successfully, but these errors were encountered: