2024-11-22: version 4.7.7
Analysis Platform is an open source web application to import, connect and visualize factory IoT data. It helps to collect, link and integrate data from multiple data sources. Visualizations include Digital Native QC7 Tools, which is designed especially suitable for data on manufacturing domain. Let's try data-driven process improvement by utilizing the data sleeping in the field.
The main activities that user can take with the Analysis Platform are:
- Check behavior of time-series or id-series data, stratify across processes (Full Points Plot)
- Check behavior of fluctuation of the distribution (Ridgeline Plot)
- Check correlation between variables and clusters in distribution (Multiple Scatter Plot)
- Check behavior of each category/group (Stratified Plot)
- Check behavior of related to human activities & process and product behavior (Calendar Heatmap)
- Look for key variables that strongly relates to output (Sankey Diagram)
- Grasp phenomenon that occurs at the same time (Cooccurrence Graph)
- + many other useful visualizations
The Analysis Platform currently supports following data sources:
- CSV/TSV/SSV(semicolon)
- SQLite
- MySQL
- PostgreSQL
- SQL Server
- Oracle Database
On your first access to the application, you must read and agree to Terms of Use shown on modal screen.
If you are going to use "start_ap.bat
" to run the The Analysis Platform with the
Windows embeddable package, running the batch file is regarded as you agreed to the Terms of Use.
- Windows (Tested with Windows 10), Windows Server
- Python (>=3.6) (Tested with Python 3.9.0, pip 22.2)
- If you are going to use the Windows embeddable package, you do not have to install Python in your machine.
(See section: For users)
- If you are going to use the Windows embeddable package, you do not have to install Python in your machine.
You can install AP+DN7 on your PC using installer (batch file)
For detailed instruction, please refer below documents (PDF):
- EN: Getting Started / Data Import & Link Settings / FPP / FAQ / Quick reference
- JA: Getting Started / Data Import & Link Settings / FPP / FAQ / Quick reference
(See the document "Getting Started" for details)
To activate AP+DN7, double click start_ap.bat
file.
The batch file will automatically download:
- Windows embeddable package: To run Analysis Platform without installing Python
- pip: To manage Python packages
- other necessary python packages: To run Analysis Platform
- Oracle Instant Client: To connect Oracle Database
Note:
If you are connecting the internet using proxy server,
you must edit "startup.ini" and specify the appropriate address in advance.
The Analysis Platform is activated after all downloads are finished.
The Analysis Platform uses Port 7770 by default.
Open below URL to access the application.
http://localhost:7770/
Downloads are only excecuted only if above files were not detected, so you can use use "start_ap.bat
" for the next activation. (The Analysis Platform detects a folder named python_embedded_39
on the same level as AnalysisPlatform-master
)
The Analysis Platform can run without internet connection. If you want to use this application on machine which has no internet connection (for example, intranet), you can first download all required files on other machine (which has internet connection), then copy entire files.
The Analysis Platform uses Flask framework.
- Python (>=3.6) (Tested with Python 3.9.0)
First, pull this repository to your PC.
git clone https://github.com/apdn7/AnalysisPlatform.git
cd AnalysisPlatform
Then, install requirements:
pip install -r requirements/common.txt
If pip install fails, try using Python 3.9.0.
Analysis Platform is activated by following command
python main.py
Corresponding ODBC driver must be installed to use SQL Server and Oracle Database.
To shut down the Analysis Platform,
press shut down button on bottom of sidebar.
(this button is only available on host machine, by accessing the application with localhost:{port_no}
.)
To uninstall the Analysis Platform:
- Remove the Analysis Platform folder (the folder which the
start_ap.bat
is included) - Remove the following files/folders:
env
get-pip.py
python_embedded_39
Oracle-Portable
By default, the Analysis Platform contains sample data and corresponding settings to get an overview of each visualization.
Data is stored as TSV file under the subdirectories in /sample_data:
- /assembly: Quality data
- /1_parts_feed
- 20220228.tsv
- /2_inspection
- 20220228.tsv
- /1_parts_feed
- /parts_processing: Machine data
- /1_machine_parameter_a
- 20220311.tsv
- /2_machine_parameter_b
- 20220311.tsv
- /3_finishing
- 20220311.tsv
- /1_machine_parameter_a
- /COG_sample_data: Occurence of machine alarms
- alarm_every_15minutes.tsv
- alarm_daily.tsv
- /AgP_sample_data: PartNo, Ok/NG, NG_Mode, and pressure data
- AgP_sample.tsv
Above data will be automatically imported after activation.
You can call each sample visualization from 'Load' or 'Bookmark' on upper right corner of GUI.
If you do not need those data,
you can either initialize the application by removing instance
folder before the activation,
or you can just remove each data source setting from GUI.
The Analysis Platform is released under MIT License.
See our LICENSE for more detail.
You can check release notes for new features and bugfixes.