AutoViML / AutoViz

Automatically Visualize any dataset, any size with a single line of code. Created by Ram Seshadri. Collaborators Welcome. Permission Granted upon Request.
Apache License 2.0
1.71k stars 197 forks source link

Is it possible to have the input as dataframe instead of file? #43

Closed hanzigs closed 3 years ago

hanzigs commented 3 years ago

if input is dataframe can be used in real time, files can be of any source and type

AutoViML commented 3 years ago

Autoviz accepts both files and dataframes as input. You just need to send one or the other in the calling function as below: dfte : dataframe as input filename = filename as input sep = separator if using a file as input

dft = AV.AutoViz( filename, sep=",", depVar="", dfte=None, header=0, verbose=0, lowess=False, chart_format="svg", max_rows_analyzed=150000, max_cols_analyzed=30, )