Vectorised parameters start_row
and start_col
in add_data
(and in other similar functions)?
#1277
olivier7121
started this conversation in
Ideas
Replies: 1 comment 3 replies
-
It is possible to write data into pre selected cells using |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
In the documentation of
add_data
, it is written forstart_row
(same applies, mutatis mutandis, tostart_col
):Strictly (mathematically) speaking,
start_row
andstart_col
are no vectors, but rather scalars; technically, i.e. in R, mathematical scalars are indeed considered as vectors too (of length 1), so I guess it's fine, but it's a bit misleading.But: Would it be possible to enter a real vector of rows (or columns), not necessarily contiguous, to write the same content but at various coordinates, i.e. on several rows or columns as starting points? For instance, it should be possible to write a vector on a diagonal series of spreadsheet cells in one single call. Or to write this vector vertically every 2 rows, also in one single call. Etc. In general, and conceptually, it should be possible to completely break the input data structure and from their spreadsheet's coordinates structure.
Beta Was this translation helpful? Give feedback.
All reactions