I have the following problem.
When I was looking up a specific value it usually looked like this:
df1[383,54]
[1] "This is a Test-String."
But when I load something from excel:
library(readxl)
df2 <- read_excel("~/Test.xls", col_names = FALSE)
It started looking like this:
df1[383,54]
# A tibble: 1 x 1
X__54
<chr>
1 This is a Test-String.
What have I done wrong? It is not because of the tibble package, because when I detach it, it is the same output. Why does the output of my dataframe change, when I load a different dataset. I tried a lot but did not find an answer. Hopefully this is not a question with an overly obvious answer.