[doc] removed index creation from quickstart (#160)

This commit is contained in:
gsilvestrin
2023-06-07 09:29:38 -07:00
committed by GitHub
parent 131b2dc57b
commit 12da77a9f7

View File

@@ -24,9 +24,6 @@ data = pd.DataFrame({
"price": [10.0, 20.0]
})
table = db.create_table("pd_table", data=data)
# Optionally, create a IVF_PQ index
table.create_index(num_partitions=256, num_sub_vectors=96)
```
You will find detailed instructions of creating dataset and index in [Basic Operations](basic.md) and [Indexing](indexing.md)