I'm trying to write python code for saving datatable Frame to .csv with semicolon as separator.
When I try to do that I receive error. The issue is not present when I use fread function. Also, to_csv() works well when separator is not specified. According to documentation to_csv() should take sep as argument.
Error:
Method datatable.Frame.to_csv() got an unexpected keyword argument sep
My code (df is a pandas data frame):
import datatable as dt
...
dtf = dt.Frame(df)
dtf.to_csv('test.csv', sep=';')
Win10
Python version: 3.9.13
datatable version: 1.0.0
Thank you for help