使用Rmarkdown并尝试插入数据。
这是我使用的代码块:
```{r echo=TRUE, message=TRUE }
library(tidyverse)
congress<-read_csv("womenincongress.csv")
它给了我这个
New names:
-> ...1
Rows: 49 Columns: 5
-- Column specification -------------
Delimiter: ","
chr (1): state
dbl (4): ...1, senators, represen...
i Use spec()
to retrieve the full column specification for this data.
i Specify the column types or set show_col_types = FALSE
to quiet this message.
我假设我希望显示所有数据,但我不确定如何使用spec函数。
1条答案
按热度按时间z2acfund1#
下面是使用
spec()
获取完整列规格的示例: