Use sparse=True for from_pandas (#1994)

This commit is contained in:
Isaiah Norton
2020-12-02 13:39:19 -08:00
committed by GitHub
parent 9a34264f92
commit 9be086b1e8
+1 -1
View File
@@ -144,7 +144,7 @@ class AnnotationsHostedTileDB(Annotations):
for col in df:
df[col] = df[col].astype(get_dtype_of_array(df[col]))
tiledb.from_pandas(uri, df)
tiledb.from_pandas(uri, df, sparse=True)
else:
uri = ""