├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── app.ui ├── attribute_info.py ├── constants.py ├── csv_reader.py ├── data_info.py ├── requirements.txt ├── run.sh ├── screenshot.png ├── setup.sh ├── utils.py ├── xml_tests.py └── xml_writer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/app.py -------------------------------------------------------------------------------- /app.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/app.ui -------------------------------------------------------------------------------- /attribute_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/attribute_info.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/constants.py -------------------------------------------------------------------------------- /csv_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/csv_reader.py -------------------------------------------------------------------------------- /data_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/data_info.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | python app.py 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/setup.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/utils.py -------------------------------------------------------------------------------- /xml_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/xml_tests.py -------------------------------------------------------------------------------- /xml_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/ScientificDataAnalyzer/HEAD/xml_writer.py --------------------------------------------------------------------------------