Error in data.table::rbindlist(dats) :
Item 8 has 4 columns, inconsistent with item 1 which has 3 columns. If instead you need to fill missing columns, use set argument 'fill' to TRUE
Is the fix as easy as using fill = TRUE? What's causing the issue to begin with (the extra column of number? Should cannon_reviews$number be removed?
This works:
This does not
Is the fix as easy as using
fill = TRUE
? What's causing the issue to begin with (the extra column ofnumber
? Shouldcannon_reviews$number
be removed?