data visualization

R Shiny App for Mining Fields Evaluation
|

R Shiny App for Mining Fields Evaluation

Presenting your report in an interactive and user-friendly way is a very effective communicative tool which can help you convey message to your audience easily. R is a very powerful analytic tool which helps you to do that with the “shiny” package. Here, I simply look at an app about the Mining Fields Evaluation which was…

Superset Caravel BI Tool Installation and Visualizations on Heroku

Superset Caravel BI Tool Installation and Visualizations on Heroku

Superset (formerly called Caravel ) BI Tool by  http://airbnb.io/superset  is a free Data Visualization tool which you can harness its powers for your visualization analytic needs. If you are finding problems installing on your windows PC or you simply want your own online version you can simply sign up FREE with Heroku (at least choosing…

Populating Superset Caravel MySQL database tables with Data via Heroku

Populating Superset Caravel MySQL database tables with Data via Heroku

If you installed  your Superset (Caravel) BI Tool with Heroku and if you are finding it difficult to initially populate your MySQL database tables with Data and you will be using MySQL the default database that come with your installation, then you can follow these steps to get data into Superset. (By the way, you…

Various Types of Basic Charts For Data Analysis and Exploration – Visualization and Meaning
| |

Various Types of Basic Charts For Data Analysis and Exploration – Visualization and Meaning

Sometimes, you need some charts to explore your data and many times when your analysis is done and you want to report, you would most likely want to convey your message using charts and graphs. This is a quick look at some charts which are available and their names: We use this raw data in…

Free Open Source Data Visualization Tools and Service
|

Free Open Source Data Visualization Tools and Service

There are a couple Free Open Source Data Visualization Tools and Services which you can make use of for your work data exploration and visualization purposes. Below ,  I list a few ones in no order of importance. Caravel:   It is a Python based data exploration and visualization software by Airbnb. It is powerful and…

Matplotlib Pyplot Plt Python Pandas Data Visualization Plotting

Matplotlib Pyplot Plt Python Pandas Data Visualization Plotting

  This is some quick notes about graphing or plotting graphs with Matplotlib in Python. Credits to sentdex.  You can check him out on Youtube. import matplotlib.pyplot as plt %matplotlib inline # simple syntax is matplotlib plots as plt.plot(x, y) plt.plot([1,2,3], [5,6,7]) plt.show()   In [4]: # plotting with variables and basic labelling of our plot x = [1,2,3]…