Hello, anyone knows how to configure catalog.yml o...
# questions
e
Hello, anyone knows how to configure catalog.yml on saving a dataframe in a csv sheet, sheet_name doesn't work for me
Copy code
save_csv_sheet:
  type: pandas.CSVDataSet
  filepath: data/02_intermediate/data.csv
  load_args:
    sheet_name: data1
m
1. .csv files do not have sheets. If you want to use sheets, then you need to change dataset to "type: pandas.ExcelDataSet" 2. If you want to specify saving parameters, use "save_args", not "load_args" Check out introduction to Kedro data catalog - https://docs.kedro.org/en/stable/data/data_catalog.html
👍 2
j
what @Michał Madej said 💯
e
Thanks @Michał Madej