KrishnaNAcharya / Xtract

Web application to extract statistical data from the datasets provided as inputs

Home Page:https://xtract-seven.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Xtract

This project aims at providing statistical insights to the users from the datasets they provide as input. The dataset recieved from the user is processed by the python scripts at the backend. The results of the analysis so obtained are sent back to the user. These results include the statistical data and graphs describing the dataset

Steps to run

Firstly, clone this repository in your desired directory

git clone https://github.com/AvyayNayak/Xtract.git

Also, ensure that there is a Python executable installed on your device.

Install dependencies

Open your terminal and run this

npm i

For the python scripts, a virtual environment already exists within the repository. Simply run this command to it

.\env\Scripts\activate

For those who run into an unauthorized access error, run the following command to bypass the execution policy temporarily

Set-ExecutionPolicy Bypass -Scope Process

If you want to make a permanent change to the execution policy, run this

Set-ExecutionPolicy Bypass -Scope CurrentUser

How to update code

If working on a new feature

Create new branch and work in that preferably named feat/featureName

git add filename
#or
git add .

git commit -m "sutiable msg"

Note: Ignore this warning for now, re-run the command that created this

warning: in the working copy of 'tsconfig.json', LF will be replaced by CRLF the next time Git touches it

git checkout -b branchname

To push local branch to remote

git push -u origin branchname

About

Web application to extract statistical data from the datasets provided as inputs

https://xtract-seven.vercel.app


Languages

Language:CSS 31.6%Language:JavaScript 26.0%Language:Python 25.4%Language:HTML 17.0%