diff --git a/README.md b/README.md index cd22217..a786873 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,6 @@ df = ddt.read_deltalake("delta_path", datetime="2018-12-19T16:39:57-08:00") `df` is a Dask DataFrame that you can work with in the same way you normally would. See [the Dask DataFrame documentation](https://docs.dask.org/en/stable/dataframe.html) for available operations. - ### Accessing remote file systems To be able to read from S3, azure, gcsfs, and other remote filesystems, @@ -86,7 +85,7 @@ import dask_deltatable as ddt df = dd.read_csv("s3://bucket_name/data.csv") # do some processing on the dataframe... -ddt.to_deltalake(df, "s3://bucket_name/delta_path") +ddt.to_deltalake("s3://bucket_name/delta_path", df) ``` Writing to Delta Lake is still in development, so be aware that some features