-
Hi, What's the meaning of In the doc I have:
But I do not have multiple header rows. And here a I have a space set as separator for a header's cell join operation. Does the meaning of it it's that I do not have multiline header? And I have
When I have My input is
Thank you # --------
# metadata: input_.csv
# --------
compression: ''
control: {}
dialect:
delimiter: ','
doubleQuote: true
lineTerminator: "\r\n"
quoteChar: '"'
skipInitialSpace: false
encoding: utf-8
format: csv
hashing: md5
innerpath: ''
layout:
header: true
headerCase: true
headerJoin: ' '
headerRows:
- 1
name: input_
path: input_.csv
profile: tabular-data-resource
schema:
fields:
- bareNumber: true
format: default
name: field1
type: integer
- format: default
name: field2
type: string
missingValues:
- ''
scheme: file |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @aborruso,
It means that the header is located at the first-row position. For the multiline header, it will be something like
It's just a default value for the case of a multiline header. It has no effect until you have two or more |
Beta Was this translation helpful? Give feedback.
Hi @aborruso,
It means that the header is located at the first-row position. For the multiline header, it will be something like
[1,2,3]
.It's just a default value for the case of a multiline header. It has no effect until you have two or more
headerRows
. It has similar semantics toschema.missingValues = ['']
. The data might not have any missing values but in an expanded version of resource this default is present.