I'm working to build a shiny app using the gt package for summary tables.
My issue is that the app requires users to upload a dataframe. Each file will have a different number of columns and column names. The summary_rows function requires a "columns" argument, but with the file changing every time the app is run, I cannot specify the columns to summarize.
Is there a way to indicate that all columns should be summarized? I have tried to save the names as a vector and used that with and without the vars function but that doesn't seem to work. Since this is a new package I'm not sure if this feature as been implemented yet.
I would really like to use the gt package because it is simple to use and the output is nice, but if this is not possible with gt is there another package others would recommend?
As a follow up to yesterday's post, I found with my data. the summary_rows() function will only work if the number of columns is >= 18. My data set had 22 columns and it seems as though summary_rows cannot handle that many columns at once. I have reported the issue on GitHub.