researchdatapod.com
How to Solve R Error: list object cannot be coerced to type double
This error occurs if you try to convert the elements of a list to numeric without converting the list to a vector using unlist(). You can solve this error by using the unlist() function before call…