R显示没有进一步信息的值

时间:2017-07-06 17:24:18

标签: r output appearance

我有以下问题。

当我查找特定值时,通常看起来像这样:

df1[383,54]
[1] "This is a Test-String."

但是当我从excel加载东西时:

library(readxl)
df2 <- read_excel("~/Test.xls", col_names = FALSE)

它开始看起来像这样:

df1[383,54]
# A tibble: 1 x 1
               X__54
               <chr>
1 This is a Test-String.

我做错了什么?这不是因为包,因为当我分离它时,它是相同的输出。当我加载不同的数据集时,为什么我的数据框的输出会发生变化。我尝试了很多,但没有找到答案。希望这不是一个过于明显的答案的问题。

1 个答案:

答案 0 :(得分:0)

df2 <- as.data.frame(df2)应该通过从tibble更改回标准data.frame来阻止显示标头。