Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Added Fix for raised issue 44 #45

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions static/quickstart_docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ The current version is `delta-core_2.12:2.1.0` which corresponds to Apache Spark
from deltalake import DeltaTable

# Create Pandas DataFrame
df = pd.DataFrame(range(5))
df = pd.DataFrame({"data": range(5)})

# Write Delta Lake table
write_deltalake("/tmp/deltars_table", df)

# Append new data
df = pd.DataFrame(range(6, 11))
df = pd.DataFrame({"data": range(6, 11)})
write_deltalake("/tmp/deltars_table", df, mode="append")

# Read Delta Lake table
Expand All @@ -82,7 +82,7 @@ The current version is `delta-core_2.12:2.1.0` which corresponds to Apache Spark
dt.to_pandas()

## Output
0
data
0 0
... ...
8 9
Expand Down Expand Up @@ -123,7 +123,7 @@ The current version is `delta-core_2.12:2.1.0` which corresponds to Apache Spark
```
```python
## Output
0
data
0 0
1 1
2 2
Expand Down Expand Up @@ -448,4 +448,4 @@ curl -X POST -d "SELECT cases, county, date FROM covid19_nyt LIMIT 5" localhost:
]
```

</details>
</details>