Configuration format
version: 1
# The main section of config file starts.
# It describes the columns of the OUTPUT CSV dataset
# you want ysv to generate.
columns:
# first column of that file will be called `name`.
name:
# ysv will take the values for that column from
# PersonName column of the INPUT file.
# (Column names are case sensitive!)
- input: PersonName
# Then, ysv will uppercase the value
- uppercase
# And, it will replace dashes with spaces.
- replace:
"-": " "
# The result will go directly to the output dataset.Last updated