Install
openclaw skills install auto-data-analyzer-chenAutomated data analysis tool - Input CSV/Excel data and automatically generate comprehensive analysis reports. Includes data cleaning, statistical description, visualization, correlation analysis, and regression analysis. Ideal for rapid data analysis needs.
openclaw skills install auto-data-analyzer-chenAutomated data analysis tool that generates comprehensive reports from input data.
pip install pandas numpy matplotlib seaborn scikit-learn
from analyzer import DataAnalyzer
analyzer = DataAnalyzer('data.csv')
analyzer.clean()
analyzer.describe()
analyzer.visualize()
analyzer.report() # Generate HTML report
python main.py data.csv --output report.html