1
I would like to know if using one function instead of another there would be some differential in relation to the final dataframe to be produced. There were situations I tried to accomplish bind_rows
between different dataframes (or Tibbles) and had error (e.g.: 'Error: tinyformat: Too Many Conversion specifiers in format string') and, if the function was used rbind.fill
instead, the same error did not occur and the merging of the dataframes worked normally.
Provide an example of when this error happened.
– Guilherme Parreira