Skip to content

Commit

Permalink
Rename AT to arrow_table in usage. (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored Jul 12, 2023
1 parent 106251e commit ac315e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ Example Usage:
assert isinstance(arrow_table, pa.Table)
# Print JSON-encoded Table and Column keywords
pprint(json.loads(AT.schema.metadata[b"__arcae_metadata__"]))
pprint(json.loads(AT.schema.field("DATA").metadata[b"__arcae_metadata__"]))
pprint(json.loads(arrow_table.schema.metadata[b"__arcae_metadata__"]))
pprint(json.loads(arrow_table.schema.field("DATA").metadata[b"__arcae_metadata__"]))
# Extract Arrow Table columns into numpy arrays
time = arrow_table.column("TIME").to_numpy()
Expand Down

0 comments on commit ac315e9

Please # to comment.