I am sure others using the googlesheets
package would encounter this question some time or the other.
Since googlesheets gs_edit_cells()
is known to be very slow, is there a way to upload multiple data frames on to multiple anchor points in the same file in a single invocation of the command?
So if I have 2 data frames: df1 and df2 instead of invoking
gs_edit_cells(ss=.., ws=.., input=df1, anchor="A1")
gs_edit_cells(ss=.., ws=.., input=df2, anchor="G1")`
do we have a way to invoke it something like:
gs_edit_cells(ss=.., ws=.., input=c(df1,df2), anchor=c("A1","G1")
Since these are small dataframes with independent summary reports, we cannot combine them into one dataframe.