Skip to content

Commit 5af2c5c

Browse files
committed
making pandas lower case
1 parent 166603a commit 5af2c5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/pandas/community/ecosystem.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ ArcticDB is structured to provide a scalable and efficient way to manage and ret
378378

379379
- `Object Store` Collections of libraries. Used to separate logical environments from each other. Analogous to a database server.
380380
- `Library` Contains multiple symbols which are grouped in a certain way (different users, markets, etc). Analogous to a database.
381-
- `Symbol` Atomic unit of data storage. Identified by a string name. Data stored under a symbol strongly resembles a Pandas DataFrame. Analogous to tables.
381+
- `Symbol` Atomic unit of data storage. Identified by a string name. Data stored under a symbol strongly resembles a pandas DataFrame. Analogous to tables.
382382
- `Version` Every modifying action (write, append, update) performed on a symbol creates a new version of that object.
383383

384384
#### Installation
@@ -436,7 +436,7 @@ Write to ArcticDB.
436436
write_record = lib.write("test", df)
437437
```
438438

439-
> **Note:** When writing Pandas DataFrames, ArcticDB supports the following index types:
439+
> **Note:** When writing pandas DataFrames, ArcticDB supports the following index types:
440440
>
441441
> - `pandas.Index` containing int64 (or the corresponding dedicated types Int64Index, UInt64Index)
442442
> - `RangeIndex`
@@ -455,7 +455,7 @@ read_record.data
455455
df.dtypes
456456
```
457457

458-
ArcticDB also supports appending, updating, and querying data from storage to a Pandas DataFrame. Please find more information [here](https://docs.arcticdb.io/latest/api/query_builder/).
458+
ArcticDB also supports appending, updating, and querying data from storage to a pandas DataFrame. Please find more information [here](https://docs.arcticdb.io/latest/api/query_builder/).
459459

460460

461461
## Out-of-core

0 commit comments

Comments
 (0)