R Studio读取了xlsx文件,head()函数未显示所存储值的所有小数位

时间:2018-07-31 03:32:50

标签: r tidyverse readr

我正在尝试读取存储在excel文件中的抓取数据集。在RStudio中加载文件后,我检查了head(数据集,5),但double值的列未显示完整的小数,而是显示:

100. 

但是,如果我使用View(dataset),它仍然显示完整的小数:

100.23 

我尝试了这个,但是不起作用:

options(digits=10)

我在这里有一张照片: enter image description here

enter image description here

enter image description here 反正有解决办法吗?

1 个答案:

答案 0 :(得分:1)

This is just the default way,控制台在其中打印小标题。如果要查看完整值,可以使用print.data.frame

head(leipzig[, "Shot_x1"]) %>% 
  print.data.frame()

或更好,因为不需要head()小插曲:

leipzig %>%
  select(Shot_x1) %>%
  print.data.frame()