/
dayekb
/
vibecoding_visualize_csv
Обзор
Документация
Войти
/
dayekb
/
vibecoding_visualize_csv
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
run_interactive.bat
45 строк
1 KB
dayekb
upload files
20 авг 2025, 18:31
20 авг 2025, 18:31
81ccc4f
Код
Авторство
О чём код?
@echo off echo Interactive CSV Visualizer - Starting Application... echo. REM Check if Python is installed python --version >nul 2>&1 if errorlevel 1 ( echo Error: Python is not installed or not in PATH echo Please install Python 3.7 or higher from https://python.org pause exit /b 1 ) REM Check if required packages are installed echo Checking required packages... python -c "import plotly, dash, pandas, numpy" >nul 2>&1 if errorlevel 1 ( echo Installing required packages... pip install plotly dash pandas numpy if errorlevel 1 ( echo Error: Failed to install required packages pause exit /b 1 ) ) echo. echo Starting Interactive CSV Visualizer... echo. echo The application will open in your web browser at: http://127.0.0.1:8050 echo. echo Features: echo - Interactive plots with zoom, pan, and hover echo - Real-time data filtering echo - Beautiful, modern interface echo - Multiple plot types including 3D and heatmaps echo. python interactive_csv_visualizer.py REM Keep window open if there's an error if errorlevel 1 ( echo. echo Application exited with an error pause )