Simple data analysis tool with some visualization option using streamlit. You can upload your own datasets in this app. However, there is some limitations, you can only upload file which are only limited 200mb or below 200 mb.
This app support .xlsx and .CSV file.
This app has two analzying option which are following:
- Overall columns
- Analyze
- chart type
You can check the datasets by droping the whichever columns you want. Also you can sort the column by clicking the columns name in the table
graph LR
A[Analyze] --> B[Info about datasets];
B[Info about datasets] --> C[Describe datasets];
C[Describe datasets] --> D[Find missing value];
D[Find missing value] --> E[Correlation Matrix];
We can also draw the following plot
graph LR
A[Chart type] --> B[Scatterplots];
B[Scatterplots] --> C[Lineplots];
C[Lineplots] --> D[Histogram];
D[Histogram] --> E[Boxplot];
E[Boxplot] -->F[Barchart];
F[Barchart] -->G[Funnel];