How can I format pivot table data as % of Row Totals in R's Openxlsx2 package?

74 Views Asked by At

I'm placing a pivot table in a workbook via R package OpenXLSX2. The data default to a format Sum Count. Is there anyway to render the data as a % of ROW Total from R. Here is a code snippet, output and preferred output:

Code

wb <- wb %>%
  wb_add_pivot_table(df, sheet = 1,dims = "B10", rows = "data_row", cols = "rating", data = "count")

Output:
enter image description here

Preferred Output:
enter image description here

One can accomplish this manually with a right click in Excel like this: enter image description here

But, I need to find a way to accomplish this programmatically. Is it possible?

0

There are 0 best solutions below