R: gather multiple sets of columns with tidyr pivot_longer()
I am trying to gather two sets of columns. Each set needs to end up in a new column, but the rows data is linked, so sequential uses of tidyr::gather() won’t guarantee retention of cross-column organization. It looks like tidyr::pivot_longer() can accomplish this, but I am stumped. A similar post is here, but the answer… Read More R: gather multiple sets of columns with tidyr pivot_longer()