From 2f9a19eec8dd729b0134190b00b52e82c780f12b Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Wed, 16 Nov 2022 15:54:28 +0100 Subject: Minor comment change. --- src/argaze/DataStructures.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/argaze/DataStructures.py b/src/argaze/DataStructures.py index 9339227..6502091 100644 --- a/src/argaze/DataStructures.py +++ b/src/argaze/DataStructures.py @@ -113,8 +113,8 @@ class TimeStampedBuffer(collections.OrderedDict): def as_dataframe(self, exclude=[], split={}) -> pandas.DataFrame: """Convert as [pandas dataframe](https://pandas.pydata.org/docs/reference/frame.html). - The optional *split* argument allows tuple values to be stored in a dedicated columns. - For example: to convert {"point": (0, 0)} data as two separated "x" and "y" columns, use split={"point":["x", "y"]} + The optional *split* argument allows tuple values to be stored in dedicated columns. + For example: to convert {"point": (0, 0)} data as two separated "x" and "y" columns, use split={"point": ["x", "y"]} .. warning:: Values must be dictionaries. Each key is stored as a column name. -- cgit v1.1