Coursera
datapandasadmin

Run Explore Frequency Distribution of Your Dataset in SAS Studio

SAS Studio is a very powerful statistical program which are used by many corporations for various analytic and data science tasks. We briefly want to look at how we can check sum frequency statistics on some columns / attributes in our data. lets set the library name for our working directory where our dataset is

Read More »

Quick Example and Walk-Through JSON with Python

This is a quick to create a dictionary object , write it to a JSON file and then read back the file and convert it to a dictionary and access the items in the dictionary. Credit to : codebasics.  You can check him out on Youtube In [3]: # lets create a dictionary of books book

Read More »
Data Science
datapandasadmin

Decision Tree Price Optimisation – Regression Tree

Price Optimisation can be achieved in several ways. I did a simple analysis of how you can use Decision Tree to price optimise a product. This article was published on Data Science Central which can be fully read here: Price Optimisation Using Decision Tree (Regression Tree) – Machine Learning   I  have received a lot

Read More »
Business Intelligence - BI
datapandasadmin

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

Read More »
Business Intelligence - BI
datapandasadmin

Simple Interactive Google Data Studio Dashboard

Google has now made Data Studio accessible and you can use it to create pretty cool data visualizations. You can find out more about the free versions and the premium versions here. Google Data Studio In the meantime, you can view a simple dashboard I created for Amazon Product Sourcing here: Amazon product Sourcing Google Studio

Read More »
Data Science
datapandasadmin

Python iloc, loc, ix Data Retrieving Selection Functions

  Pandas iloc, loc, and ix functions are very powerful ways to quickly select data from your dataframe. Today , we take a quick look at these 3 functions. Credits to Data School, you can check him out in Youtube  In [1]: import pandas as pd   In [2]: #lets get this public dataset and play with it

Read More »