Boxuan Cui
Boxuan Cui
After some thoughts, this should be a brand new function. It should run on discrete and continuous features separately. Need to figure out how to do and visualize each.
I don't think there is an easy way to update color, unless you want to adjust the returned ggplot objects (added with #78) and modify them yourself. In addition, most...
Thanks for using DataExplorer. I will keep this issue open in case it becomes more relevant down the road.
> Just wanted to give a +1 on this. In plot_correlation, the strong positive correlations show up as red and the strong negative correlations show up as blue. Would love...
The only difference between `plot_correlation` and the one in `create_report` is [`"use" = "pairwise.complete.obs"`](https://github.com/boxuancui/DataExplorer/blob/master/R/configure_report.r#L63), and you can turn it off if you don't want the default setting. Could you double...
Thanks for using DataExplorer. For your need, you will have to tweak the source code a little. Copy & paste the following function and you should be able to pass...
Please also keep this issue open. I might be able to add this in future versions, but I can't promise which one.
Would you mind providing a subset of reproducible example (data + code), so that I can investigate? It works fine on my end.
I am not sure if I am following, but the following code works for me in applying a theme: ```R library(DataExplorer) library(ggplot2) plot_intro(iris, ggtheme = theme_minimal()) plot_intro(iris, ggtheme = theme_void())...
Thanks! I see what you meant. Unfortunately, I don't think it is possible to store theme options, because themes are applied and then overwritten at the very last step. Since...