I am uploading an excel database to R and some data from the column that has characters appears with numbers. This is my code.
p <- read_excel("Raw_Data/31-01-2018.xls", sheet = 10,range = "A8:E24")
This is the output. Output
How could I solve this problem?
Try with the
xlsx
package. It looks like an issue with the merged cells. With the next code you are able to load it and then assign a name for the merged cells:Output (Image):