hydrax.pandas.RowData#
- class hydrax.pandas.RowData(dataframe: DataFrame)#
Bases:
Sequence
[Series
]Wraps a Pandas
DataFrame
as a row-wise sequence ofSeries
.- count(value) integer -- return number of occurrences of value #
- property dataframe: DataFrame#
The backing Pandas DataFrame.
- index(value[, start[, stop]]) integer -- return first index of value. #
Raises ValueError if the value is not present.
Supporting start and stop arguments is optional, but recommended.