Data Visualization

This page include all API for data visualization (hidrokit.viz).

Graph module

Visualize dataframe with graph/plot.

viz.graph.subplots(dataframe, ncols=3, nrows=5, figsize=None)[source]

Plot all numeric column in one figure with datetime index.

Parameters
dataframeDataFrame

DataFrame consist of numeric column only.

ncolsint, optional

Number of column subplots, by default 3

nrowsint, optional

Number of row subplots, by default 5

figsizetuple of int, optional

Figure size, by default None

Table module

Visualize dataframe with table.

viz.table.pivot(dataframe, column=None, lang=None)[source]

View dataframe as pivot table

Parameters
dataframeDataFrame

Dataframe

columnsequence, optional

Specify columns, by default None

langstr, optional

MonthID language, by default None

Returns
DataFrame

Return dataframe as pivot table