Author: 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…

  • | |

    Save Multiple Pandas DataFrames to One Single Excel Sheet Side by Side or Dowwards – XlsxWriter

      This tutorial is just to illustrate how to save Python Pandas dataframe into one excel work SHEET . You can save it column-wise, that is side by side or row-wise, that is downwards, one dataframe after the other.   In [110]:

      In [111]:

     

    In [112]:

      Out[112]: First Name Last Name…

  • |

    Save Python Pivot Table in Excel Sheets ExcelWriter

    Untitled This is a quick script on how to save Python pivot_table in an excel file. Credit to  pbpython In [1]:

      In [2]:

     

    In [8]:

      Out[8]: First Name Last Name Sex Phone Fax Email Address Booking Date Departure Date Arrival Date Address1 … Number of Passengers Total Cost Currency Numeric Code…

  • Python Pandas Pivot Table Index location Percentage calculation on Two columns

    pivot table for year on year This is a quick example of how to use pivot_table,  to calculate year on year percentage sales . In [162]:

      In [163]:

     

    In [164]:

      Out[164]: First Name Last Name Sex Phone Fax Email Address Booking Date Departure Date Arrival Date Address1 … Number of Passengers…

  • Python Bokeh plotting Data Exploration Visualization And Pivot Tables Analysis

    This is a quick walk through Bokeh data exploration and visualization and also python pivot_tables (credit to pbpython on the pivot_tables).Visualization Dashboard In [49]:

      In [50]:

     

    In [51]:

      Out[51]: First Name Last Name Sex Phone Fax Email Address Booking Date Departure Date Arrival Date Address1 … Number of Passengers Total Cost Currency…

  • Python PyQt Gui Basics Button Window PyQt4 Pt1

    This is just some quick scrap notes on the basics of Python GUI building using PyQt. In [1]:

     

      the ‘init‘ statements runs anytime we call call the Window class we have created and it runs all the code in the Window class the _init__ method calls the super constructor and then sets…

  • Basic Plotting Using Bokeh Python Pandas Library – Scatter, Line Visualizations

      Bokeh is a powerful framework for data visualization in Python. Here I take a look at straightforward plotting and visualization using this powerful library. Credit to PythonHow. You can check him out on Youtube bokeh.models #It is a low level interface which involves a lot of work bokeh.plotting # It is a middle level interface bokeh.chart #…

  • Structured Pyramid Analysis Plan SMART GOAL Data Analysis

    The key advice for any Data Analysis project is to never start any analysis without first having a structured plan. You should set your goals and they should be S.M.A.R.T   Below are the two charts to help with Analysis. This is part of Data Visualization and Communication with Tableau  by Duke University on Coursera. Set your…

  • | |

    Machine Learning Hypothesis function Cost function and Gradient Descent Algorithm Short Notes

      This is a short scrap notes from the Machine Learning Course taught by Associate Professor,  Andrew Ng,  Stanford University on Coursera.  hypothesis = hØ(x) + Øo + Ø1X Parameters = Øo , Ø1 Our Goal = minimise Ø0 , Ø1 that is the cost function J(Ø0, Ø1) GRADIENT Descent. An algorithm wich minimises the…