Git Product home page Git Product logo

data-visualizer-dash's Introduction

Data Visualizer Dash

https://dashcx.felippefn.repl.co/

Project: dashboard made for specific analysis of the net promoter score.

  • Dashboard in Python language, styled in Css, created to visualize and process data
  • obs: the project is in portuguese.

This project works like this:

Dashboard-NPS-Mouse

How to use

To use this dashboard, you just need to visit the link down below.

https://dashcx.felippefn.repl.co/

How the dashboard works

The python script found in the file main.py, reads a file in excel, extracts column by column the necessary information and computates it as a data model for visualization. After extracting the information, the NPS (Net Promoter Score) is calculated. In this way, the user can verify all the information of the conditions established in this topic:

image

You can choose the month, year and communication channel with the customer.

How does the NPS calculation work?

The NPS calculation is very simple. Percentage of Promoters - Percentage of Detractors (%Promoters - %Detractors).

The function of this calculation is that:

def nps_calculate(list_):
    detractor = []
    neutral = []
    promoter = []

    for item in list_:
        if item < 7:
            detractor.append(item)
        elif item > 8:
            promoter.append(item)
        else:
            neutral.append(item)

    total = detractor + promoter + neutral
    nps = ((len(promoter)/len(total))*100) - \
        ((len(detractor)/len(total))*100)
    if nps >= 0:
        nps = nps + 0.45
    else:
        nps = nps - 0.45
    return nps

particular recognition to
Vinicius (https://github.com/Vinicius-Santoro) who made this increadible README
Pedro (https://github.com/pedrokrivochein) who supported me with some bugs and problems.

data-visualizer-dash's People

Contributors

felippefn avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.