I have been using a certain chunk of code to create charts in RMarkdown. For the charts I have to combine two different groups of data, so I use bind_rows(). However, because there are both characters and integers, I apply type.convert() to each data set before combining. This method has worked seamlessly in all my other R scripts and I have run into no issues. However, each time I try to run this in Rmarkdown, I get an error reading
"Error in `bind_rows()`:
! Can't combine `..1$DD_3_48` *integer* and `..2$DD_3_48` *character*."
This should not be an issue as I have already used type.convert() on each data set. Any suggestions?