Hi, I encountered tyhe following error.
generates the error
Error in rbind(deparse.level, ...) :
numbers of columns of arguments do not match
Troubleshooting, I found the offending line in the code here:
Error Line using rbind
When I changed
df <- do.call(rbind, issue_list)
to
df <- dplyr::bind_rows(issue_list)
it works.
However need to include import of dplyr package
Hi, I encountered tyhe following error.
generates the error
Troubleshooting, I found the offending line in the code here:
Error Line using rbind
When I changed
to
it works.
However need to include import of dplyr package