Quitting from lines 125-132 (report.rmd)
Show Traceback
Rerun with Debug
Error in gList(NA = list(wrapvp = list(x = 0.5, y = 0.5, width = 1, :
only 'grobs' allowed in "gList"
I have a feeling it's because there is one categorical column, but it has more than 50 categories. I tried joining it with another dataset with another categorical column with less than 50 categories and it worked.
Yes, plot_bar has a maxcat argument, which defaults to 50. In this case, country column will be ignored and plot_bar is trying to plot a data.frame without any discrete features.
Two workarounds using the config argument from create_report:
I think I may have discovered a bug when trying to create a report from the following dataset:
The error I get is:
I have a feeling it's because there is one categorical column, but it has more than 50 categories. I tried joining it with another dataset with another categorical column with less than 50 categories and it worked.