Skip to content

IgorSwat/Analytica

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Analytica

A simple web application for data analysis designed as a main project for Software Engeneering course at AGH University.

Co-authors:

Tech stack:

  • Frontend: Angular
  • Backend: Python + Flask API

Overview

The main purpose of the application is to support the data analysis process, with emphasis on clustering the set. Therefore, basic tools have been made available in the form of a web interface at every stage leading to data clustering. The application consists of five main modules that together act as pipeline processing:

1. Basic data processing

It allows user to load data as a .csv file and then process the data in the following areas:

  • Selection of rows
  • Selection of columns (features)
  • Change of column (feature) type

img1

2. Data normalization

It allows you to perform normalization on previously selected data. Several different methods are provided for normalizing variables.

3. PCA

It allows you to perform PCA (Principal Component Analysis) and reduce the dimensionality of data.

4. Data clustering

It allows for grouping variables (clustering) based on PCA results. Several parameterizable clustering methods are available, as well as automatic assessment of cluster homogeneity.

img2

5. Data extraction

It allows you to extract processed data in the form of a .csv file. The processed data can then be used in more advanced forms of data analysis, depending on the user's goals.


Setup and launch

To run application on your PC follow these steps:

  1. Go to /backend directory. Install necessary dependencies from requirements.txt file: pip install -r requirements.txt.
    Recommended version of Python: 3.9.
  2. Run backend server by excetuing run.py: python run.py
  3. Return to root directory and go to /frontend subdirectory.
  4. (Optional - if you haven't done it yet) Download and install Node.js and npm package menager.
  5. (Optional - if you haven't done it yet) Install Angular CLI: npm install -g @angular/cli
  6. Install necessary dependencies using: npm install
  7. Run Angular development server by excetuing ng serve. Launch your browser and go to the address indicated by the CLI.
  8. Select and load a .csv file with data you want to analyze.

About

A simple web application for data analysis

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 40.0%
  • TypeScript 33.2%
  • HTML 15.8%
  • CSS 11.0%