- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
Issue when importing dataset: `Error in scan(…): line 1 did not have 145 elements`
(11 个回答)
7年前关闭。
我是 R 的新手。我正在尝试读取以空格分隔的“CSV”文件。该文件没有标题。看起来像这样
Element1 Element2
Element5 Element6 Element7
> mydata <- read.table("/PathTo/file.csv")
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
line 1 did not have 14 elements
最佳答案
read.table
想返回一个 data.frame
,每列中必须有一个元素。因此,R 期望每一行具有相同数量的元素,并且默认情况下它不会填充空格。试试 read.table("/PathTo/file.csv" , fill = TRUE )
填空。
例如
read.table( text= "Element1 Element2
Element5 Element6 Element7" , fill = TRUE , header = FALSE )
# V1 V2 V3
#1 Element1 Element2
#2 Element5 Element6 Element7
header = FALSE
...
read.table
尝试自动确定您是否有标题行,因此:
header
is set toTRUE
if and only if the first row contains one fewer field than the number of columns
关于r - R : Error in scan(file, 中的令人困惑的错误是什么,nmax,sep,dec,quote,skip,nlines,na.strings,:第 1 行没有 42 个元素),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19455070/
我想在我的应用程序的 TextView 中附加新行: 我使用了这段代码 textView.setText("part 1"); TextView nline = null; nline.setText
代码是: from curses import * from curses.panel import * def main(stdscr): start_color() curs_se
这个问题在这里已经有了答案: Issue when importing dataset: `Error in scan(…): line 1 did not have 145 elements` (1
我是一名优秀的程序员,十分优秀!