Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 322 Bytes

README.rst

File metadata and controls

15 lines (11 loc) · 322 Bytes

# filterAndView Interactive analysis of data from the commandline

# Example

Example usage:

from fav import base, plotting, units
class Analysis(units.UnitsMixin, plotting.PlotMixin, base.DataAnalysis): pass
import pandas as pd
df = pd.read_csv("my.csv")
a=Analysis(df)
a.show_help()